pub struct CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer {
pub account: Option<String>,
pub type_: CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuerType,
}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_: CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuerTypeType of the account referenced in the request.
Implementations§
Source§impl CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
pub fn new( type_: impl Into<CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuerType>, ) -> Self
Trait Implementations§
Source§impl Clone for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl Clone for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
Source§fn clone(&self) -> CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
fn clone(&self) -> CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
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 CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl PartialEq for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
Source§fn eq(
&self,
other: &CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer,
) -> bool
fn eq( &self, other: &CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl StructuralPartialEq for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
Auto Trait Implementations§
impl Freeze for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl RefUnwindSafe for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl Send for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl Sync for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl Unpin for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl UnsafeUnpin for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
impl UnwindSafe for CreatePaymentLinkSubscriptionDataInvoiceSettingsIssuer
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