Class: Google::Apis::ContentV2_1::ListCssesResponse

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

Overview

The response message for the ListCsses method

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCssesResponse

Returns a new instance of ListCssesResponse.



4233
4234
4235
# File 'lib/google/apis/content_v2_1/classes.rb', line 4233

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

Instance Attribute Details

#cssesArray<Google::Apis::ContentV2_1::Css>

The CSS domains affiliated with the specified CSS group. Corresponds to the JSON property csses

Returns:



4225
4226
4227
# File 'lib/google/apis/content_v2_1/classes.rb', line 4225

def csses
  @csses
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)


4231
4232
4233
# File 'lib/google/apis/content_v2_1/classes.rb', line 4231

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4238
4239
4240
4241
# File 'lib/google/apis/content_v2_1/classes.rb', line 4238

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