class MsgClientChatMsg

Class for the MsgClientChatMsg in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientChatMsg object

Calls superclass method SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1587
def initialize
  super([{:name=>"steam_id_chatter", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_chat_room", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"chat_msg_type", :type=>"EChatEntryType", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], [])
end

Public Instance Methods

chat_msg_type() click to toggle source

Gets the chat_msg_type variable.

@note defaults to @return [EChatEntryType] the value of chat_msg_type

# File lib/steamd/generated/steammsg.rb, line 1625
def chat_msg_type
  @variables['chat_msg_type'][:value]
end
chat_msg_type=(value) click to toggle source

Sets the chat_msg_type variable.

@param value [EChatEntryType] the new value

# File lib/steamd/generated/steammsg.rb, line 1632
def chat_msg_type=(value)
  @variables['chat_msg_type'][:value] = value
end
steam_id_chat_room() click to toggle source

Gets the steam_id_chat_room variable.

@note defaults to @return [ulong] the value of steam_id_chat_room

# File lib/steamd/generated/steammsg.rb, line 1610
def steam_id_chat_room
  @variables['steam_id_chat_room'][:value]
end
steam_id_chat_room=(value) click to toggle source

Sets the steam_id_chat_room variable.

@param value [ulong] the new value

# File lib/steamd/generated/steammsg.rb, line 1617
def steam_id_chat_room=(value)
  @variables['steam_id_chat_room'][:value] = value
end
steam_id_chatter() click to toggle source

Gets the steam_id_chatter variable.

@note defaults to @return [ulong] the value of steam_id_chatter

# File lib/steamd/generated/steammsg.rb, line 1595
def steam_id_chatter
  @variables['steam_id_chatter'][:value]
end
steam_id_chatter=(value) click to toggle source

Sets the steam_id_chatter variable.

@param value [ulong] the new value

# File lib/steamd/generated/steammsg.rb, line 1602
def steam_id_chatter=(value)
  @variables['steam_id_chatter'][:value] = value
end