import { ValidateNested } from 'class-validator' import { Type } from 'class-transformer' import { FundsTransferMethodParams } from './FundsTransferMethodParams' export class WithdrawFundsUsingFundsTransferMethodRequest { include?: string @ValidateNested() @Type(() => FundsTransferMethodParams) data: FundsTransferMethodParams }