Interface OrganizationWithProductsData

interface OrganizationWithProductsData {
    organization: OrganizationRequestData;
    products: Record<string, PRODUCT_TIERS>;
}

Properties

products: Record<string, PRODUCT_TIERS>