Class: Google::Apis::FirebasehostingV1beta1::ListDomainsResponse
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::ListDomainsResponse
- 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 to listing Domains.
Instance Attribute Summary collapse
-
#domains ⇒ Array<Google::Apis::FirebasehostingV1beta1::Domain>
The list of domains, if any exist.
-
#next_page_token ⇒ String
The pagination token, if more results exist.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDomainsResponse
constructor
A new instance of ListDomainsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDomainsResponse
Returns a new instance of ListDomainsResponse.
510 511 512 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 510 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domains ⇒ Array<Google::Apis::FirebasehostingV1beta1::Domain>
The list of domains, if any exist.
Corresponds to the JSON property domains
503 504 505 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 503 def domains @domains end |
#next_page_token ⇒ String
The pagination token, if more results exist.
Corresponds to the JSON property nextPageToken
508 509 510 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 508 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
515 516 517 518 |
# 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 |