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