import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UnifiedFile, UnifiedFile$Outbound } from "./unifiedfile.js"; /** * File */ export type GetFileResponse = { /** * 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: UnifiedFile; }; /** @internal */ export declare const GetFileResponse$inboundSchema: z.ZodType; /** @internal */ export type GetFileResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: UnifiedFile$Outbound; }; /** @internal */ export declare const GetFileResponse$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 GetFileResponse$ { /** @deprecated use `GetFileResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetFileResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetFileResponse$Outbound` instead. */ type Outbound = GetFileResponse$Outbound; } export declare function getFileResponseToJSON(getFileResponse: GetFileResponse): string; export declare function getFileResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getfileresponse.d.ts.map