pub struct TransactionOverviewApiSchema {
    pub processor_status: Option<String>,
    pub transaction_type: Option<String>,
    pub processor_merchant_id: String,
    pub amount: Value,
    pub date: String,
    pub processor_transaction_id: Option<String>,
    pub processor_status_reason: Option<StatusReasonApiSchema>,
    pub processor_name: Option<String>,
    pub currency_code: String,
}

Fields

processor_status: Option<String>

Transaction status, please refer to the Transaction Status Codes table for more information

transaction_type: Option<String>processor_merchant_id: String

Processor’s main account identifier.

Adyen: Account code Braintree: Merchant ID Stripe: Account ID“

amount: Value

Transaction amount in minor units

date: String

Date & time of the transaction (UTC)

processor_transaction_id: Option<String>

Processor’s unique identifier for the transaction

processor_status_reason: Option<StatusReasonApiSchema>

If the transaction has a declined or failed status.

Only if the status is DECLINED or FAILED, otherwise null.

processor_name: Option<String>

An identifier of a processor.

currency_code: String

The 3-letter currency code in ISO 4217 format. e.g. use USD for US dollars.

Trait Implementations

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more