Class: Google::Apis::ContentV2_1::ListCssesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ListCssesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Overview
The response message for the ListCsses
method
Instance Attribute Summary collapse
-
#csses ⇒ Array<Google::Apis::ContentV2_1::Css>
The CSS domains affiliated with the specified CSS group.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCssesResponse
constructor
A new instance of ListCssesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListCssesResponse
Returns a new instance of ListCssesResponse.
3769 3770 3771 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3769 def initialize(**args) update!(**args) end |
Instance Attribute Details
#csses ⇒ Array<Google::Apis::ContentV2_1::Css>
The CSS domains affiliated with the specified CSS group.
Corresponds to the JSON property csses
3761 3762 3763 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3761 def csses @csses 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
3767 3768 3769 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3767 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3774 3775 3776 3777 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3774 def update!(**args) @csses = args[:csses] if args.key?(:csses) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |