class Google::Apis::ContentV2_1::CollectionStatusItemLevelIssue
Issue associated with the collection.
Attributes
The attribute's name, if the issue is caused by a single attribute. Corresponds to the JSON property `attributeName` @return [String]
The error code of the issue. Corresponds to the JSON property `code` @return [String]
A short issue description in English. Corresponds to the JSON property `description` @return [String]
The destination the issue applies to. Corresponds to the JSON property `destination` @return [String]
A detailed issue description in English. Corresponds to the JSON property `detail` @return [String]
The URL of a web page to help with resolving this issue. Corresponds to the JSON property `documentation` @return [String]
Whether the issue can be resolved by the merchant. Corresponds to the JSON property `resolution` @return [String]
How this issue affects the serving of the collection. Corresponds to the JSON property `servability` @return [String]
Public Class Methods
# File lib/google/apis/content_v2_1/classes.rb, line 2093 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 2098 def update!(**args) @attribute_name = args[:attribute_name] if args.key?(:attribute_name) @code = args[:code] if args.key?(:code) @description = args[:description] if args.key?(:description) @destination = args[:destination] if args.key?(:destination) @detail = args[:detail] if args.key?(:detail) @documentation = args[:documentation] if args.key?(:documentation) @resolution = args[:resolution] if args.key?(:resolution) @servability = args[:servability] if args.key?(:servability) end