Class: Google::Apis::MerchantapiLfpV1beta::ListLfpStoresResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListLfpStoresResponse

Returns a new instance of ListLfpStoresResponse.



364
365
366
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 364

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#lfp_storesArray<Google::Apis::MerchantapiLfpV1beta::LfpStore>

The stores from the specified merchant. Corresponds to the JSON property lfpStores



356
357
358
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 356

def lfp_stores
  @lfp_stores
end

#next_page_tokenString

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

Returns:

  • (String)


362
363
364
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 362

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



369
370
371
372
# File 'lib/google/apis/merchantapi_lfp_v1beta/classes.rb', line 369

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