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