class Google::Apis::DomainsV1beta1::ListRegistrationsResponse
Response for the `ListRegistrations` method.
Attributes
next_page_token[RW]
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` @return [String]
registrations[RW]
A list of `Registration`s. Corresponds to the JSON property `registrations` @return [Array<Google::Apis::DomainsV1beta1::Registration>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/domains_v1beta1/classes.rb, line 699 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/domains_v1beta1/classes.rb, line 704 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @registrations = args[:registrations] if args.key?(:registrations) end