The attributes related to the payment made from customer to seller for this order.

PaymentInformation

interface PaymentInformation {
    paymentDate: string;
    paymentMode: string;
    paymentTransactionId: string;
}

Properties

paymentDate: string

Date timestamp

PaymentInformation

paymentMode: string

The transaction mode of this payment.

PaymentInformation

paymentTransactionId: string

The transaction identifier of this payment.

PaymentInformation