Struct stripe::model::IssuingAuthorizationRequest
source · pub struct IssuingAuthorizationRequest {
pub amount: i64,
pub amount_details: Option<Value>,
pub approved: bool,
pub authorization_code: Option<String>,
pub created: i64,
pub currency: String,
pub merchant_amount: i64,
pub merchant_currency: String,
pub network_risk_score: Option<i64>,
pub reason: String,
pub reason_message: Option<String>,
pub requested_at: Option<i64>,
}Fields§
§amount: i64§amount_details: Option<Value>§approved: bool§created: i64§currency: String§merchant_amount: i64§merchant_currency: String§network_risk_score: Option<i64>§reason: String§reason_message: Option<String>§requested_at: Option<i64>Trait Implementations§
source§impl Clone for IssuingAuthorizationRequest
impl Clone for IssuingAuthorizationRequest
source§fn clone(&self) -> IssuingAuthorizationRequest
fn clone(&self) -> IssuingAuthorizationRequest
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 Debug for IssuingAuthorizationRequest
impl Debug for IssuingAuthorizationRequest
source§impl Default for IssuingAuthorizationRequest
impl Default for IssuingAuthorizationRequest
source§fn default() -> IssuingAuthorizationRequest
fn default() -> IssuingAuthorizationRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IssuingAuthorizationRequest
impl<'de> Deserialize<'de> for IssuingAuthorizationRequest
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
Auto Trait Implementations§
impl RefUnwindSafe for IssuingAuthorizationRequest
impl Send for IssuingAuthorizationRequest
impl Sync for IssuingAuthorizationRequest
impl Unpin for IssuingAuthorizationRequest
impl UnwindSafe for IssuingAuthorizationRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more