import { ClassTransformer } from "class-transformer"; import { Expose, Transform } from 'class-transformer'; export class TransactionResultsResponse { orderNo: string; orderId: string; completedTime: number; createdTime: number; orderStatus: string; status: string; constructor(orderNo: string, orderId: string, completedTime: number, createdTime: number, orderStatus: string, status: string) { this.orderNo = orderNo; this.orderId = orderId; this.completedTime = completedTime; this.createdTime = createdTime; this.orderStatus = orderStatus; this.status = status; } }