node-ovh-ts
Version:
OVH API wrapper library for TypeScript
21 lines (18 loc) • 635 B
TypeScript
import { MePaymentMeanBankAccountStateEnum } from './MePaymentMeanBankAccountStateEnum.js';
import { MePaymentMeanIconData } from './MePaymentMeanIconData.js';
type MePaymentMeanBankAccount = {
bic?: string;
creationDate?: Date;
defaultPaymentMean?: boolean;
description?: string | null;
iban?: string;
icon?: MePaymentMeanIconData | null;
id?: number;
mandateSignatureDate?: Date | null;
ownerAddress?: string;
ownerName?: string;
state?: MePaymentMeanBankAccountStateEnum;
uniqueReference?: string;
validationDocumentLink?: string | null;
};
export { MePaymentMeanBankAccount };