Class: Google::Apis::FirebasehostingV1beta1::ListChannelsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/firebasehosting_v1beta1/classes.rb,
generated/google/apis/firebasehosting_v1beta1/representations.rb,
generated/google/apis/firebasehosting_v1beta1/representations.rb

Overview

The response returned by ListChannels.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListChannelsResponse

Returns a new instance of ListChannelsResponse.



477
478
479
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 477

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

Instance Attribute Details

#channelsArray<Google::Apis::FirebasehostingV1beta1::Channel>

The list of channels. Corresponds to the JSON property channels



468
469
470
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 468

def channels
  @channels
end

#next_page_tokenString

If there are additional releases remaining beyond the ones in this response, then supply this token in the next list call to continue with the next set of releases. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


475
476
477
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 475

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



482
483
484
485
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 482

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