Struct stripe::IssuingAuthorization
source · [−]pub struct IssuingAuthorization {Show 22 fields
pub id: IssuingAuthorizationId,
pub amount: i64,
pub amount_details: Option<IssuingAuthorizationAmountDetails>,
pub approved: bool,
pub authorization_method: IssuingAuthorizationMethod,
pub balance_transactions: Vec<BalanceTransaction>,
pub card: IssuingCard,
pub cardholder: Option<Expandable<IssuingCardholder>>,
pub created: Timestamp,
pub currency: Currency,
pub livemode: bool,
pub merchant_amount: i64,
pub merchant_currency: Currency,
pub merchant_data: MerchantData,
pub metadata: Metadata,
pub pending_request: Option<IssuingAuthorizationPendingRequest>,
pub request_history: Vec<IssuingAuthorizationRequest>,
pub status: IssuingAuthorizationStatus,
pub transactions: Vec<IssuingTransaction>,
pub treasury: Option<IssuingAuthorizationTreasury>,
pub verification_data: IssuingAuthorizationVerificationData,
pub wallet: Option<String>,
}
Expand description
The resource representing a Stripe “IssuingAuthorization”.
Fields
id: IssuingAuthorizationId
Unique identifier for the object.
amount: i64
The total amount that was authorized or rejected.
This amount is in the card’s currency and in the smallest currency unit.
amount_details: Option<IssuingAuthorizationAmountDetails>
Detailed breakdown of amount components.
These amounts are denominated in currency
and in the smallest currency unit.
approved: bool
Whether the authorization has been approved.
How the card details were provided.
balance_transactions: Vec<BalanceTransaction>
List of balance transactions associated with this authorization.
card: IssuingCard
cardholder: Option<Expandable<IssuingCardholder>>
The cardholder to whom this authorization belongs.
created: Timestamp
Time at which the object was created.
Measured in seconds since the Unix epoch.
currency: Currency
Three-letter ISO currency code, in lowercase.
Must be a supported currency.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
merchant_amount: i64
The total amount that was authorized or rejected.
This amount is in the merchant_currency
and in the smallest currency unit.
merchant_currency: Currency
The currency that was presented to the cardholder for the authorization.
Three-letter ISO currency code, in lowercase. Must be a supported currency.
merchant_data: MerchantData
metadata: Metadata
Set of key-value pairs that you can attach to an object.
This can be useful for storing additional information about the object in a structured format.
pending_request: Option<IssuingAuthorizationPendingRequest>
The pending authorization request.
This field will only be non-null during an issuing_authorization.request
webhook.
request_history: Vec<IssuingAuthorizationRequest>
History of every time pending_request
was approved/denied, either by you directly or by Stripe (e.g.
based on your spending_controls
).
If the merchant changes the authorization by performing an incremental authorization, you can look at this field to see the previous requests for the authorization.
status: IssuingAuthorizationStatus
The current status of the authorization in its lifecycle.
transactions: Vec<IssuingTransaction>
List of transactions associated with this authorization.
treasury: Option<IssuingAuthorizationTreasury>
Treasury details related to this authorization if it was created on a FinancialAccount.
verification_data: IssuingAuthorizationVerificationData
wallet: Option<String>
The digital wallet used for this authorization.
One of apple_pay
, google_pay
, or samsung_pay
.
Trait Implementations
sourceimpl Clone for IssuingAuthorization
impl Clone for IssuingAuthorization
sourcefn clone(&self) -> IssuingAuthorization
fn clone(&self) -> IssuingAuthorization
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for IssuingAuthorization
impl Debug for IssuingAuthorization
sourceimpl Default for IssuingAuthorization
impl Default for IssuingAuthorization
sourcefn default() -> IssuingAuthorization
fn default() -> IssuingAuthorization
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for IssuingAuthorization
impl<'de> Deserialize<'de> for IssuingAuthorization
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Object for IssuingAuthorization
impl Object for IssuingAuthorization
sourceimpl Serialize for IssuingAuthorization
impl Serialize for IssuingAuthorization
Auto Trait Implementations
impl RefUnwindSafe for IssuingAuthorization
impl Send for IssuingAuthorization
impl Sync for IssuingAuthorization
impl Unpin for IssuingAuthorization
impl UnwindSafe for IssuingAuthorization
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more