import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Application, Application$Outbound } from "./application.js"; /** * Applications */ export type GetApplicationResponse = { /** * 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: Application; }; /** @internal */ export declare const GetApplicationResponse$inboundSchema: z.ZodType; /** @internal */ export type GetApplicationResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: Application$Outbound; }; /** @internal */ export declare const GetApplicationResponse$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 GetApplicationResponse$ { /** @deprecated use `GetApplicationResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApplicationResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApplicationResponse$Outbound` instead. */ type Outbound = GetApplicationResponse$Outbound; } export declare function getApplicationResponseToJSON(getApplicationResponse: GetApplicationResponse): string; export declare function getApplicationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapplicationresponse.d.ts.map