Class: Google::Apis::ManufacturersV1::Issue
- Inherits:
-
Object
- Object
- Google::Apis::ManufacturersV1::Issue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/manufacturers_v1/classes.rb,
generated/google/apis/manufacturers_v1/representations.rb,
generated/google/apis/manufacturers_v1/representations.rb
Overview
Product issue.
Instance Attribute Summary collapse
-
#attribute ⇒ String
If present, the attribute that triggered the issue.
-
#description ⇒ String
Description of the issue.
-
#severity ⇒ String
The severity of the issue.
-
#timestamp ⇒ String
The timestamp when this issue appeared.
-
#type ⇒ String
The server-generated type of the issue, for example, “INCORRECT_TEXT_FORMATTING”, “IMAGE_NOT_SERVEABLE”, etc.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Issue
constructor
A new instance of Issue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Issue
Returns a new instance of Issue
293 294 295 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 293 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribute ⇒ String
If present, the attribute that triggered the issue. For more information
about attributes, see
https://support.google.com/manufacturers/answer/6124116.
Corresponds to the JSON property attribute
281 282 283 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 281 def attribute @attribute end |
#description ⇒ String
Description of the issue.
Corresponds to the JSON property description
268 269 270 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 268 def description @description end |
#severity ⇒ String
The severity of the issue.
Corresponds to the JSON property severity
291 292 293 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 291 def severity @severity end |
#timestamp ⇒ String
The timestamp when this issue appeared.
Corresponds to the JSON property timestamp
286 287 288 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 286 def @timestamp end |
#type ⇒ String
The server-generated type of the issue, for example,
“INCORRECT_TEXT_FORMATTING”, “IMAGE_NOT_SERVEABLE”, etc.
Corresponds to the JSON property type
274 275 276 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 274 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
298 299 300 301 302 303 304 |
# File 'generated/google/apis/manufacturers_v1/classes.rb', line 298 def update!(**args) @description = args[:description] if args.key?(:description) @type = args[:type] if args.key?(:type) @attribute = args[:attribute] if args.key?(:attribute) @timestamp = args[:timestamp] if args.key?(:timestamp) @severity = args[:severity] if args.key?(:severity) end |