Class: MsgClientChatMemberInfo

Inherits:
Object
  • Object
show all
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

#constants, #variables

Instance Method Summary collapse

Methods included from SteamSerializable

#consts, #deserialize, #encode_to, #flag, #serialize, #vars

Constructor Details

#initializeMsgClientChatMemberInfo

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_chatulong

Note:

defaults to

Gets the steam_id_chat variable.

Returns:

  • (ulong)

    the value of steam_id_chat



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.

Parameters:

  • value (ulong)

    the new value



1659
1660
1661
# File 'lib/steamd/generated/steammsg.rb', line 1659

def steam_id_chat=(value)
  @variables['steam_id_chat'][:value] = value
end

#typeEChatInfoType

Note:

defaults to

Gets the type variable.

Returns:



1667
1668
1669
# File 'lib/steamd/generated/steammsg.rb', line 1667

def type
  @variables['type'][:value]
end

#type=(value) ⇒ Object

Sets the type variable.

Parameters:



1674
1675
1676
# File 'lib/steamd/generated/steammsg.rb', line 1674

def type=(value)
  @variables['type'][:value] = value
end