class MsgClientChatActionResult

Class for the MsgClientChatActionResult in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientChatActionResult object

Calls superclass method 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

action_result() click to toggle source

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
action_result=(value) click to toggle source

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
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 1781
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 1788
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 1751
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 1758
def steam_id_chat=(value)
  @variables['steam_id_chat'][:value] = value
end
steam_id_user_acted_on() click to toggle source

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
steam_id_user_acted_on=(value) click to toggle source

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