class MsgClientEmailAddrInfo

Class for the MsgClientEmailAddrInfo in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientEmailAddrInfo object

Calls superclass method SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 375
def initialize
  super([{:name=>"password_strength", :type=>"uint", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"flags_account_security_policy", :type=>"uint", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"validated", :type=>"byte", :modifier=>"boolmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}], [])
end

Public Instance Methods

flags_account_security_policy() click to toggle source

Gets the flags_account_security_policy variable.

@note defaults to @return [uint] the value of flags_account_security_policy

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

Sets the flags_account_security_policy variable.

@param value [uint] the new value

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

Gets the password_strength variable.

@note defaults to @return [uint] the value of password_strength

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

Sets the password_strength variable.

@param value [uint] the new value

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

Gets the validated variable.

@note defaults to @return [byte] the value of validated

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

Sets the validated variable.

@param value [byte] the new value

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