class MsgClientChatMemberInfo
Class for the MsgClientChatMemberInfo
in the Steam Language.
Public Class Methods
new()
click to toggle source
Instantiate a MsgClientChatMemberInfo
object
Calls superclass method
SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1644 def initialize super([{:name=>"steam_id_chat", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"type", :type=>"EChatInfoType", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end
Public Instance Methods
steam_id_chat()
click to toggle source
Gets the steam_id_chat
variable.
@note defaults to @return [ulong] the value of steam_id_chat
# File lib/steamd/generated/steammsg.rb, line 1652 def steam_id_chat @variables['steam_id_chat'][:value] end
steam_id_chat=(value)
click to toggle source
Sets the steam_id_chat
variable.
@param value [ulong] the new value
# File lib/steamd/generated/steammsg.rb, line 1659 def steam_id_chat=(value) @variables['steam_id_chat'][:value] = value end
type()
click to toggle source
Gets the type variable.
@note defaults to @return [EChatInfoType] the value of type
# File lib/steamd/generated/steammsg.rb, line 1667 def type @variables['type'][:value] end
type=(value)
click to toggle source
Sets the type variable.
@param value [EChatInfoType] the new value
# File lib/steamd/generated/steammsg.rb, line 1674 def type=(value) @variables['type'][:value] = value end