pub struct CreatePaymentLinkInvoiceCreationInvoiceDataIssuer {
pub account: Option<String>,
pub type_: CreatePaymentLinkInvoiceCreationInvoiceDataIssuerType,
}Expand description
The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
Fields§
§account: Option<String>The connected account being referenced when type is account.
type_: CreatePaymentLinkInvoiceCreationInvoiceDataIssuerTypeType of the account referenced in the request.
Implementations§
Source§impl CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
pub fn new( type_: impl Into<CreatePaymentLinkInvoiceCreationInvoiceDataIssuerType>, ) -> Self
Trait Implementations§
Source§impl Clone for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl Clone for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
Source§fn clone(&self) -> CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
fn clone(&self) -> CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
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 PartialEq for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl PartialEq for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
Source§fn eq(&self, other: &CreatePaymentLinkInvoiceCreationInvoiceDataIssuer) -> bool
fn eq(&self, other: &CreatePaymentLinkInvoiceCreationInvoiceDataIssuer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl StructuralPartialEq for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
Auto Trait Implementations§
impl Freeze for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl RefUnwindSafe for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl Send for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl Sync for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl Unpin for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl UnsafeUnpin for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
impl UnwindSafe for CreatePaymentLinkInvoiceCreationInvoiceDataIssuer
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