import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type DriveInput = { /** * The name of the drive */ name: string; /** * A description of the object. */ description?: string | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const DriveInput$inboundSchema: z.ZodType; /** @internal */ export type DriveInput$Outbound = { name: string; description?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const DriveInput$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 DriveInput$ { /** @deprecated use `DriveInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DriveInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DriveInput$Outbound` instead. */ type Outbound = DriveInput$Outbound; } export declare function driveInputToJSON(driveInput: DriveInput): string; export declare function driveInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=driveinput.d.ts.map