Product

An InStore Product object.

This framework modifies the return of the InStore Product object. See here for the base data.

Product Object

Product Structure

Field
Type
Description

ProductId

string

Product.product_id

Name

string

Product.name

Description

?string

Product.description

Category

?string

Product.category

ParentProductId

?string

Product.parent_product_id

MaxPurchases

integer

Product.max_purchases

MaxUserPurchases

integer

Product.max_user_purchases

IconImageUrl

string

the asset link to the developer product image

PriceInRobux

integer

the price of the developer product

Owned

boolean

if the current user owns a license for the product

Example Product

{
  ProductId = "619608638377562112",
  Name = "My First Product",
  MaxPurchases = -1,
  MaxUserPurchases = 1,
  IconImageUrl = 'rbxassetid://12345678',
  PriceInRobux = 0,
  Owned = false,
}

Last updated

Was this helpful?