Class: MsgClientChatMemberInfo
- Inherits:
-
Object
- Object
- MsgClientChatMemberInfo
- Includes:
- SteamSerializable
- Defined in:
- lib/steamd/generated/steammsg.rb
Overview
Class for the MsgClientChatMemberInfo in the Steam Language.
Instance Attribute Summary
Attributes included from SteamSerializable
Instance Method Summary collapse
-
#initialize ⇒ MsgClientChatMemberInfo
constructor
Instantiate a MsgClientChatMemberInfo object.
-
#steam_id_chat ⇒ ulong
Gets the steam_id_chat variable.
-
#steam_id_chat=(value) ⇒ Object
Sets the steam_id_chat variable.
-
#type ⇒ EChatInfoType
Gets the type variable.
-
#type=(value) ⇒ Object
Sets the type variable.
Methods included from SteamSerializable
#consts, #deserialize, #encode_to, #flag, #serialize, #vars
Constructor Details
#initialize ⇒ MsgClientChatMemberInfo
Instantiate a MsgClientChatMemberInfo object
1644 1645 1646 |
# File 'lib/steamd/generated/steammsg.rb', line 1644 def initialize super([{:name=>"steam_id_chat", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"type", :type=>"EChatInfoType", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end |
Instance Method Details
#steam_id_chat ⇒ ulong
Note:
defaults to
Gets the steam_id_chat variable.
1652 1653 1654 |
# File 'lib/steamd/generated/steammsg.rb', line 1652 def steam_id_chat @variables['steam_id_chat'][:value] end |
#steam_id_chat=(value) ⇒ Object
Sets the steam_id_chat variable.
1659 1660 1661 |
# File 'lib/steamd/generated/steammsg.rb', line 1659 def steam_id_chat=(value) @variables['steam_id_chat'][:value] = value end |
#type ⇒ EChatInfoType
Note:
defaults to
Gets the type variable.
1667 1668 1669 |
# File 'lib/steamd/generated/steammsg.rb', line 1667 def type @variables['type'][:value] end |
#type=(value) ⇒ Object
Sets the type variable.
1674 1675 1676 |
# File 'lib/steamd/generated/steammsg.rb', line 1674 def type=(value) @variables['type'][:value] = value end |