Struct paypal_rs::orders::Order[][src]

pub struct Order {
    pub create_time: Option<DateTime<Utc>>,
    pub update_time: Option<DateTime<Utc>>,
    pub id: String,
    pub payment_source: Option<PaymentSourceResponse>,
    pub intent: Option<Intent>,
    pub payer: Option<Payer>,
    pub purchase_units: Option<Vec<PurchaseUnit>>,
    pub status: OrderStatus,
    pub links: Vec<LinkDescription>,
}
Expand description

An order represents a payment between two or more parties.

Fields

create_time: Option<DateTime<Utc>>

The date and time when the transaction occurred.

update_time: Option<DateTime<Utc>>

The date and time when the transaction was last updated.

id: String

The ID of the order.

payment_source: Option<PaymentSourceResponse>

The payment source used to fund the payment.

intent: Option<Intent>

The intent to either capture payment immediately or authorize a payment for an order after order creation.

payer: Option<Payer>

The customer who approves and pays for the order. The customer is also known as the payer.

purchase_units: Option<Vec<PurchaseUnit>>

An array of purchase units. Each purchase unit establishes a contract between a customer and merchant. Each purchase unit represents either a full or partial order that the customer intends to purchase from the merchant.

status: OrderStatus

The order status.

links: Vec<LinkDescription>

An array of request-related HATEOAS links. To complete payer approval, use the approve link to redirect the payer.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.