pub struct Authorizations {
Show 22 fields pub id: String, pub object: Object, pub approved: bool, pub authorization_method: AuthorizationMethod, pub authorized_amount: i64, pub authorized_currency: Currency, pub balance_transactions: Vec<BalanceTransaction>, pub card: Option<String>, pub cardholder: String, pub created: i64, pub held_amount: i64, pub held_currency: Currency, pub is_held_amount_controllable: bool, pub livemode: bool, pub merchant_data: MerchantData, pub metadata: HashMap<String, String>, pub pending_authorized_amount: i64, pub pending_held_amount: i64, pub request_history: Vec<RequestHistory>, pub status: AuthorizationStatus, pub transactions: Option<String>, pub verification_data: VerificationData,
}

Fields§

§id: String§object: Object§approved: bool§authorization_method: AuthorizationMethod§authorized_amount: i64§authorized_currency: Currency§balance_transactions: Vec<BalanceTransaction>§card: Option<String>§cardholder: String§created: i64§held_amount: i64§held_currency: Currency§is_held_amount_controllable: bool§livemode: bool§merchant_data: MerchantData§metadata: HashMap<String, String>§pending_authorized_amount: i64§pending_held_amount: i64§request_history: Vec<RequestHistory>§status: AuthorizationStatus§transactions: Option<String>§verification_data: VerificationData

Implementations§

Trait Implementations§

Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. 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.

Calls U::from(self).

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

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.