class PUBG::Match::Participants

Attributes

actor[R]
attributes[R]
id[R]
sharId[R]
type[R]

Public Class Methods

new(args) click to toggle source
# File lib/pubg/match/participants.rb, line 8
def initialize(args)
  @type = args["type"]
  @id = args["id"]
  @attributes = Attributes.new(args["attributes"])
  @actor = args["attributes"]["actor"]
  @shardId = args["attributes"]["shardId"]
end