@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 458 B
TypeScript
import { Price } from '../order/Price';
/** Debt balance of the account */
export interface Balance {
/** */
active: boolean;
/** Amount of debts the account has */
dueAmount: Price;
/** Amount currently being processed */
pendingAmount: Price;
/** Reserved amount awaiting payment */
todoAmount: Price;
/** Unmatured amount for deferred payment term */
unmaturedAmount: Price;
}
//# sourceMappingURL=Balance.d.ts.map