class MsgClientCreateChatResponse

Class for the MsgClientCreateChatResponse in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientCreateChatResponse object

Calls superclass method SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 2418
def initialize
  super([{:name=>"result", :type=>"EResult", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_chat", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"chat_room_type", :type=>"EChatRoomType", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_friend_chat", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}], [])
end

Public Instance Methods

chat_room_type() click to toggle source

Gets the chat_room_type variable.

@note defaults to @return [EChatRoomType] the value of chat_room_type

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

Sets the chat_room_type variable.

@param value [EChatRoomType] the new value

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

Gets the result variable.

@note defaults to @return [EResult] the value of result

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

Sets the result variable.

@param value [EResult] the new value

# File lib/steamd/generated/steammsg.rb, line 2433
def result=(value)
  @variables['result'][: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 2441
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 2448
def steam_id_chat=(value)
  @variables['steam_id_chat'][:value] = value
end
steam_id_friend_chat() click to toggle source

Gets the steam_id_friend_chat variable.

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

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

Sets the steam_id_friend_chat variable.

@param value [ulong] the new value

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