interfacePaymentContact
export interface PaymentContact {
id: string;
contactType: PaymentContactType;
name: string;
group?: string;
currency: Currency;
createdDate: string;
isAdminContact: boolean;
isCompanyContact: boolean;
isEnabled: boolean;
identifiers: PaymentContactIdentifier[];
maxReferenceLength: number;
lastUsedDate?: string;
lastUsedAmount?: string;
lastUsedCurrency?: Currency;
lastUsedRecipientEmail?: string;
lastUsedReference?: string;
defaultReference?: string;
}