pub struct InvoiceSettingSubscriptionSchedulePhaseSetting {
pub account_tax_ids: Option<Vec<Expandable<TaxId>>>,
pub days_until_due: Option<u32>,
pub issuer: Option<ConnectAccountReference>,
}
Fields§
§account_tax_ids: Option<Vec<Expandable<TaxId>>>
The account tax IDs associated with this phase of the subscription schedule. Will be set on invoices generated by this phase of the subscription schedule.
days_until_due: Option<u32>
Number of days within which a customer must pay invoices generated by this subscription schedule.
This value will be null
for subscription schedules where billing=charge_automatically
.
issuer: Option<ConnectAccountReference>
The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
Trait Implementations§
Source§impl Clone for InvoiceSettingSubscriptionSchedulePhaseSetting
impl Clone for InvoiceSettingSubscriptionSchedulePhaseSetting
Source§fn clone(&self) -> InvoiceSettingSubscriptionSchedulePhaseSetting
fn clone(&self) -> InvoiceSettingSubscriptionSchedulePhaseSetting
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 FromValueOpt for InvoiceSettingSubscriptionSchedulePhaseSetting
impl FromValueOpt for InvoiceSettingSubscriptionSchedulePhaseSetting
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for InvoiceSettingSubscriptionSchedulePhaseSetting
impl RefUnwindSafe for InvoiceSettingSubscriptionSchedulePhaseSetting
impl Send for InvoiceSettingSubscriptionSchedulePhaseSetting
impl Sync for InvoiceSettingSubscriptionSchedulePhaseSetting
impl Unpin for InvoiceSettingSubscriptionSchedulePhaseSetting
impl UnwindSafe for InvoiceSettingSubscriptionSchedulePhaseSetting
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