class PUBG::Match::Roster
Attributes
attributes[R]
id[R]
relationships[R]
type[R]
Public Class Methods
new(args)
click to toggle source
# File lib/pubg/match/roster.rb, line 9 def initialize(args) @type = args["type"] @id = args["id"] @attributes = Attributes.new(args["attributes"]) @relationships = Relationships.new(args["relationships"]) end