Interface ProductModule

interface ProductModule {
    billing: { id: string };
    description: string;
    id: string;
    lowestTier: PRODUCT_TIERS;
    name: string;
    securityGroups?: Record<string, string>;
    type: "service" | "feature";
}

Properties

billing: { id: string }
description: string
id: string
lowestTier: PRODUCT_TIERS
name: string
securityGroups?: Record<string, string>
type: "service" | "feature"