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