class Google::Apis::ContentV2_1::AccountStatusItemLevelIssue
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]
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]
Number of items with this issue. Corresponds to the JSON property `numItems` @return [Fixnum]
Whether the issue can be resolved by the merchant. Corresponds to the JSON property `resolution` @return [String]
How this issue affects serving of the offer. Corresponds to the JSON property `servability` @return [String]
Public Class Methods
# File lib/google/apis/content_v2_1/classes.rb, line 616 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 621 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) @detail = args[:detail] if args.key?(:detail) @documentation = args[:documentation] if args.key?(:documentation) @num_items = args[:num_items] if args.key?(:num_items) @resolution = args[:resolution] if args.key?(:resolution) @servability = args[:servability] if args.key?(:servability) end