/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type GetEntitlementRequest = { /** * Entitlement ID */ id: string; }; /** @internal */ export type GetEntitlementRequest$Outbound = { id: string; }; /** @internal */ export const GetEntitlementRequest$outboundSchema: z.ZodMiniType< GetEntitlementRequest$Outbound, GetEntitlementRequest > = z.object({ id: z.string(), }); export function getEntitlementRequestToJSON( getEntitlementRequest: GetEntitlementRequest, ): string { return JSON.stringify( GetEntitlementRequest$outboundSchema.parse(getEntitlementRequest), ); }