import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EcommerceOrderStatus } from "./ecommerceorderstatus.js"; /** * The order this entity is linked to. */ export type LinkedEcommerceOrder = { /** * A unique identifier for an object. */ id?: string | undefined; /** * The total amount of the order. */ total?: string | null | undefined; /** * Current status of the order. */ status?: EcommerceOrderStatus | null | undefined; }; /** @internal */ export declare const LinkedEcommerceOrder$inboundSchema: z.ZodType; /** @internal */ export type LinkedEcommerceOrder$Outbound = { id?: string | undefined; total?: string | null | undefined; status?: string | null | undefined; }; /** @internal */ export declare const LinkedEcommerceOrder$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LinkedEcommerceOrder$ { /** @deprecated use `LinkedEcommerceOrder$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedEcommerceOrder$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedEcommerceOrder$Outbound` instead. */ type Outbound = LinkedEcommerceOrder$Outbound; } export declare function linkedEcommerceOrderToJSON(linkedEcommerceOrder: LinkedEcommerceOrder): string; export declare function linkedEcommerceOrderFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedecommerceorder.d.ts.map