/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; 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 { BenefitLicenseKeyActivationProperties, BenefitLicenseKeyActivationProperties$inboundSchema, BenefitLicenseKeyActivationProperties$Outbound, BenefitLicenseKeyActivationProperties$outboundSchema, } from "./benefitlicensekeyactivationproperties.js"; import { BenefitLicenseKeyExpirationProperties, BenefitLicenseKeyExpirationProperties$inboundSchema, BenefitLicenseKeyExpirationProperties$Outbound, BenefitLicenseKeyExpirationProperties$outboundSchema, } from "./benefitlicensekeyexpirationproperties.js"; export type BenefitLicenseKeysProperties = { prefix: string | null; expires: BenefitLicenseKeyExpirationProperties | null; activations: BenefitLicenseKeyActivationProperties | null; limitUsage: number | null; }; /** @internal */ export const BenefitLicenseKeysProperties$inboundSchema: z.ZodMiniType< BenefitLicenseKeysProperties, unknown > = z.pipe( z.object({ prefix: z.nullable(z.string()), expires: z.nullable(BenefitLicenseKeyExpirationProperties$inboundSchema), activations: z.nullable( BenefitLicenseKeyActivationProperties$inboundSchema, ), limit_usage: z.nullable(z.int()), }), z.transform((v) => { return remap$(v, { "limit_usage": "limitUsage", }); }), ); /** @internal */ export type BenefitLicenseKeysProperties$Outbound = { prefix: string | null; expires: BenefitLicenseKeyExpirationProperties$Outbound | null; activations: BenefitLicenseKeyActivationProperties$Outbound | null; limit_usage: number | null; }; /** @internal */ export const BenefitLicenseKeysProperties$outboundSchema: z.ZodMiniType< BenefitLicenseKeysProperties$Outbound, BenefitLicenseKeysProperties > = z.pipe( z.object({ prefix: z.nullable(z.string()), expires: z.nullable(BenefitLicenseKeyExpirationProperties$outboundSchema), activations: z.nullable( BenefitLicenseKeyActivationProperties$outboundSchema, ), limitUsage: z.nullable(z.int()), }), z.transform((v) => { return remap$(v, { limitUsage: "limit_usage", }); }), ); export function benefitLicenseKeysPropertiesToJSON( benefitLicenseKeysProperties: BenefitLicenseKeysProperties, ): string { return JSON.stringify( BenefitLicenseKeysProperties$outboundSchema.parse( benefitLicenseKeysProperties, ), ); } export function benefitLicenseKeysPropertiesFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => BenefitLicenseKeysProperties$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'BenefitLicenseKeysProperties' from JSON`, ); }