Interface Product

interface Product {
    billing: Record<
        PRODUCT_TIERS,
        {
            annual?: { id: string; price: number };
            monthly: { id: string; price: number };
        },
    >;
    description: string;
    modules?: ProductModule[];
    name: string;
    productLine: FACILITY_MANAGEMENT;
    roles?: ProductRole[];
    rootElement: string;
    sourceOrganization: string;
}

Properties

billing: Record<
    PRODUCT_TIERS,
    {
        annual?: { id: string; price: number };
        monthly: { id: string; price: number };
    },
>
description: string
modules?: ProductModule[]
name: string
productLine: FACILITY_MANAGEMENT
roles?: ProductRole[]
rootElement: string
sourceOrganization: string