@gibme/starlink
    Preparing search index...

    Interface RealtimeDataTracking<DateType>

    interface RealtimeDataTracking<DateType extends Date | string = string> {
        accountNumber: string | null;
        billingCycles: BillingCycle<DateType>[] | null;
        endDate: DateType;
        lastUpdated: DateType | null;
        serviceLineNumber: string | null;
        servicePlan: ServicePlan<DateType>;
        startDate: DateType;
    }

    Type Parameters

    • DateType extends Date | string = string
    Index

    Properties

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