class Google::Apis::AppengineV1beta::ListAuthorizedDomainsResponse
Response message for AuthorizedDomains.ListAuthorizedDomains.
Attributes
domains[RW]
The authorized domains belonging to the user. Corresponds to the JSON property `domains` @return [Array<Google::Apis::AppengineV1beta::AuthorizedDomain>]
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_v1beta/classes.rb, line 1594 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_v1beta/classes.rb, line 1599 def update!(**args) @domains = args[:domains] if args.key?(:domains) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end