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.4/services/privatenetworks.ts?docs=full";

Information about an order.

interface Order {
acknowledgmentStatus?: AcknowledgmentStatus | null;
createdAt?: Date | number | null;
networkArn?: string | null;
networkSiteArn?: string | null;
orderArn?: string | null;
shippingAddress?: Address | null;
trackingInformation?: TrackingInformation[] | null;
}

§Properties

§
acknowledgmentStatus?: AcknowledgmentStatus | null
[src]

The acknowledgement status of the order.

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

The creation time of the order.

§
networkArn?: string | null
[src]

The Amazon Resource Name (ARN) of the network associated with this order.

§
networkSiteArn?: string | null
[src]

The Amazon Resource Name (ARN) of the network site associated with this order.

§
orderArn?: string | null
[src]

The Amazon Resource Name (ARN) of the order.

§
shippingAddress?: Address | null
[src]

The shipping address of the order.

§
trackingInformation?: TrackingInformation[] | null
[src]

The tracking information of the order.