Cluster Creator Kit Script Reference
    Preparing search index...

    Interface OwnProductItem

    Describing the status of owned purchasable items. Refer to ClusterScript.getOwnProducts and ClusterScript.onGetOwnProducts for details.

    interface OwnProduct {
        minusAmount: number;
        player: PlayerHandle;
        plusAmount: number;
        productId: string;
    }
    Index

    Properties

    minusAmount: number

    The total number of purchasable items that the player has received a refund.

    player: PlayerHandle

    The player who owns the purchasable item.

    plusAmount: number

    The total number of purchasable items that the player has purchased.

    productId: string

    The product ID of the purchasable item.