import type * as ElevenLabs from "../index"; export interface OrderResponse { /** The ID of the order. */ orderId: ElevenLabs.OrderId; /** The display name of the order. */ name: string; /** The current state of the order. */ state: ElevenLabs.OrderState; /** The list of items in this order with their quotes. */ items: ElevenLabs.OrderItemInfo[]; /** The total price for all items in USD. Excluded from response until quotes are available. */ totalAmountUsd?: number; /** Whether this is a sandbox order that auto-progresses without producer intervention. */ sandbox?: boolean; /** The timestamp when the order was created. */ createdAt: Date; /** The timestamp when the order was submitted, if applicable. */ submittedAt?: Date; /** The timestamp when payment was received, if applicable. */ paidAt?: Date; /** The timestamp when the order was accepted for production, if applicable. */ acceptedAt?: Date; /** The timestamp when the order was completed, if applicable. */ completedAt?: Date; }