Class: Google::Apis::Adexchangebuyer2V2beta1::ListProductsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb

Overview

Response message for listing products visible to the buyer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListProductsResponse

Returns a new instance of ListProductsResponse.



2552
2553
2554
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2552

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

Instance Attribute Details

#next_page_tokenString

List pagination support. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2545
2546
2547
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2545

def next_page_token
  @next_page_token
end

#productsArray<Google::Apis::Adexchangebuyer2V2beta1::Product>

The list of matching products at their head revision number. Corresponds to the JSON property products



2550
2551
2552
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2550

def products
  @products
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2557
2558
2559
2560
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2557

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @products = args[:products] if args.key?(:products)
end