@gibme/starlink
    Preparing search index...

    Interface ServiceLineDataUsage<DateType>

    interface ServiceLineDataUsage<DateType extends Date | string = string> {
        accountNumber: string | null;
        assetNumber: string | null;
        billingCycles: ServiceLineBillingCycle<DateType>[] | null;
        endDate: DateType;
        lastUpdated: DateType | null;
        servicePlan: ServicePlan<DateType>;
        startDate: DateType;
    }

    Type Parameters

    • DateType extends Date | string = string

    Hierarchy

    Index

    Properties

    accountNumber: string | null
    assetNumber: string | null
    billingCycles: ServiceLineBillingCycle<DateType>[] | null
    endDate: DateType
    lastUpdated: DateType | null
    servicePlan: ServicePlan<DateType>
    startDate: DateType