class PUBG::Player::Data::Attributes

Public Class Methods

new(args) click to toggle source
# File lib/pubg/player/data/attributes.rb, line 5
def initialize(args)
  @args = args
end

Public Instance Methods

createdAt() click to toggle source
# File lib/pubg/player/data/attributes.rb, line 17
def createdAt
  @args["createdAt"]
end
name() click to toggle source
# File lib/pubg/player/data/attributes.rb, line 29
def name
  @args["name"]
end
patchVersion() click to toggle source
# File lib/pubg/player/data/attributes.rb, line 25
def patchVersion
  @args["patchVersion"]
end
shardId() click to toggle source
# File lib/pubg/player/data/attributes.rb, line 13
def shardId
  @args["shardId"]
end
stats() click to toggle source
# File lib/pubg/player/data/attributes.rb, line 33
def stats
  @args["stats"]
end
titleId() click to toggle source
# File lib/pubg/player/data/attributes.rb, line 9
def titleId
  @args["titleId"]
end
updatedAt() click to toggle source
# File lib/pubg/player/data/attributes.rb, line 21
def updatedAt
  @args["updatedAt"]
end