import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$Outbound } from "./address.js"; import { MetadataOutputType, MetadataOutputType$Outbound } from "./metadataoutputtype.js"; import { TaxIDFormat } from "./taxidformat.js"; export type CustomerTeamTaxId = string | TaxIDFormat; /** * A team customer in an organization. */ export type CustomerTeam = { /** * 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 | null | undefined; /** * 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. Team customers can have multiple members. */ type: "team"; /** * 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 declare const CustomerTeamTaxId$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomerTeamTaxId$Outbound = string | string; /** @internal */ export declare const CustomerTeamTaxId$outboundSchema: z.ZodMiniType; export declare function customerTeamTaxIdToJSON(customerTeamTaxId: CustomerTeamTaxId): string; export declare function customerTeamTaxIdFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CustomerTeam$inboundSchema: z.ZodMiniType; /** @internal */ export type CustomerTeam$Outbound = { id: string; created_at: string; modified_at: string | null; metadata: { [k: string]: MetadataOutputType$Outbound; }; external_id?: string | null | undefined; email?: string | null | undefined; email_verified: boolean; type: "team"; 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 declare const CustomerTeam$outboundSchema: z.ZodMiniType; export declare function customerTeamToJSON(customerTeam: CustomerTeam): string; export declare function customerTeamFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerteam.d.ts.map