class MsgClientChatActionResult
Class for the MsgClientChatActionResult
in the Steam Language.
Public Class Methods
Instantiate a MsgClientChatActionResult
object
SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1743 def initialize super([{:name=>"steam_id_chat", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_user_acted_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}, {:name=>"action_result", :type=>"EChatActionResult", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end
Public Instance Methods
Gets the action_result
variable.
@note defaults to @return [EChatActionResult] the value of action_result
# File lib/steamd/generated/steammsg.rb, line 1796 def action_result @variables['action_result'][:value] end
Sets the action_result
variable.
@param value [EChatActionResult] the new value
# File lib/steamd/generated/steammsg.rb, line 1803 def action_result=(value) @variables['action_result'][:value] = value end
Gets the chat_action
variable.
@note defaults to @return [EChatAction] the value of chat_action
# File lib/steamd/generated/steammsg.rb, line 1781 def chat_action @variables['chat_action'][:value] end
Sets the chat_action
variable.
@param value [EChatAction] the new value
# File lib/steamd/generated/steammsg.rb, line 1788 def chat_action=(value) @variables['chat_action'][:value] = value end
Gets the steam_id_chat
variable.
@note defaults to @return [ulong] the value of steam_id_chat
# File lib/steamd/generated/steammsg.rb, line 1751 def steam_id_chat @variables['steam_id_chat'][:value] end
Sets the steam_id_chat
variable.
@param value [ulong] the new value
# File lib/steamd/generated/steammsg.rb, line 1758 def steam_id_chat=(value) @variables['steam_id_chat'][:value] = value end
Gets the steam_id_user_acted_on
variable.
@note defaults to @return [ulong] the value of steam_id_user_acted_on
# File lib/steamd/generated/steammsg.rb, line 1766 def steam_id_user_acted_on @variables['steam_id_user_acted_on'][:value] end
Sets the steam_id_user_acted_on
variable.
@param value [ulong] the new value
# File lib/steamd/generated/steammsg.rb, line 1773 def steam_id_user_acted_on=(value) @variables['steam_id_user_acted_on'][:value] = value end