class Google::Apis::GameservicesV1beta::ListRealmsResponse
Response message for RealmsService.ListRealms.
Attributes
next_page_token[RW]
Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]
realms[RW]
The list of realms. Corresponds to the JSON property `realms` @return [Array<Google::Apis::GameservicesV1beta::Realm>]
unreachable[RW]
List of locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gameservices_v1beta/classes.rb, line 1261 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gameservices_v1beta/classes.rb, line 1266 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @realms = args[:realms] if args.key?(:realms) @unreachable = args[:unreachable] if args.key?(:unreachable) end