class MsgClientSetIgnoreFriendResponse

Class for the MsgClientSetIgnoreFriendResponse in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientSetIgnoreFriendResponse object

Calls superclass method SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1914
def initialize
  super([{:name=>"unknown", :type=>"ulong", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"result", :type=>"EResult", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], [])
end

Public Instance Methods

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 1937
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 1944
def result=(value)
  @variables['result'][:value] = value
end
unknown() click to toggle source

Gets the unknown variable.

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

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

Sets the unknown variable.

@param value [ulong] the new value

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