@gibme/starlink
    Preparing search index...

    Interface ServiceLineDataUsage<DateType>

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

    Type Parameters

    • DateType extends Date | string = string

    Hierarchy

    Index

    Properties

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