Struct stripe::generated::issuing::issuing_authorization::IssuingAuthorizationPendingRequest
source · pub struct IssuingAuthorizationPendingRequest {
pub amount: i64,
pub amount_details: Option<IssuingAuthorizationAmountDetails>,
pub currency: Currency,
pub is_amount_controllable: bool,
pub merchant_amount: i64,
pub merchant_currency: Currency,
}Fields§
§amount: i64The additional amount Stripe will hold if the authorization is approved, 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.
currency: CurrencyThree-letter ISO currency code, in lowercase.
Must be a supported currency.
is_amount_controllable: boolIf set true, you may provide amount to control how much to hold for the authorization.
merchant_amount: i64The amount the merchant is requesting to be authorized in the merchant_currency.
The amount is in the smallest currency unit.
merchant_currency: CurrencyThe local currency the merchant is requesting to authorize.
Trait Implementations§
source§impl Clone for IssuingAuthorizationPendingRequest
impl Clone for IssuingAuthorizationPendingRequest
source§fn clone(&self) -> IssuingAuthorizationPendingRequest
fn clone(&self) -> IssuingAuthorizationPendingRequest
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for IssuingAuthorizationPendingRequest
impl Default for IssuingAuthorizationPendingRequest
source§fn default() -> IssuingAuthorizationPendingRequest
fn default() -> IssuingAuthorizationPendingRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IssuingAuthorizationPendingRequest
impl<'de> Deserialize<'de> for IssuingAuthorizationPendingRequest
source§fn 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