class MsgClientMarketingMessageUpdate2

Class for the MsgClientMarketingMessageUpdate2 in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientMarketingMessageUpdate2 object

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

Public Instance Methods

count() click to toggle source

Gets the count variable.

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

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

Sets the count variable.

@param value [uint] the new value

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

Gets the marketing_message_update_time variable.

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

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

Sets the marketing_message_update_time variable.

@param value [uint] the new value

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