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.



6381
6382
6383
# File 'lib/google/apis/content_v2_1/classes.rb', line 6381

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:



6373
6374
6375
# File 'lib/google/apis/content_v2_1/classes.rb', line 6373

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)


6379
6380
6381
# File 'lib/google/apis/content_v2_1/classes.rb', line 6379

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6386
6387
6388
6389
# File 'lib/google/apis/content_v2_1/classes.rb', line 6386

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