Interface OrganizationProductDataResponse

interface OrganizationProductDataResponse {
    products?: { id: string; product: Product; tier: PRODUCT_TIERS }[];
    state: OrganizationState;
}

Properties

Properties

products?: { id: string; product: Product; tier: PRODUCT_TIERS }[]