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

pub struct ShippingConditions {
    pub shipping_date: Option<DateTime>,
    pub shipping_end_date: Option<DateTime>,
    pub shipping_type: Option<ShippingType>,
}

Fields

shipping_date: Option<DateTime>

The instant of time when the purchased items have to be shipped. Value in format yyyy-MM-ddTHH:mm:ss.SSSXXX as described in RFC 3339/ISO 8601 (e.g. 2020-02-21T00:00:00.000+01:00).

shipping_end_date: Option<DateTime>

An end instant in order to specify a shipping period of time. Value in format yyyy-MM-ddTHH:mm:ss.SSSXXX as described in RFC 3339/ISO 8601 (e.g. 2020-02-21T00:00:00.000+01:00). Must not specify an instant before shippingDate.

shipping_type: Option<ShippingType>

The type of the shipping. Possible values are service (a service is supplied on shippingDate), serviceperiod (a service is supplied within the period [shippingDate,shippingEndDate] ), delivery (a product is delivered), deliveryperiod (a product is delivered within the period [shippingDate,shippingEndDate]) and none (no shipping date has to be provided)

Implementations

impl ShippingConditions[src]

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

Create a builder for building ShippingConditions. On the builder, call .shipping_date(...)(optional), .shipping_end_date(...)(optional), .shipping_type(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of ShippingConditions.

Trait Implementations

impl Clone for ShippingConditions[src]

impl Debug for ShippingConditions[src]

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

impl PartialEq<ShippingConditions> for ShippingConditions[src]

impl Serialize for ShippingConditions[src]

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