import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PurchaseOrder, PurchaseOrder$Outbound } from "./purchaseorder.js"; /** * PurchaseOrders */ export type GetPurchaseOrderResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: string; data: PurchaseOrder; }; /** @internal */ export declare const GetPurchaseOrderResponse$inboundSchema: z.ZodType; /** @internal */ export type GetPurchaseOrderResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: PurchaseOrder$Outbound; }; /** @internal */ export declare const GetPurchaseOrderResponse$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 GetPurchaseOrderResponse$ { /** @deprecated use `GetPurchaseOrderResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetPurchaseOrderResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetPurchaseOrderResponse$Outbound` instead. */ type Outbound = GetPurchaseOrderResponse$Outbound; } export declare function getPurchaseOrderResponseToJSON(getPurchaseOrderResponse: GetPurchaseOrderResponse): string; export declare function getPurchaseOrderResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getpurchaseorderresponse.d.ts.map