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

OrderSummary

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

A summary of line items in your order.

interface OrderSummary {
LineItemCountsByStatus?: [key in LineItemStatus]: number | null | undefined | null;
OrderFulfilledDate?: Date | number | null;
OrderId?: string | null;
OrderSubmissionDate?: Date | number | null;
OrderType?: OrderType | null;
OutpostId?: string | null;
Status?: OrderStatus | null;
}

§Properties

§
LineItemCountsByStatus?: [key in LineItemStatus]: number | null | undefined | null
[src]

The status of all line items in the order.

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

Fulfilment date for the order.

§
OrderId?: string | null
[src]

The ID of the order.

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

Submission date for the order.

§
OrderType?: OrderType | null
[src]

The type of order.

§
OutpostId?: string | null
[src]

The ID of the Outpost.

§
Status?: OrderStatus | null
[src]

The status of the order.

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

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