class MsgClientChatRoomInfo

Class for the MsgClientChatRoomInfo in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientChatRoomInfo object

Calls superclass method SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1815
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 1823
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 1830
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 1838
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 1845
def type=(value)
  @variables['type'][:value] = value
end