import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Read-only information about a seat claim invitation. * * @remarks * Safe for email scanners - no side effects when fetched. */ export type SeatClaimInfo = { /** * Name of the product */ productName: string; /** * ID of the product */ productId: string; /** * Name of the organization */ organizationName: string; /** * Slug of the organization */ organizationSlug: string; /** * Email of the customer assigned to this seat */ customerEmail: string; /** * Whether the seat can be claimed */ canClaim: boolean; }; /** @internal */ export declare const SeatClaimInfo$inboundSchema: z.ZodMiniType; export declare function seatClaimInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=seatclaiminfo.d.ts.map