@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
28 lines • 1.07 kB
TypeScript
import { Price } from '../order/Price';
import { BillingAccountStatusEnum } from './BillingAccountStatusEnum';
/** Billing Account */
export interface BillingAccount {
/** Allowed outplan */
allowedOutplan: Price;
/** Name of the billing account */
billingAccount: string;
/** Allowed threshold credit */
creditThreshold: Price;
/** Current outplan */
currentOutplan: Price;
/** Description of the billing account */
description: string;
/** Check if the billing account contains at least one special number */
hasSpecialNumbers: boolean;
/** Hide called numbers in end-of-month call details CSV */
hiddenExternalNumber: boolean;
/** Override number display for calls between services of your billing account */
overrideDisplayedNumber: boolean;
/** Security deposit amount */
securityDeposit: Price;
/** Current status of billing account */
status: BillingAccountStatusEnum;
/** Is the billing account trusted */
trusted: boolean;
}
//# sourceMappingURL=BillingAccount.d.ts.map