class MsgClientLogOnResponse
Class for the MsgClientLogOnResponse
in the Steam Language.
Public Class Methods
Instantiate a MsgClientLogOnResponse
object
SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 2013 def initialize super([{:name=>"result", :type=>"EResult", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"out_of_game_heartbeat_rate_sec", :type=>"int", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"in_game_heartbeat_rate_sec", :type=>"int", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"client_supplied_steam_id", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"ip_public", :type=>"uint", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"server_real_time", :type=>"uint", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end
Public Instance Methods
Gets the client_supplied_steam_id
variable.
@note defaults to @return [ulong] the value of client_supplied_steam_id
# File lib/steamd/generated/steammsg.rb, line 2066 def client_supplied_steam_id @variables['client_supplied_steam_id'][:value] end
Sets the client_supplied_steam_id
variable.
@param value [ulong] the new value
# File lib/steamd/generated/steammsg.rb, line 2073 def client_supplied_steam_id=(value) @variables['client_supplied_steam_id'][:value] = value end
Gets the in_game_heartbeat_rate_sec
variable.
@note defaults to @return [int] the value of in_game_heartbeat_rate_sec
# File lib/steamd/generated/steammsg.rb, line 2051 def in_game_heartbeat_rate_sec @variables['in_game_heartbeat_rate_sec'][:value] end
Sets the in_game_heartbeat_rate_sec
variable.
@param value [int] the new value
# File lib/steamd/generated/steammsg.rb, line 2058 def in_game_heartbeat_rate_sec=(value) @variables['in_game_heartbeat_rate_sec'][:value] = value end
Sets the ip_public
variable.
@param value [uint] the new value
# File lib/steamd/generated/steammsg.rb, line 2088 def ip_public=(value) @variables['ip_public'][:value] = value end
Gets the out_of_game_heartbeat_rate_sec
variable.
@note defaults to @return [int] the value of out_of_game_heartbeat_rate_sec
# File lib/steamd/generated/steammsg.rb, line 2036 def out_of_game_heartbeat_rate_sec @variables['out_of_game_heartbeat_rate_sec'][:value] end
Sets the out_of_game_heartbeat_rate_sec
variable.
@param value [int] the new value
# File lib/steamd/generated/steammsg.rb, line 2043 def out_of_game_heartbeat_rate_sec=(value) @variables['out_of_game_heartbeat_rate_sec'][:value] = value end
Gets the result variable.
@note defaults to @return [EResult] the value of result
# File lib/steamd/generated/steammsg.rb, line 2021 def result @variables['result'][:value] end
Sets the result variable.
@param value [EResult] the new value
# File lib/steamd/generated/steammsg.rb, line 2028 def result=(value) @variables['result'][:value] = value end
Gets the server_real_time
variable.
@note defaults to @return [uint] the value of server_real_time
# File lib/steamd/generated/steammsg.rb, line 2096 def server_real_time @variables['server_real_time'][:value] end
Sets the server_real_time
variable.
@param value [uint] the new value
# File lib/steamd/generated/steammsg.rb, line 2103 def server_real_time=(value) @variables['server_real_time'][:value] = value end