[][src]Struct shippo::Parcel

pub struct Parcel {
    pub object_state: String,
    pub object_created: Option<DateTime<Utc>>,
    pub object_updated: Option<DateTime<Utc>>,
    pub object_id: String,
    pub object_owner: String,
    pub length: String,
    pub width: String,
    pub height: String,
    pub distance_unit: String,
    pub weight: String,
    pub mass_unit: String,
    pub metadata: String,
    pub test: bool,
}

The data type for a parcel. FROM: https://goshippo.com/docs/reference#parcels

Fields

object_state: String

A Parcel will only be valid when all required values have been sent and validated successfully. "VALID"

object_created: Option<DateTime<Utc>>

Date and time of Parcel creation.

object_updated: Option<DateTime<Utc>>

Date and time of last Parcel update. Since you cannot update Parcels after they were created, this time stamp reflects the time when the Parcel was changed by Shippo's systems for the last time, e.g., during sorting the dimensions given.

object_id: String

Unique identifier of the given Parcel object. This ID is required to create a Shipment object.

object_owner: String

Username of the user who created the Parcel object.

length: String

Length of the Parcel. Up to six digits in front and four digits after the decimal separator are accepted.

width: String

Width of the Parcel. Up to six digits in front and four digits after the decimal separator are accepted.

height: String

Height of the parcel. Up to six digits in front and four digits after the decimal separator are accepted.

distance_unit: String

The unit used for length, width and height. "cm" | "in" | "ft" | "mm" | "m" | "yd"

weight: String

Weight of the parcel. Up to six digits in front and four digits after the decimal separator are accepted.

mass_unit: String

The unit used for weight. "g" | "oz" | "lb" | "kg"

metadata: String

A string of up to 100 characters that can be filled with any additional information you want to attach to the object.

test: bool

Indicates whether the object has been created in test mode.

Trait Implementations

impl Clone for Parcel[src]

impl Debug for Parcel[src]

impl Default for Parcel[src]

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

impl Serialize for Parcel[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> DynClone for T where
    T: Clone
[src]

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

impl<T> Instrument 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.