Class: Google::Apis::MerchantapiLfpV1beta::ListLfpStoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::MerchantapiLfpV1beta::ListLfpStoresResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/merchantapi_lfp_v1beta/classes.rb,
lib/google/apis/merchantapi_lfp_v1beta/representations.rb,
lib/google/apis/merchantapi_lfp_v1beta/representations.rb
Overview
Response message for the ListLfpStores method.
Instance Attribute Summary collapse
-
#lfp_stores ⇒ Array<Google::Apis::MerchantapiLfpV1beta::LfpStore>
The stores from the specified merchant.
-
#next_page_token ⇒ String
A token, which can be sent as
pageTokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListLfpStoresResponse
constructor
A new instance of ListLfpStoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListLfpStoresResponse
Returns a new instance of ListLfpStoresResponse.
541 542 543 |
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 541 def initialize(**args) update!(**args) end |
Instance Attribute Details
#lfp_stores ⇒ Array<Google::Apis::MerchantapiLfpV1beta::LfpStore>
The stores from the specified merchant.
Corresponds to the JSON property lfpStores
533 534 535 |
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 533 def lfp_stores @lfp_stores end |
#next_page_token ⇒ String
A token, which can be sent as pageToken to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
539 540 541 |
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 539 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
546 547 548 549 |
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 546 def update!(**args) @lfp_stores = args[:lfp_stores] if args.key?(:lfp_stores) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |