Class: Google::Apis::DomainsV1beta1::RetrieveImportableDomainsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DomainsV1beta1::RetrieveImportableDomainsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/domains_v1beta1/classes.rb,
lib/google/apis/domains_v1beta1/representations.rb,
lib/google/apis/domains_v1beta1/representations.rb
Overview
Deprecated: For more information, see Cloud Domains feature deprecation.
Response for the RetrieveImportableDomains
method.
Instance Attribute Summary collapse
-
#domains ⇒ Array<Google::Apis::DomainsV1beta1::Domain>
A list of domains that the calling user manages in Google Domains.
-
#next_page_token ⇒ String
When present, there are more results to retrieve.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RetrieveImportableDomainsResponse
constructor
A new instance of RetrieveImportableDomainsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RetrieveImportableDomainsResponse
Returns a new instance of RetrieveImportableDomainsResponse.
1548 1549 1550 |
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 1548 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domains ⇒ Array<Google::Apis::DomainsV1beta1::Domain>
A list of domains that the calling user manages in Google Domains.
Corresponds to the JSON property domains
1540 1541 1542 |
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 1540 def domains @domains end |
#next_page_token ⇒ String
When present, there are more results to retrieve. Set page_token
to this
value on a subsequent call to get the next page of results.
Corresponds to the JSON property nextPageToken
1546 1547 1548 |
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 1546 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1553 1554 1555 1556 |
# File 'lib/google/apis/domains_v1beta1/classes.rb', line 1553 def update!(**args) @domains = args[:domains] if args.key?(:domains) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |