/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: fe72ed1c9700 */ import * as z from "zod/v3"; export type GetdocvisibilityRequest = { /** * List of doc-ids which will have their hide status fetched. */ docIds?: Array | undefined; }; /** @internal */ export type GetdocvisibilityRequest$Outbound = { docIds?: Array | undefined; }; /** @internal */ export const GetdocvisibilityRequest$outboundSchema: z.ZodType< GetdocvisibilityRequest$Outbound, z.ZodTypeDef, GetdocvisibilityRequest > = z.object({ docIds: z.array(z.string()).optional(), }); export function getdocvisibilityRequestToJSON( getdocvisibilityRequest: GetdocvisibilityRequest, ): string { return JSON.stringify( GetdocvisibilityRequest$outboundSchema.parse(getdocvisibilityRequest), ); }