class Google::Apis::GameservicesV1::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::GameservicesV1::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_v1/classes.rb, line 1220
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_v1/classes.rb, line 1225
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