Class: Google::Apis::MerchantapiReviewsV1beta::MerchantReviewItemLevelIssue
- Inherits:
-
Object
- Object
- Google::Apis::MerchantapiReviewsV1beta::MerchantReviewItemLevelIssue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/merchantapi_reviews_v1beta/classes.rb,
lib/google/apis/merchantapi_reviews_v1beta/representations.rb,
lib/google/apis/merchantapi_reviews_v1beta/representations.rb
Overview
The ItemLevelIssue of the merchant review status.
Instance Attribute Summary collapse
-
#attribute ⇒ String
Output only.
-
#code ⇒ String
Output only.
-
#description ⇒ String
Output only.
-
#detail ⇒ String
Output only.
-
#documentation ⇒ String
Output only.
-
#reporting_context ⇒ String
Output only.
-
#resolution ⇒ String
Output only.
-
#severity ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MerchantReviewItemLevelIssue
constructor
A new instance of MerchantReviewItemLevelIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MerchantReviewItemLevelIssue
Returns a new instance of MerchantReviewItemLevelIssue.
372 373 374 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 372 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribute ⇒ String
Output only. The attribute's name, if the issue is caused by a single
attribute.
Corresponds to the JSON property attribute
335 336 337 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 335 def attribute @attribute end |
#code ⇒ String
Output only. The error code of the issue.
Corresponds to the JSON property code
340 341 342 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 340 def code @code end |
#description ⇒ String
Output only. A short issue description in English.
Corresponds to the JSON property description
345 346 347 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 345 def description @description end |
#detail ⇒ String
Output only. A detailed issue description in English.
Corresponds to the JSON property detail
350 351 352 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 350 def detail @detail end |
#documentation ⇒ String
Output only. The URL of a web page to help with resolving this issue.
Corresponds to the JSON property documentation
355 356 357 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 355 def documentation @documentation end |
#reporting_context ⇒ String
Output only. The reporting context the issue applies to.
Corresponds to the JSON property reportingContext
360 361 362 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 360 def reporting_context @reporting_context end |
#resolution ⇒ String
Output only. Whether the issue can be resolved by the merchant.
Corresponds to the JSON property resolution
365 366 367 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 365 def resolution @resolution end |
#severity ⇒ String
Output only. How this issue affects serving of the merchant review.
Corresponds to the JSON property severity
370 371 372 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 370 def severity @severity end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
377 378 379 380 381 382 383 384 385 386 |
# File 'lib/google/apis/merchantapi_reviews_v1beta/classes.rb', line 377 def update!(**args) @attribute = args[:attribute] if args.key?(:attribute) @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) @reporting_context = args[:reporting_context] if args.key?(:reporting_context) @resolution = args[:resolution] if args.key?(:resolution) @severity = args[:severity] if args.key?(:severity) end |