class Google::Apis::FirebasehostingV1beta1::ListDomainsResponse

The response to listing Domains.

Attributes

domains[RW]

The list of domains, if any exist. Corresponds to the JSON property `domains` @return [Array<Google::Apis::FirebasehostingV1beta1::Domain>]

next_page_token[RW]

The pagination token, if more results exist. 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 510
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 515
def update!(**args)
  @domains = args[:domains] if args.key?(:domains)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end