class MsgClientChatAction
Class for the MsgClientChatAction
in the Steam Language.
Public Class Methods
new()
click to toggle source
Instantiate a MsgClientChatAction
object
Calls superclass method
SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1686 def initialize super([{:name=>"steam_id_chat", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_user_to_act_on", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"chat_action", :type=>"EChatAction", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end
Public Instance Methods
chat_action()
click to toggle source
Gets the chat_action
variable.
@note defaults to @return [EChatAction] the value of chat_action
# File lib/steamd/generated/steammsg.rb, line 1724 def chat_action @variables['chat_action'][:value] end
chat_action=(value)
click to toggle source
Sets the chat_action
variable.
@param value [EChatAction] the new value
# File lib/steamd/generated/steammsg.rb, line 1731 def chat_action=(value) @variables['chat_action'][:value] = value end
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 1694 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 1701 def steam_id_chat=(value) @variables['steam_id_chat'][:value] = value end
steam_id_user_to_act_on()
click to toggle source
Gets the steam_id_user_to_act_on
variable.
@note defaults to @return [ulong] the value of steam_id_user_to_act_on
# File lib/steamd/generated/steammsg.rb, line 1709 def steam_id_user_to_act_on @variables['steam_id_user_to_act_on'][:value] end
steam_id_user_to_act_on=(value)
click to toggle source
Sets the steam_id_user_to_act_on
variable.
@param value [ulong] the new value
# File lib/steamd/generated/steammsg.rb, line 1716 def steam_id_user_to_act_on=(value) @variables['steam_id_user_to_act_on'][:value] = value end