@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
32 lines • 882 B
TypeScript
import { IconData } from './IconData';
import { BankAccountStateEnum } from './BankAccountStateEnum';
/** Credit card information */
export interface BankAccount {
/** */
bic: string;
/** */
creationDate: string;
/** This credit card is the default payment mean? */
defaultPaymentMean: boolean;
/** Custom description of this bank account */
description?: string;
/** */
iban: string;
/** Payment method type icon */
icon?: IconData;
/** */
id: number;
/** */
mandateSignatureDate?: string;
/** Bank account owner's address */
ownerAddress: string;
/** Bank account owner's name */
ownerName: string;
/** Bank account state */
state: BankAccountStateEnum;
/** */
uniqueReference: string;
/** */
validationDocumentLink?: string;
}
//# sourceMappingURL=BankAccount.d.ts.map