Struct lexoffice::model::order_confirmations::PaymentConditions[][src]

pub struct PaymentConditions {
    pub payment_term_label: Option<String>,
    pub payment_term_label_template: ReadOnly<String>,
    pub payment_term_duration: Option<i64>,
    pub payment_discount_conditions: Option<Vec<PaymentDiscountConditions>>,
}

The payment conditions are optional and the organization’s or contact-specific defaults will be used if ommitted.

Fields

payment_term_label: Option<String>

A textual note regarding the payment conditions.

payment_term_label_template: ReadOnly<String>

A textual note regarding the payment conditions. This label template may contain variables such as the discount range. These variables are enclosed in curly braces, e.g., {discountRange}.’
Read-only.

payment_term_duration: Option<i64>

The time left (in days) until the payment must be conducted.

payment_discount_conditions: Option<Vec<PaymentDiscountConditions>>

The payment discount conditions for the order confirmation.

Implementations

impl PaymentConditions[src]

pub fn builder() -> PaymentConditionsBuilder<((), (), ())>[src]

Create a builder for building PaymentConditions. On the builder, call .payment_term_label(...)(optional), .payment_term_duration(...)(optional), .payment_discount_conditions(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of PaymentConditions.

Trait Implementations

impl Clone for PaymentConditions[src]

impl Debug for PaymentConditions[src]

impl<'de> Deserialize<'de> for PaymentConditions[src]

impl PartialEq<PaymentConditions> for PaymentConditions[src]

impl Serialize for PaymentConditions[src]

impl StructuralPartialEq for PaymentConditions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.