interface RewardProduct {
    id: string;
    product: {
        description?: string;
        id: string;
        name: string;
    };
    type: "product";
    userInventory: {
        id: string;
        quantity: number;
    };
}

Hierarchy (view full)

Properties

id: string
product: {
    description?: string;
    id: string;
    name: string;
}
type
userInventory: {
    id: string;
    quantity: number;
}