import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UploadSession, UploadSession$Outbound } from "./uploadsession.js"; /** * UploadSessions */ export type GetUploadSessionResponse = { /** * 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: UploadSession; }; /** @internal */ export declare const GetUploadSessionResponse$inboundSchema: z.ZodType; /** @internal */ export type GetUploadSessionResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: UploadSession$Outbound; }; /** @internal */ export declare const GetUploadSessionResponse$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 GetUploadSessionResponse$ { /** @deprecated use `GetUploadSessionResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetUploadSessionResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetUploadSessionResponse$Outbound` instead. */ type Outbound = GetUploadSessionResponse$Outbound; } export declare function getUploadSessionResponseToJSON(getUploadSessionResponse: GetUploadSessionResponse): string; export declare function getUploadSessionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getuploadsessionresponse.d.ts.map