Class: ShopResource
Shop
get()
GET /shop
get():
Promise<Shop[]>
Gets shop categories and items
Returns
Promise<Shop[]>
Array of Shop objects
Since
1.0.0
Example
javascript
const shop = await rest.shop.get();inventory()
GET /shop/inventory
inventory():
Promise<Item[]>
Gets user inventory
Returns
Promise<Item[]>
Array of Item objects
Since
1.0.0
Example
javascript
const inventory = await rest.shop.inventory();