/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";
import { remap as remap$ } from "../../lib/primitives.js";

export type LibrariesDocumentsGetSignedUrlV1Request = {
  libraryId: string;
  documentId: string;
};

/** @internal */
export type LibrariesDocumentsGetSignedUrlV1Request$Outbound = {
  library_id: string;
  document_id: string;
};

/** @internal */
export const LibrariesDocumentsGetSignedUrlV1Request$outboundSchema: z.ZodType<
  LibrariesDocumentsGetSignedUrlV1Request$Outbound,
  z.ZodTypeDef,
  LibrariesDocumentsGetSignedUrlV1Request
> = z.object({
  libraryId: z.string(),
  documentId: z.string(),
}).transform((v) => {
  return remap$(v, {
    libraryId: "library_id",
    documentId: "document_id",
  });
});

export function librariesDocumentsGetSignedUrlV1RequestToJSON(
  librariesDocumentsGetSignedUrlV1Request:
    LibrariesDocumentsGetSignedUrlV1Request,
): string {
  return JSON.stringify(
    LibrariesDocumentsGetSignedUrlV1Request$outboundSchema.parse(
      librariesDocumentsGetSignedUrlV1Request,
    ),
  );
}
