pub struct PaymentRequiredActionApiSchema {
pub name: String,
pub description: String,
pub client_token: Option<String>,
}
Fields§
§name: String
Action name
description: String
Human description of the required action to perform.
client_token: Option<String>
If the action requires customer data, instantiate the checkout SDK with this client session token to resume the session.
Trait Implementations§
Source§impl Default for PaymentRequiredActionApiSchema
impl Default for PaymentRequiredActionApiSchema
Source§fn default() -> PaymentRequiredActionApiSchema
fn default() -> PaymentRequiredActionApiSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaymentRequiredActionApiSchema
impl<'de> Deserialize<'de> for PaymentRequiredActionApiSchema
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 Freeze for PaymentRequiredActionApiSchema
impl RefUnwindSafe for PaymentRequiredActionApiSchema
impl Send for PaymentRequiredActionApiSchema
impl Sync for PaymentRequiredActionApiSchema
impl Unpin for PaymentRequiredActionApiSchema
impl UnwindSafe for PaymentRequiredActionApiSchema
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