Class: MsgClientOGSBeginSessionResponse
- Inherits:
-
Object
- Object
- MsgClientOGSBeginSessionResponse
- Includes:
- SteamSerializable
- Defined in:
- lib/steamd/generated/steammsg.rb
Overview
Class for the MsgClientOGSBeginSessionResponse in the Steam Language.
Instance Attribute Summary
Attributes included from SteamSerializable
Instance Method Summary collapse
-
#collecting_any ⇒ byte
Gets the collecting_any variable.
-
#collecting_any=(value) ⇒ Object
Sets the collecting_any variable.
-
#collecting_details ⇒ byte
Gets the collecting_details variable.
-
#collecting_details=(value) ⇒ Object
Sets the collecting_details variable.
-
#initialize ⇒ MsgClientOGSBeginSessionResponse
constructor
Instantiate a MsgClientOGSBeginSessionResponse object.
-
#result ⇒ EResult
Gets the result variable.
-
#result=(value) ⇒ Object
Sets the result variable.
-
#session_id ⇒ ulong
Gets the session_id variable.
-
#session_id=(value) ⇒ Object
Sets the session_id variable.
Methods included from SteamSerializable
#consts, #deserialize, #encode_to, #flag, #serialize, #vars
Constructor Details
#initialize ⇒ MsgClientOGSBeginSessionResponse
Instantiate a MsgClientOGSBeginSessionResponse object
660 661 662 |
# File 'lib/steamd/generated/steammsg.rb', line 660 def initialize super([{:name=>"result", :type=>"EResult", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"collecting_any", :type=>"byte", :modifier=>"boolmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"collecting_details", :type=>"byte", :modifier=>"boolmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"session_id", :type=>"ulong", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end |
Instance Method Details
#collecting_any ⇒ byte
defaults to
Gets the collecting_any variable.
683 684 685 |
# File 'lib/steamd/generated/steammsg.rb', line 683 def collecting_any @variables['collecting_any'][:value] end |
#collecting_any=(value) ⇒ Object
Sets the collecting_any variable.
690 691 692 |
# File 'lib/steamd/generated/steammsg.rb', line 690 def collecting_any=(value) @variables['collecting_any'][:value] = value end |
#collecting_details ⇒ byte
defaults to
Gets the collecting_details variable.
698 699 700 |
# File 'lib/steamd/generated/steammsg.rb', line 698 def collecting_details @variables['collecting_details'][:value] end |
#collecting_details=(value) ⇒ Object
Sets the collecting_details variable.
705 706 707 |
# File 'lib/steamd/generated/steammsg.rb', line 705 def collecting_details=(value) @variables['collecting_details'][:value] = value end |
#result ⇒ EResult
defaults to
Gets the result variable.
668 669 670 |
# File 'lib/steamd/generated/steammsg.rb', line 668 def result @variables['result'][:value] end |
#result=(value) ⇒ Object
Sets the result variable.
675 676 677 |
# File 'lib/steamd/generated/steammsg.rb', line 675 def result=(value) @variables['result'][:value] = value end |
#session_id ⇒ ulong
defaults to
Gets the session_id variable.
713 714 715 |
# File 'lib/steamd/generated/steammsg.rb', line 713 def session_id @variables['session_id'][:value] end |
#session_id=(value) ⇒ Object
Sets the session_id variable.
720 721 722 |
# File 'lib/steamd/generated/steammsg.rb', line 720 def session_id=(value) @variables['session_id'][:value] = value end |