pub struct PaymentLink {
pub id: Option<String>,
pub version: i32,
pub checkout_options: Option<CheckoutOptions>,
pub created_at: Option<String>,
pub description: Option<String>,
pub order_id: Option<String>,
pub payment_note: Option<String>,
pub pre_populated_data: Option<PrePopulatedData>,
pub updated_at: Option<String>,
pub url: Option<String>,
}Fields§
§id: Option<String>§version: i32§checkout_options: Option<CheckoutOptions>§created_at: Option<String>§description: Option<String>§order_id: Option<String>§payment_note: Option<String>§pre_populated_data: Option<PrePopulatedData>§updated_at: Option<String>§url: Option<String>Trait Implementations§
Source§impl AddField<PaymentLink> for UpdatePaymentLinkWrapper
impl AddField<PaymentLink> for UpdatePaymentLinkWrapper
fn add_field(&mut self, field: PaymentLink)
Source§impl Clone for PaymentLink
impl Clone for PaymentLink
Source§fn clone(&self) -> PaymentLink
fn clone(&self) -> PaymentLink
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 Debug for PaymentLink
impl Debug for PaymentLink
Source§impl Default for PaymentLink
impl Default for PaymentLink
Source§fn default() -> PaymentLink
fn default() -> PaymentLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaymentLink
impl<'de> Deserialize<'de> for PaymentLink
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 Serialize for PaymentLink
impl Serialize for PaymentLink
Source§impl Validate for PaymentLink
impl Validate for PaymentLink
Auto Trait Implementations§
impl Freeze for PaymentLink
impl RefUnwindSafe for PaymentLink
impl Send for PaymentLink
impl Sync for PaymentLink
impl Unpin for PaymentLink
impl UnwindSafe for PaymentLink
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