class MsgGSGetUserGroupStatus

Class for the MsgGSGetUserGroupStatus in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgGSGetUserGroupStatus object

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

Public Instance Methods

steam_id_group() click to toggle source

Gets the steam_id_group variable.

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

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

Sets the steam_id_group variable.

@param value [ulong] the new value

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

Gets the steam_id_user variable.

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

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

Sets the steam_id_user variable.

@param value [ulong] the new value

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