node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 443 B
TypeScript
import { DebtAssociatedObjectTypeEnum } from './DebtAssociatedObjectTypeEnum.js';
import { DebtAssociatedObjectPaymentInfo } from './DebtAssociatedObjectPaymentInfo.js';
import './BillingPaymentMeanEnum.js';
type DebtEntryAssociatedObject = {
id?: string | null;
paymentInfo?: DebtAssociatedObjectPaymentInfo | null;
subId?: string | null;
type?: DebtAssociatedObjectTypeEnum | null;
};
export { DebtEntryAssociatedObject };