pub struct PaymentProcessorAuthorizationCodeResponseBody {
pub payment_processor_authorization_code: Option<PaymentProcessorAuthorizationCodeResponse>,
}Expand description
PaymentProcessorAuthorizationCodeResponseBody
JSON schema
{
"type": "object",
"properties": {
"payment_processor_authorization_code": {
"$ref":
"#/components/schemas/PaymentProcessorAuthorizationCodeResponse"
}
}
}Fields§
Trait Implementations§
Source§impl Clone for PaymentProcessorAuthorizationCodeResponseBody
impl Clone for PaymentProcessorAuthorizationCodeResponseBody
Source§fn clone(&self) -> PaymentProcessorAuthorizationCodeResponseBody
fn clone(&self) -> PaymentProcessorAuthorizationCodeResponseBody
Returns a duplicate 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<'de> Deserialize<'de> for PaymentProcessorAuthorizationCodeResponseBody
impl<'de> Deserialize<'de> for PaymentProcessorAuthorizationCodeResponseBody
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
Source§impl From<&PaymentProcessorAuthorizationCodeResponseBody> for PaymentProcessorAuthorizationCodeResponseBody
impl From<&PaymentProcessorAuthorizationCodeResponseBody> for PaymentProcessorAuthorizationCodeResponseBody
Source§fn from(value: &PaymentProcessorAuthorizationCodeResponseBody) -> Self
fn from(value: &PaymentProcessorAuthorizationCodeResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PaymentProcessorAuthorizationCodeResponseBody
impl RefUnwindSafe for PaymentProcessorAuthorizationCodeResponseBody
impl Send for PaymentProcessorAuthorizationCodeResponseBody
impl Sync for PaymentProcessorAuthorizationCodeResponseBody
impl Unpin for PaymentProcessorAuthorizationCodeResponseBody
impl UnwindSafe for PaymentProcessorAuthorizationCodeResponseBody
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