pub struct UpdateSubscriptionInvoiceSettingsIssuer {
pub account: Option<String>,
pub type_: UpdateSubscriptionInvoiceSettingsIssuerType,
}
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_: UpdateSubscriptionInvoiceSettingsIssuerType
Type of the account referenced in the request.
Implementations§
Source§impl UpdateSubscriptionInvoiceSettingsIssuer
impl UpdateSubscriptionInvoiceSettingsIssuer
pub fn new( type_: impl Into<UpdateSubscriptionInvoiceSettingsIssuerType>, ) -> Self
Trait Implementations§
Source§impl Clone for UpdateSubscriptionInvoiceSettingsIssuer
impl Clone for UpdateSubscriptionInvoiceSettingsIssuer
Source§fn clone(&self) -> UpdateSubscriptionInvoiceSettingsIssuer
fn clone(&self) -> UpdateSubscriptionInvoiceSettingsIssuer
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 moreAuto Trait Implementations§
impl Freeze for UpdateSubscriptionInvoiceSettingsIssuer
impl RefUnwindSafe for UpdateSubscriptionInvoiceSettingsIssuer
impl Send for UpdateSubscriptionInvoiceSettingsIssuer
impl Sync for UpdateSubscriptionInvoiceSettingsIssuer
impl Unpin for UpdateSubscriptionInvoiceSettingsIssuer
impl UnwindSafe for UpdateSubscriptionInvoiceSettingsIssuer
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