pub struct PaymentProcessorAuthorizationCodeResponse {
pub authorization_code: Option<String>,
}Expand description
PaymentProcessorAuthorizationCodeResponse
JSON schema
{
"type": "object",
"properties": {
"authorization_code": {
"examples": [
"9nN-9D8_4Z3WYazx7-zXfmqsD3jwgL_2W927Sb3otI"
],
"type": [
"string",
"null"
]
}
}
}Fields§
Trait Implementations§
Source§impl Clone for PaymentProcessorAuthorizationCodeResponse
impl Clone for PaymentProcessorAuthorizationCodeResponse
Source§fn clone(&self) -> PaymentProcessorAuthorizationCodeResponse
fn clone(&self) -> PaymentProcessorAuthorizationCodeResponse
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 PaymentProcessorAuthorizationCodeResponse
impl<'de> Deserialize<'de> for PaymentProcessorAuthorizationCodeResponse
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<&PaymentProcessorAuthorizationCodeResponse> for PaymentProcessorAuthorizationCodeResponse
impl From<&PaymentProcessorAuthorizationCodeResponse> for PaymentProcessorAuthorizationCodeResponse
Source§fn from(value: &PaymentProcessorAuthorizationCodeResponse) -> Self
fn from(value: &PaymentProcessorAuthorizationCodeResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PaymentProcessorAuthorizationCodeResponse
impl RefUnwindSafe for PaymentProcessorAuthorizationCodeResponse
impl Send for PaymentProcessorAuthorizationCodeResponse
impl Sync for PaymentProcessorAuthorizationCodeResponse
impl Unpin for PaymentProcessorAuthorizationCodeResponse
impl UnwindSafe for PaymentProcessorAuthorizationCodeResponse
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