/** * This file was auto-generated by Fern from our API Definition. */ /** * Current status of the order. */ export type OrderStatus = "PENDING" | "SUCCESS" | "FAILED"; export declare const OrderStatus: { readonly Pending: "PENDING"; readonly Success: "SUCCESS"; readonly Failed: "FAILED"; };