interface NewTier {
    awsDimensionAPIName?: string;
    isTrialTier: boolean;
    name: string;
    tierData: {
        allowApprovalsSolution?: boolean;
        allowFormsAppCustomDomains: boolean;
        allowFormsAppMenu: boolean;
        allowFormsAppPWASettings: boolean;
        allowSubmissionTitleSearch?: boolean;
        allowVolunteersSolution?: boolean;
        availableFormPostSubmissionActions?: null | FormPostSubmissionAction[];
        availableFormSubmissionEvents?: null | (
            | "CALLBACK"
            | "ONEBLINK_API"
            | "CP_PAY"
            | "BPOINT"
            | "WESTPAC_QUICK_STREAM"
            | "NSW_GOV_PAY"
            | "SCHEDULING"
            | "NYLAS"
            | "POWER_AUTOMATE_FLOW"
            | "CP_INTEGRATION_HUB_WEBHOOK"
            | "PDF"
            | "TRIM"
            | "CP_HCMS"
            | "CIVICA_CRM"
            | "EMAIL"
            | "FRESHDESK_CREATE_TICKET"
            | "FRESHDESK_ADD_NOTE_TO_TICKET")[];
        maximumAPIHostingInstances: TierLimitation;
        maximumAppUsers: TierLimitation;
        maximumAuthenticatedFormSubmissions: TierLimitation;
        maximumCDNHostingInstances: TierLimitation;
        maximumConsoleUsers: TierLimitation;
        maximumDeveloperKeys: TierLimitation;
        maximumFormAppsEnvironments: TierLimitation;
        maximumFormElementLookups: TierLimitation;
        maximumFormElementOptionsSets: TierLimitation;
        maximumFormSequentialNumberReceiptComponents: TierLimitation;
        maximumFormStoreAppUsers: TierLimitation;
        maximumFormStoreForms: TierLimitation;
        maximumFormSubmissions: TierLimitation;
        maximumForms?: TierLimitation;
        maximumFormsApps: TierLimitation;
        maximumScheduledFunctions: TierLimitation;
        maximumScheduledTaskCompletions: TierLimitation;
        maximumSchedulingCalendars: TierLimitation;
    };
}

Properties

awsDimensionAPIName?: string
isTrialTier: boolean
name: string
tierData: {
    allowApprovalsSolution?: boolean;
    allowFormsAppCustomDomains: boolean;
    allowFormsAppMenu: boolean;
    allowFormsAppPWASettings: boolean;
    allowSubmissionTitleSearch?: boolean;
    allowVolunteersSolution?: boolean;
    availableFormPostSubmissionActions?: null | FormPostSubmissionAction[];
    availableFormSubmissionEvents?: null | (
        | "CALLBACK"
        | "ONEBLINK_API"
        | "CP_PAY"
        | "BPOINT"
        | "WESTPAC_QUICK_STREAM"
        | "NSW_GOV_PAY"
        | "SCHEDULING"
        | "NYLAS"
        | "POWER_AUTOMATE_FLOW"
        | "CP_INTEGRATION_HUB_WEBHOOK"
        | "PDF"
        | "TRIM"
        | "CP_HCMS"
        | "CIVICA_CRM"
        | "EMAIL"
        | "FRESHDESK_CREATE_TICKET"
        | "FRESHDESK_ADD_NOTE_TO_TICKET")[];
    maximumAPIHostingInstances: TierLimitation;
    maximumAppUsers: TierLimitation;
    maximumAuthenticatedFormSubmissions: TierLimitation;
    maximumCDNHostingInstances: TierLimitation;
    maximumConsoleUsers: TierLimitation;
    maximumDeveloperKeys: TierLimitation;
    maximumFormAppsEnvironments: TierLimitation;
    maximumFormElementLookups: TierLimitation;
    maximumFormElementOptionsSets: TierLimitation;
    maximumFormSequentialNumberReceiptComponents: TierLimitation;
    maximumFormStoreAppUsers: TierLimitation;
    maximumFormStoreForms: TierLimitation;
    maximumFormSubmissions: TierLimitation;
    maximumForms?: TierLimitation;
    maximumFormsApps: TierLimitation;
    maximumScheduledFunctions: TierLimitation;
    maximumScheduledTaskCompletions: TierLimitation;
    maximumSchedulingCalendars: TierLimitation;
}