class Google::Apis::GamesV1::RoomClientAddress
This is a JSON template for the client address when setting up a room.
Attributes
kind[RW]
Uniquely identifies the type of this resource. Value is always the fixed string games#roomClientAddress. Corresponds to the JSON property `kind` @return [String]
xmpp_address[RW]
The XMPP address of the client on the Google Games XMPP network. Corresponds to the JSON property `xmppAddress` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/games_v1/classes.rb, line 3264 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/games_v1/classes.rb, line 3269 def update!(**args) @kind = args[:kind] if args.key?(:kind) @xmpp_address = args[:xmpp_address] if args.key?(:xmpp_address) end