Class: Google::Apis::CssV1::ListCssProductsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/css_v1/classes.rb,
lib/google/apis/css_v1/representations.rb,
lib/google/apis/css_v1/representations.rb

Overview

Response message for the ListCssProducts method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCssProductsResponse

Returns a new instance of ListCssProductsResponse.



991
992
993
# File 'lib/google/apis/css_v1/classes.rb', line 991

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

Instance Attribute Details

#css_productsArray<Google::Apis::CssV1::CssProduct>

The processed CSS products from the specified account. These are your processed CSS products after applying rules and supplemental feeds. Corresponds to the JSON property cssProducts



983
984
985
# File 'lib/google/apis/css_v1/classes.rb', line 983

def css_products
  @css_products
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


989
990
991
# File 'lib/google/apis/css_v1/classes.rb', line 989

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



996
997
998
999
# File 'lib/google/apis/css_v1/classes.rb', line 996

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