Class: Google::Apis::PlaymoviespartnerV1::ListStoreInfosResponse
- Inherits:
-
Object
- Object
- Google::Apis::PlaymoviespartnerV1::ListStoreInfosResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/playmoviespartner_v1/classes.rb,
generated/google/apis/playmoviespartner_v1/representations.rb,
generated/google/apis/playmoviespartner_v1/representations.rb
Overview
Response to the 'ListStoreInfos' method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
See 'List methods rules' for info about this field.
-
#store_infos ⇒ Array<Google::Apis::PlaymoviespartnerV1::StoreInfo>
List of StoreInfos that match the request criteria.
-
#total_size ⇒ Fixnum
See List methods rules for more information about this field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListStoreInfosResponse
constructor
A new instance of ListStoreInfosResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListStoreInfosResponse
Returns a new instance of ListStoreInfosResponse
388 389 390 |
# File 'generated/google/apis/playmoviespartner_v1/classes.rb', line 388 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
See 'List methods rules' for info about this field.
Corresponds to the JSON property nextPageToken
376 377 378 |
# File 'generated/google/apis/playmoviespartner_v1/classes.rb', line 376 def next_page_token @next_page_token end |
#store_infos ⇒ Array<Google::Apis::PlaymoviespartnerV1::StoreInfo>
List of StoreInfos that match the request criteria.
Corresponds to the JSON property storeInfos
381 382 383 |
# File 'generated/google/apis/playmoviespartner_v1/classes.rb', line 381 def store_infos @store_infos end |
#total_size ⇒ Fixnum
See List methods rules for more information about this field.
Corresponds to the JSON property totalSize
386 387 388 |
# File 'generated/google/apis/playmoviespartner_v1/classes.rb', line 386 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
393 394 395 396 397 |
# File 'generated/google/apis/playmoviespartner_v1/classes.rb', line 393 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @store_infos = args[:store_infos] if args.key?(:store_infos) @total_size = args[:total_size] if args.key?(:total_size) end |