Shop

export type ShopItemSummary = {
    itemId: string;
    collectionId: string;
    collectionName: string;
    currencyId: string;
    currency: string;
    price: number;
    appId: string;
    paymentUserId: string;
};

Last updated