import { ApiProperty } from '@nestjs/swagger'; import { PaymentDTO } from './PaymentDTO'; export class CreatePaymentOutputDTO { @ApiProperty({ type: PaymentDTO }) payment!: PaymentDTO; }