interface PaymentOrder {
    amount: number;
    concept: string;
    creationDate: string;
    currency: Currency;
    expirationDate: string;
    paymentOrderId: string;
    reference: string;
    shortCode: string;
    status: PaymentOrderStatus;
}

Properties

amount: number
concept: string
creationDate: string
currency: Currency
expirationDate: string
paymentOrderId: string
reference: string
shortCode: string