Class: Google::Apis::DomainsV1alpha2::RetrieveImportableDomainsResponse

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

Overview

Response for the RetrieveImportableDomains method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RetrieveImportableDomainsResponse

Returns a new instance of RetrieveImportableDomainsResponse.



1479
1480
1481
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 1479

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

Instance Attribute Details

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

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



1471
1472
1473
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 1471

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)


1477
1478
1479
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 1477

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1484
1485
1486
1487
# File 'lib/google/apis/domains_v1alpha2/classes.rb', line 1484

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