class Google::Apis::FirebasehostingV1beta1::ListChannelsResponse

Attributes

channels[RW]

The list of channels. Corresponds to the JSON property `channels` @return [Array<Google::Apis::FirebasehostingV1beta1::Channel>]

next_page_token[RW]

The pagination token, if more results exist beyond the ones in this response. Include this token in your next call to `ListChannels`. Page tokens are short- lived and should not be stored. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 485
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebasehosting_v1beta1/classes.rb, line 490
def update!(**args)
  @channels = args[:channels] if args.key?(:channels)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end