/* * 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 { BenefitLicenseKeysProperties, BenefitLicenseKeysProperties$inboundSchema, BenefitLicenseKeysProperties$Outbound, BenefitLicenseKeysProperties$outboundSchema, } from "./benefitlicensekeysproperties.js"; import { MetadataOutputType, MetadataOutputType$inboundSchema, MetadataOutputType$Outbound, MetadataOutputType$outboundSchema, } from "./metadataoutputtype.js"; export type BenefitLicenseKeys = { /** * The ID of the benefit. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; type: "license_keys"; /** * The description of the benefit. */ description: string; /** * Whether the benefit is selectable when creating a product. */ selectable: boolean; /** * Whether the benefit is deletable. */ deletable: boolean; /** * Whether the benefit is deleted. */ isDeleted: boolean; /** * The ID of the organization owning the benefit. */ organizationId: string; metadata: { [k: string]: MetadataOutputType }; properties: BenefitLicenseKeysProperties; }; /** @internal */ export const BenefitLicenseKeys$inboundSchema: z.ZodMiniType< BenefitLicenseKeys, unknown > = z.pipe( z.object({ id: z.string(), created_at: z.pipe( z.iso.datetime({ offset: true }), z.transform(v => new Date(v)), ), modified_at: z.nullable( z.pipe(z.iso.datetime({ offset: true }), z.transform(v => new Date(v))), ), type: z.literal("license_keys"), description: z.string(), selectable: z.boolean(), deletable: z.boolean(), is_deleted: z.boolean(), organization_id: z.string(), metadata: z.record(z.string(), MetadataOutputType$inboundSchema), properties: BenefitLicenseKeysProperties$inboundSchema, }), z.transform((v) => { return remap$(v, { "created_at": "createdAt", "modified_at": "modifiedAt", "is_deleted": "isDeleted", "organization_id": "organizationId", }); }), ); /** @internal */ export type BenefitLicenseKeys$Outbound = { id: string; created_at: string; modified_at: string | null; type: "license_keys"; description: string; selectable: boolean; deletable: boolean; is_deleted: boolean; organization_id: string; metadata: { [k: string]: MetadataOutputType$Outbound }; properties: BenefitLicenseKeysProperties$Outbound; }; /** @internal */ export const BenefitLicenseKeys$outboundSchema: z.ZodMiniType< BenefitLicenseKeys$Outbound, BenefitLicenseKeys > = z.pipe( z.object({ id: z.string(), createdAt: z.pipe(z.date(), z.transform(v => v.toISOString())), modifiedAt: z.nullable(z.pipe(z.date(), z.transform(v => v.toISOString()))), type: z.literal("license_keys"), description: z.string(), selectable: z.boolean(), deletable: z.boolean(), isDeleted: z.boolean(), organizationId: z.string(), metadata: z.record(z.string(), MetadataOutputType$outboundSchema), properties: BenefitLicenseKeysProperties$outboundSchema, }), z.transform((v) => { return remap$(v, { createdAt: "created_at", modifiedAt: "modified_at", isDeleted: "is_deleted", organizationId: "organization_id", }); }), ); export function benefitLicenseKeysToJSON( benefitLicenseKeys: BenefitLicenseKeys, ): string { return JSON.stringify( BenefitLicenseKeys$outboundSchema.parse(benefitLicenseKeys), ); } export function benefitLicenseKeysFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => BenefitLicenseKeys$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'BenefitLicenseKeys' from JSON`, ); }