class PUBG::Match::Roster::Attributes

Attributes

shardId[R]
stats[R]
won[R]

Public Class Methods

new(args) click to toggle source
# File lib/pubg/match/roster/attributes.rb, line 7
def initialize(args)
  @stats = Stats.new(args["stats"])
  @won = args["won"]
  @shardId = args["shardId"]
end