import * as z from "zod/v4-mini"; import { AddressInput, AddressInput$Outbound } from "./addressinput.js"; import { MemberOwnerCreate, MemberOwnerCreate$Outbound } from "./memberownercreate.js"; export type CustomerIndividualCreateMetadata = string | number | number | boolean; export type CustomerIndividualCreate = { /** * Key-value object allowing you to store additional information. * * @remarks * * The key must be a string with a maximum length of **40 characters**. * The value must be either: * * * A string with a maximum length of **500 characters** * * An integer * * A floating-point number * * A boolean * * You can store up to **50 key-value pairs**. */ metadata?: { [k: string]: string | number | number | boolean; } | undefined; /** * 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; name?: string | null | undefined; billingAddress?: AddressInput | null | undefined; taxId?: string | null | undefined; locale?: string | null | undefined; /** * The ID of the organization owning the customer. **Required unless you use an organization token.** */ organizationId?: string | null | undefined; /** * Optional owner member to create with the customer. If not provided, an owner member will be automatically created using the customer's email and name. */ owner?: MemberOwnerCreate | null | undefined; type?: "individual" | undefined; /** * The email address of the customer. This must be unique within the organization. */ email: string; }; /** @internal */ export type CustomerIndividualCreateMetadata$Outbound = string | number | number | boolean; /** @internal */ export declare const CustomerIndividualCreateMetadata$outboundSchema: z.ZodMiniType; export declare function customerIndividualCreateMetadataToJSON(customerIndividualCreateMetadata: CustomerIndividualCreateMetadata): string; /** @internal */ export type CustomerIndividualCreate$Outbound = { metadata?: { [k: string]: string | number | number | boolean; } | undefined; external_id?: string | null | undefined; name?: string | null | undefined; billing_address?: AddressInput$Outbound | null | undefined; tax_id?: string | null | undefined; locale?: string | null | undefined; organization_id?: string | null | undefined; owner?: MemberOwnerCreate$Outbound | null | undefined; type: "individual"; email: string; }; /** @internal */ export declare const CustomerIndividualCreate$outboundSchema: z.ZodMiniType; export declare function customerIndividualCreateToJSON(customerIndividualCreate: CustomerIndividualCreate): string; //# sourceMappingURL=customerindividualcreate.d.ts.map