class PUBG::Telemetry::Item

Attributes

attacheditems[R]
category[R]
data[R]
itemid[R]
stackcount[R]
subcategory[R]

Public Class Methods

new(args) click to toggle source
# File lib/pubg/telemetry/shared/item.rb, line 6
def initialize(args)
  @data = args
  @itemid = args["ItemId"]
  @stackcount = args["StackCount"]
  @category = args["Category"]
  @subcategory = args["SubCategory"]
  @attacheditems = args["AttachedItems"]
end