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