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

Response for the RetrieveImportableDomains method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RetrieveImportableDomainsResponse

Returns a new instance of RetrieveImportableDomainsResponse.



1474
1475
1476
# File 'lib/google/apis/domains_v1/classes.rb', line 1474

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



1466
1467
1468
# File 'lib/google/apis/domains_v1/classes.rb', line 1466

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)


1472
1473
1474
# File 'lib/google/apis/domains_v1/classes.rb', line 1472

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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