Class: Google::Apis::DomainsV1::RetrieveImportableDomainsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RetrieveImportableDomainsResponse

Returns a new instance of RetrieveImportableDomainsResponse.



2063
2064
2065
# File 'lib/google/apis/domains_v1/classes.rb', line 2063

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

Instance Attribute Details

#domainsArray<Google::Apis::DomainsV1::Domain>

A list of domains that the calling user manages in Google Domains. Corresponds to the JSON property domains



2055
2056
2057
# File 'lib/google/apis/domains_v1/classes.rb', line 2055

def domains
  @domains
end

#next_page_tokenString

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

Returns:

  • (String)


2061
2062
2063
# File 'lib/google/apis/domains_v1/classes.rb', line 2061

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2068
2069
2070
2071
# File 'lib/google/apis/domains_v1/classes.rb', line 2068

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