import { ClassTransformer } from "class-transformer"; import { Expose, Transform } from 'class-transformer'; import { Fee } from './Fee'; // PayInCreateOrderResponse.ts export class PayOutResponse { amount: number; orderNo: string; orderId: string; fee: Fee orderStatus: string message: string status: string constructor(amount: number, orderNo: string, orderId: string, fee: Fee, orderStatus: string, message: string, status: string) { this.amount = amount; this.orderNo = orderNo; this.orderId = orderId; this.fee = fee; this.orderStatus = orderStatus; this.message = message; this.status = status; } }