Class: Google::Apis::ContentV2_1::AccountStatusProducts
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::AccountStatusProducts
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#channel ⇒ String
The channel the data applies to.
-
#country ⇒ String
The country the data applies to.
-
#destination ⇒ String
The destination the data applies to.
-
#item_level_issues ⇒ Array<Google::Apis::ContentV2_1::AccountStatusItemLevelIssue>
List of item-level issues.
-
#statistics ⇒ Google::Apis::ContentV2_1::AccountStatusStatistics
Aggregated product statistics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountStatusProducts
constructor
A new instance of AccountStatusProducts.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountStatusProducts
Returns a new instance of AccountStatusProducts
503 504 505 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 503 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel ⇒ String
The channel the data applies to.
Corresponds to the JSON property channel
481 482 483 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 481 def channel @channel end |
#country ⇒ String
The country the data applies to.
Corresponds to the JSON property country
486 487 488 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 486 def country @country end |
#destination ⇒ String
The destination the data applies to.
Corresponds to the JSON property destination
491 492 493 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 491 def destination @destination end |
#item_level_issues ⇒ Array<Google::Apis::ContentV2_1::AccountStatusItemLevelIssue>
List of item-level issues.
Corresponds to the JSON property itemLevelIssues
496 497 498 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 496 def item_level_issues @item_level_issues end |
#statistics ⇒ Google::Apis::ContentV2_1::AccountStatusStatistics
Aggregated product statistics.
Corresponds to the JSON property statistics
501 502 503 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 501 def statistics @statistics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
508 509 510 511 512 513 514 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 508 def update!(**args) @channel = args[:channel] if args.key?(:channel) @country = args[:country] if args.key?(:country) @destination = args[:destination] if args.key?(:destination) @item_level_issues = args[:item_level_issues] if args.key?(:item_level_issues) @statistics = args[:statistics] if args.key?(:statistics) end |