Class: MsgClientCreateChatResponse
- Inherits:
-
Object
- Object
- MsgClientCreateChatResponse
- Includes:
- SteamSerializable
- Defined in:
- lib/steamd/generated/steammsg.rb
Overview
Class for the MsgClientCreateChatResponse in the Steam Language.
Instance Attribute Summary
Attributes included from SteamSerializable
Instance Method Summary collapse
-
#chat_room_type ⇒ EChatRoomType
Gets the chat_room_type variable.
-
#chat_room_type=(value) ⇒ Object
Sets the chat_room_type variable.
-
#initialize ⇒ MsgClientCreateChatResponse
constructor
Instantiate a MsgClientCreateChatResponse object.
-
#result ⇒ EResult
Gets the result variable.
-
#result=(value) ⇒ Object
Sets the result variable.
-
#steam_id_chat ⇒ ulong
Gets the steam_id_chat variable.
-
#steam_id_chat=(value) ⇒ Object
Sets the steam_id_chat variable.
-
#steam_id_friend_chat ⇒ ulong
Gets the steam_id_friend_chat variable.
-
#steam_id_friend_chat=(value) ⇒ Object
Sets the steam_id_friend_chat variable.
Methods included from SteamSerializable
#consts, #deserialize, #encode_to, #flag, #serialize, #vars
Constructor Details
#initialize ⇒ MsgClientCreateChatResponse
Instantiate a MsgClientCreateChatResponse object
2418 2419 2420 |
# 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 |
Instance Method Details
#chat_room_type ⇒ EChatRoomType
defaults to
Gets the chat_room_type variable.
2456 2457 2458 |
# File 'lib/steamd/generated/steammsg.rb', line 2456 def chat_room_type @variables['chat_room_type'][:value] end |
#chat_room_type=(value) ⇒ Object
Sets the chat_room_type variable.
2463 2464 2465 |
# File 'lib/steamd/generated/steammsg.rb', line 2463 def chat_room_type=(value) @variables['chat_room_type'][:value] = value end |
#result ⇒ EResult
defaults to
Gets the result variable.
2426 2427 2428 |
# File 'lib/steamd/generated/steammsg.rb', line 2426 def result @variables['result'][:value] end |
#result=(value) ⇒ Object
Sets the result variable.
2433 2434 2435 |
# File 'lib/steamd/generated/steammsg.rb', line 2433 def result=(value) @variables['result'][:value] = value end |
#steam_id_chat ⇒ ulong
defaults to
Gets the steam_id_chat variable.
2441 2442 2443 |
# File 'lib/steamd/generated/steammsg.rb', line 2441 def steam_id_chat @variables['steam_id_chat'][:value] end |
#steam_id_chat=(value) ⇒ Object
Sets the steam_id_chat variable.
2448 2449 2450 |
# File 'lib/steamd/generated/steammsg.rb', line 2448 def steam_id_chat=(value) @variables['steam_id_chat'][:value] = value end |
#steam_id_friend_chat ⇒ ulong
defaults to
Gets the steam_id_friend_chat variable.
2471 2472 2473 |
# 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) ⇒ Object
Sets the steam_id_friend_chat variable.
2478 2479 2480 |
# File 'lib/steamd/generated/steammsg.rb', line 2478 def steam_id_friend_chat=(value) @variables['steam_id_friend_chat'][:value] = value end |