Class: Google::Apis::FirebasehostingV1beta1::ListCustomDomainsResponse

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

Overview

The response from ListCustomDomains.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCustomDomainsResponse

Returns a new instance of ListCustomDomainsResponse.



984
985
986
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 984

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

Instance Attribute Details

#custom_domainsArray<Google::Apis::FirebasehostingV1beta1::CustomDomain>

A list of CustomDomain entities associated with the specified Firebase Site . Corresponds to the JSON property customDomains



975
976
977
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 975

def custom_domains
  @custom_domains
end

#next_page_tokenString

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

Returns:

  • (String)


982
983
984
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 982

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



989
990
991
992
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 989

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