The signed discount applied to a payment

interface PaymentDiscount {
    id: string;
    key: string;
    nonce: string;
    signature: string;
    timestamp: string;
}

Properties

id: string

A string used to uniquely identify a discount offer for a product.

key: string

A string that identifies the key used to generate the signature.

nonce: string

A universally unique ID (UUID) value that you define.

signature: string

A string representing the properties of a specific promotional offer, cryptographically signed.

timestamp: string

The date and time of the signature's creation in milliseconds, formatted in Unix epoch time.