import { FundsTransferMethodIDAttributes } from '../FundsTransferMethodIDAttributes' import { ValidateNested } from 'class-validator' import { Type } from 'class-transformer' export class FundsTransferMethodParams { type?: string // 'contributions' @ValidateNested() @Type(() => FundsTransferMethodIDAttributes) attributes: FundsTransferMethodIDAttributes }