BillingInfo contains an organization, its enablement status and the Azure Subscription for it.

interface BillingInfo {
    advSecEnabled?: boolean;
    advSecEnabledChangedOnDate?: Date;
    advSecEnabledFirstChangedOnDate?: Date;
    azureSubscriptionId?: string;
    billingMode?: BillingMode;
    organizationId?: string;
    tenantId?: string;
}

Properties

advSecEnabled?: boolean
advSecEnabledChangedOnDate?: Date

The most recent time the enablement state was modified.

advSecEnabledFirstChangedOnDate?: Date

The first time the enablement state was modified.

azureSubscriptionId?: string
billingMode?: BillingMode
organizationId?: string
tenantId?: string