Skip to content

Latest commit

 

History

History
56 lines (34 loc) · 851 Bytes

File metadata and controls

56 lines (34 loc) · 851 Bytes
source

Represents an in-world item a player is authorized to access due to a purchase, achievement, or some type of reward system.

export interface PlayerEntitlement 

The description of the item as it appears in the UI.

Signature

description: string;

The name of the item as it appears in the UI.

Signature

displayName: string;

The number of items player has entitlements to.

Signature

quantity: number;

The SKU of the item.

Signature

sku: string;