import { Attr } from 'ts-framework' import { PaymentAccountTypesEnum } from '../constants/payment-account-types' export class AccountInfoResponseDTO { @Attr({ type: String, optional: true }) id: string @Attr({ type: String }) firstName: string @Attr({ type: String }) lastName: string @Attr({ type: String }) businessName: string @Attr({ type: String }) businessTaxId: string @Attr({ type: String, optional: true }) type: PaymentAccountTypesEnum }