Struct lexoffice::model::payment_conditions::PaymentCondition[][src]

pub struct PaymentCondition {
    pub id: ReadOnly<Uuid>,
    pub organization_default: Option<bool>,
    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

id: ReadOnly<Uuid>

The payment conditions’ identifier

organization_default: Option<bool>

True for one payment condition object that was selected by the user as her default, false for all others

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 payment condition.

Implementations

impl PaymentCondition[src]

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

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

Trait Implementations

impl Clone for PaymentCondition[src]

impl Debug for PaymentCondition[src]

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

impl HasId for PaymentCondition[src]

impl PartialEq<PaymentCondition> for PaymentCondition[src]

impl Serialize for PaymentCondition[src]

impl StructuralPartialEq for PaymentCondition[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.