class Google::Apis::AppengineV1::ListDomainMappingsResponse

Response message for DomainMappings.ListDomainMappings.

Attributes

domain_mappings[RW]

The domain mappings for the application. Corresponds to the JSON property `domainMappings` @return [Array<Google::Apis::AppengineV1::DomainMapping>]

next_page_token[RW]

Continuation token for fetching the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 1540
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/appengine_v1/classes.rb, line 1545
def update!(**args)
  @domain_mappings = args[:domain_mappings] if args.key?(:domain_mappings)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end