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