class MsgClientOGSBeginSessionResponse

Class for the MsgClientOGSBeginSessionResponse in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientOGSBeginSessionResponse object

Calls superclass method SteamSerializable::new
# 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

Public Instance Methods

collecting_any() click to toggle source

Gets the collecting_any variable.

@note defaults to @return [byte] the value of collecting_any

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

Sets the collecting_any variable.

@param value [byte] the new value

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

Gets the collecting_details variable.

@note defaults to @return [byte] the value of collecting_details

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

Sets the collecting_details variable.

@param value [byte] the new value

# File lib/steamd/generated/steammsg.rb, line 705
def collecting_details=(value)
  @variables['collecting_details'][: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 668
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 675
def result=(value)
  @variables['result'][:value] = value
end
session_id() click to toggle source

Gets the session_id variable.

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

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

Sets the session_id variable.

@param value [ulong] the new value

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