class MsgChannelEncryptResult
Class for the MsgChannelEncryptResult
in the Steam Language.
Public Class Methods
new()
click to toggle source
Instantiate a MsgChannelEncryptResult
object
Calls superclass method
SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 136 def initialize super([{:name=>"result", :type=>"EResult", :modifier=>nil, :value=>"EResult::INVALID", :size=>nil, :modifier_size=>nil}], []) self.result = EResult::INVALID end
Public Instance Methods
result()
click to toggle source
Gets the result variable.
@note defaults to EResult::INVALID @return [EResult] the value of result
# File lib/steamd/generated/steammsg.rb, line 145 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 152 def result=(value) @variables['result'][:value] = value end