class MsgClientSetIgnoreFriend
Class for the MsgClientSetIgnoreFriend
in the Steam Language.
Public Class Methods
new()
click to toggle source
Instantiate a MsgClientSetIgnoreFriend
object
Calls superclass method
SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1857 def initialize super([{:name=>"my_steam_id", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_friend", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"ignore", :type=>"byte", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end
Public Instance Methods
ignore()
click to toggle source
Gets the ignore variable.
@note defaults to @return [byte] the value of ignore
# File lib/steamd/generated/steammsg.rb, line 1895 def ignore @variables['ignore'][:value] end
ignore=(value)
click to toggle source
Sets the ignore variable.
@param value [byte] the new value
# File lib/steamd/generated/steammsg.rb, line 1902 def ignore=(value) @variables['ignore'][:value] = value end
my_steam_id()
click to toggle source
Gets the my_steam_id
variable.
@note defaults to @return [ulong] the value of my_steam_id
# File lib/steamd/generated/steammsg.rb, line 1865 def my_steam_id @variables['my_steam_id'][:value] end
my_steam_id=(value)
click to toggle source
Sets the my_steam_id
variable.
@param value [ulong] the new value
# File lib/steamd/generated/steammsg.rb, line 1872 def my_steam_id=(value) @variables['my_steam_id'][:value] = value end
steam_id_friend()
click to toggle source
Gets the steam_id_friend
variable.
@note defaults to @return [ulong] the value of steam_id_friend
# File lib/steamd/generated/steammsg.rb, line 1880 def steam_id_friend @variables['steam_id_friend'][:value] end
steam_id_friend=(value)
click to toggle source
Sets the steam_id_friend
variable.
@param value [ulong] the new value
# File lib/steamd/generated/steammsg.rb, line 1887 def steam_id_friend=(value) @variables['steam_id_friend'][:value] = value end