class MsgGSGetUserGroupStatusResponse

Class for the MsgGSGetUserGroupStatusResponse in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgGSGetUserGroupStatusResponse object

Calls superclass method SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1341
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}, {:name=>"clan_relationship", :type=>"EClanRelationship", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"clan_rank", :type=>"EClanRank", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], [])
end

Public Instance Methods

clan_rank() click to toggle source

Gets the clan_rank variable.

@note defaults to @return [EClanRank] the value of clan_rank

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

Sets the clan_rank variable.

@param value [EClanRank] the new value

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

Gets the clan_relationship variable.

@note defaults to @return [EClanRelationship] the value of clan_relationship

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

Sets the clan_relationship variable.

@param value [EClanRelationship] the new value

# File lib/steamd/generated/steammsg.rb, line 1386
def clan_relationship=(value)
  @variables['clan_relationship'][:value] = value
end
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 1364
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 1371
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 1349
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 1356
def steam_id_user=(value)
  @variables['steam_id_user'][:value] = value
end