Class: Google::Apis::DomainsV1::RetrieveImportableDomainsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DomainsV1::RetrieveImportableDomainsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/domains_v1/classes.rb,
lib/google/apis/domains_v1/representations.rb,
lib/google/apis/domains_v1/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::DomainsV1::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.
2079 2080 2081 |
# File 'lib/google/apis/domains_v1/classes.rb', line 2079 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domains ⇒ Array<Google::Apis::DomainsV1::Domain>
A list of domains that the calling user manages in Google Domains.
Corresponds to the JSON property domains
2071 2072 2073 |
# File 'lib/google/apis/domains_v1/classes.rb', line 2071 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
2077 2078 2079 |
# File 'lib/google/apis/domains_v1/classes.rb', line 2077 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2084 2085 2086 2087 |
# File 'lib/google/apis/domains_v1/classes.rb', line 2084 def update!(**args) @domains = args[:domains] if args.key?(:domains) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |