class Google::Apis::ManufacturersV1::Issue
Product
issue.
Attributes
If present, the attribute that triggered the issue. For more information about attributes, see support.google.com/manufacturers/answer/6124116. Corresponds to the JSON property `attribute` @return [String]
Longer description of the issue focused on how to resolve it. Corresponds to the JSON property `description` @return [String]
The destination this issue applies to. Corresponds to the JSON property `destination` @return [String]
What needs to happen to resolve the issue. Corresponds to the JSON property `resolution` @return [String]
The severity of the issue. Corresponds to the JSON property `severity` @return [String]
The timestamp when this issue appeared. Corresponds to the JSON property `timestamp` @return [String]
Short title describing the nature of the issue. Corresponds to the JSON property `title` @return [String]
The server-generated type of the issue, for example, “ INCORRECT_TEXT_FORMATTING”, “IMAGE_NOT_SERVEABLE”, etc. Corresponds to the JSON property `type` @return [String]
Public Class Methods
# File lib/google/apis/manufacturers_v1/classes.rb, line 498 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/manufacturers_v1/classes.rb, line 503 def update!(**args) @attribute = args[:attribute] if args.key?(:attribute) @description = args[:description] if args.key?(:description) @destination = args[:destination] if args.key?(:destination) @resolution = args[:resolution] if args.key?(:resolution) @severity = args[:severity] if args.key?(:severity) @timestamp = args[:timestamp] if args.key?(:timestamp) @title = args[:title] if args.key?(:title) @type = args[:type] if args.key?(:type) end