/* * 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 { smartUnion } from "../../types/smartUnion.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$inboundSchema, Address$Outbound, Address$outboundSchema, } from "./address.js"; import { MetadataOutputType, MetadataOutputType$inboundSchema, MetadataOutputType$Outbound, MetadataOutputType$outboundSchema, } from "./metadataoutputtype.js"; import { TaxIDFormat, TaxIDFormat$inboundSchema, TaxIDFormat$outboundSchema, } from "./taxidformat.js"; export type CustomerIndividualTaxId = string | TaxIDFormat; /** * A customer in an organization. */ export type CustomerIndividual = { /** * The ID of the customer. */ id: string; /** * Creation timestamp of the object. */ createdAt: Date; /** * Last modification timestamp of the object. */ modifiedAt: Date | null; metadata: { [k: string]: MetadataOutputType }; /** * The ID of the customer in your system. This must be unique within the organization. Once set, it can't be updated. */ externalId?: string | null | undefined; /** * The email address of the customer. This must be unique within the organization. */ email: string; /** * Whether the customer email address is verified. The address is automatically verified when the customer accesses the customer portal using their email address. */ emailVerified: boolean; /** * The type of customer. */ type: "individual"; /** * The name of the customer. */ name: string | null; billingAddress: Address | null; taxId: Array | null; locale?: string | null | undefined; /** * The ID of the organization owning the customer. */ organizationId: string; /** * The ID of the customer's default payment method, if any. Use the payment methods endpoint to retrieve its details. */ defaultPaymentMethodId?: string | null | undefined; /** * Timestamp for when the customer was soft deleted. */ deletedAt: Date | null; avatarUrl: string; }; /** @internal */ export const CustomerIndividualTaxId$inboundSchema: z.ZodMiniType< CustomerIndividualTaxId, unknown > = smartUnion([z.string(), TaxIDFormat$inboundSchema]); /** @internal */ export type CustomerIndividualTaxId$Outbound = string | string; /** @internal */ export const CustomerIndividualTaxId$outboundSchema: z.ZodMiniType< CustomerIndividualTaxId$Outbound, CustomerIndividualTaxId > = smartUnion([z.string(), TaxIDFormat$outboundSchema]); export function customerIndividualTaxIdToJSON( customerIndividualTaxId: CustomerIndividualTaxId, ): string { return JSON.stringify( CustomerIndividualTaxId$outboundSchema.parse(customerIndividualTaxId), ); } export function customerIndividualTaxIdFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => CustomerIndividualTaxId$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CustomerIndividualTaxId' from JSON`, ); } /** @internal */ export const CustomerIndividual$inboundSchema: z.ZodMiniType< CustomerIndividual, 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))), ), metadata: z.record(z.string(), MetadataOutputType$inboundSchema), external_id: z.optional(z.nullable(z.string())), email: z.string(), email_verified: z.boolean(), type: z.literal("individual"), name: z.nullable(z.string()), billing_address: z.nullable(Address$inboundSchema), tax_id: z.nullable( z.array(z.nullable(smartUnion([z.string(), TaxIDFormat$inboundSchema]))), ), locale: z.optional(z.nullable(z.string())), organization_id: z.string(), default_payment_method_id: z.optional(z.nullable(z.string())), deleted_at: z.nullable( z.pipe(z.iso.datetime({ offset: true }), z.transform(v => new Date(v))), ), avatar_url: z.string(), }), z.transform((v) => { return remap$(v, { "created_at": "createdAt", "modified_at": "modifiedAt", "external_id": "externalId", "email_verified": "emailVerified", "billing_address": "billingAddress", "tax_id": "taxId", "organization_id": "organizationId", "default_payment_method_id": "defaultPaymentMethodId", "deleted_at": "deletedAt", "avatar_url": "avatarUrl", }); }), ); /** @internal */ export type CustomerIndividual$Outbound = { id: string; created_at: string; modified_at: string | null; metadata: { [k: string]: MetadataOutputType$Outbound }; external_id?: string | null | undefined; email: string; email_verified: boolean; type: "individual"; name: string | null; billing_address: Address$Outbound | null; tax_id: Array | null; locale?: string | null | undefined; organization_id: string; default_payment_method_id?: string | null | undefined; deleted_at: string | null; avatar_url: string; }; /** @internal */ export const CustomerIndividual$outboundSchema: z.ZodMiniType< CustomerIndividual$Outbound, CustomerIndividual > = 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()))), metadata: z.record(z.string(), MetadataOutputType$outboundSchema), externalId: z.optional(z.nullable(z.string())), email: z.string(), emailVerified: z.boolean(), type: z.literal("individual"), name: z.nullable(z.string()), billingAddress: z.nullable(Address$outboundSchema), taxId: z.nullable( z.array(z.nullable(smartUnion([z.string(), TaxIDFormat$outboundSchema]))), ), locale: z.optional(z.nullable(z.string())), organizationId: z.string(), defaultPaymentMethodId: z.optional(z.nullable(z.string())), deletedAt: z.nullable(z.pipe(z.date(), z.transform(v => v.toISOString()))), avatarUrl: z.string(), }), z.transform((v) => { return remap$(v, { createdAt: "created_at", modifiedAt: "modified_at", externalId: "external_id", emailVerified: "email_verified", billingAddress: "billing_address", taxId: "tax_id", organizationId: "organization_id", defaultPaymentMethodId: "default_payment_method_id", deletedAt: "deleted_at", avatarUrl: "avatar_url", }); }), ); export function customerIndividualToJSON( customerIndividual: CustomerIndividual, ): string { return JSON.stringify( CustomerIndividual$outboundSchema.parse(customerIndividual), ); } export function customerIndividualFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => CustomerIndividual$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CustomerIndividual' from JSON`, ); }