Class: Google::Apis::CssV1::ListCssProductsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CssV1::ListCssProductsResponse
- 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
-
#css_products ⇒ Array<Google::Apis::CssV1::CssProduct>
The processed CSS products from the specified account.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCssProductsResponse
constructor
A new instance of ListCssProductsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_products ⇒ Array<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_token ⇒ String
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
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 |