Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Order

import type { Order } from "https://aws-api.deno.dev/v0.3/services/outposts.ts?docs=full";

Information about an order.

interface Order {
LineItems?: LineItem[] | null;
OrderFulfilledDate?: Date | number | null;
OrderId?: string | null;
OrderSubmissionDate?: Date | number | null;
OutpostId?: string | null;
PaymentOption?: PaymentOption | null;
Status?: OrderStatus | null;
}

§Properties

§
LineItems?: LineItem[] | null
[src]

The line items for the order

§
OrderFulfilledDate?: Date | number | null
[src]

The fulfillment date of the order.

§
OrderId?: string | null
[src]

The ID of the order.

§
OrderSubmissionDate?: Date | number | null
[src]

The submission date for the order.

§
OutpostId?: string | null
[src]

The ID of the Outpost in the order.

§
PaymentOption?: PaymentOption | null
[src]

The payment option for the order.

§
Status?: OrderStatus | null
[src]

The status of the order.

  • PREPARING - Order is received and being prepared.
  • IN_PROGRESS - Order is either being built, shipped, or installed. To get more details, see the LineItem status.
  • COMPLETED - Order is complete.
  • CANCELLED - Order is cancelled.
  • ERROR - Customer should contact support.

Note: The following status are deprecated: RECEIVED, PENDING, PROCESSING, INSTALLING, and FULFILLED.