/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$inboundSchema, PassThroughBody$Outbound, PassThroughBody$outboundSchema, } 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 const DriveInput$inboundSchema: z.ZodType< DriveInput, z.ZodTypeDef, unknown > = z.object({ name: z.string(), description: z.nullable(z.string()).optional(), pass_through: z.array(PassThroughBody$inboundSchema).optional(), }).transform((v) => { return remap$(v, { "pass_through": "passThrough", }); }); /** @internal */ export type DriveInput$Outbound = { name: string; description?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export const DriveInput$outboundSchema: z.ZodType< DriveInput$Outbound, z.ZodTypeDef, DriveInput > = z.object({ name: z.string(), description: z.nullable(z.string()).optional(), passThrough: z.array(PassThroughBody$outboundSchema).optional(), }).transform((v) => { return remap$(v, { passThrough: "pass_through", }); }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace DriveInput$ { /** @deprecated use `DriveInput$inboundSchema` instead. */ export const inboundSchema = DriveInput$inboundSchema; /** @deprecated use `DriveInput$outboundSchema` instead. */ export const outboundSchema = DriveInput$outboundSchema; /** @deprecated use `DriveInput$Outbound` instead. */ export type Outbound = DriveInput$Outbound; } export function driveInputToJSON(driveInput: DriveInput): string { return JSON.stringify(DriveInput$outboundSchema.parse(driveInput)); } export function driveInputFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => DriveInput$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'DriveInput' from JSON`, ); }