interface GetBillingResponse {
    currentPlan?: PlanDetails;
    currentPlanCacheUsage: number;
    extraCacheCost?: Money;
    extraCacheUsage: number;
    extraPipelinesCost?: Money;
    pipelineNumber: number;
    planCost?: Money;
    totalCost?: Money;
}

Properties

currentPlan?: PlanDetails

Information on the currently-selected, active Edge Services subscription plan.

currentPlanCacheUsage: number

Total amount of data egressed from the cache in gigabytes from the beginning of the month, included in the active subscription plan.

extraCacheCost?: Money

Cost to date (this month) of the data egressed from the cache that is not included in the active subscription plan.

extraCacheUsage: number

Total amount of extra data egressed from cache in gigabytes from the beginning of the month, not included in the active subscription plan.

extraPipelinesCost?: Money

Cost to date (this month) of pipelines not included in the subscription plan.

pipelineNumber: number

Total number of pipelines currently configured.

planCost?: Money

Price of the current subscription plan.

totalCost?: Money

Total cost to date (this month) of all Edge Services resources including active subscription plan, previously active plans, extra pipelines and extra egress cache data.