Transaction type from Braintree

interface ApiValidatorBodyTransactionBraintree {
    deviceData: any;
    id: string;
    paymentDescription?: string;
    paymentMethodNonce: string;
    paymentMethodType?: string;
    type: BRAINTREE;
}

Properties

deviceData: any

Data collected on the device

id: string

No need for an id, just set to a non-empty string

paymentDescription?: string

Description of the payment method (only used for information)

paymentMethodNonce: string

Payment method nonce

paymentMethodType?: string

Type of payment method (only used for information)

type: BRAINTREE

Value "braintree"