pub struct CreatePaymentLinkResponse {
pub errors: Option<Vec<Error>>,
pub payment_link: Option<Box<PaymentLink>>,
pub related_resources: Option<Box<PaymentLinkRelatedResources>>,
}Fields§
§errors: Option<Vec<Error>>Any errors that occurred during the request.
payment_link: Option<Box<PaymentLink>>Implementations§
Source§impl CreatePaymentLinkResponse
impl CreatePaymentLinkResponse
pub fn new() -> CreatePaymentLinkResponse
Trait Implementations§
Source§impl Clone for CreatePaymentLinkResponse
impl Clone for CreatePaymentLinkResponse
Source§fn clone(&self) -> CreatePaymentLinkResponse
fn clone(&self) -> CreatePaymentLinkResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreatePaymentLinkResponse
impl Debug for CreatePaymentLinkResponse
Source§impl Default for CreatePaymentLinkResponse
impl Default for CreatePaymentLinkResponse
Source§fn default() -> CreatePaymentLinkResponse
fn default() -> CreatePaymentLinkResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreatePaymentLinkResponse
impl<'de> Deserialize<'de> for CreatePaymentLinkResponse
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
impl StructuralPartialEq for CreatePaymentLinkResponse
Auto Trait Implementations§
impl Freeze for CreatePaymentLinkResponse
impl RefUnwindSafe for CreatePaymentLinkResponse
impl Send for CreatePaymentLinkResponse
impl Sync for CreatePaymentLinkResponse
impl Unpin for CreatePaymentLinkResponse
impl UnsafeUnpin for CreatePaymentLinkResponse
impl UnwindSafe for CreatePaymentLinkResponse
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