import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerSeat, CustomerSeat$Outbound } from "./customerseat.js"; /** * Sent when a new customer seat is assigned. * * @remarks * * This event is triggered when a seat is assigned to a customer by the organization. * The customer will receive an invitation email to claim the seat. */ export type WebhookCustomerSeatAssignedPayload = { type: "customer_seat.assigned"; timestamp: Date; data: CustomerSeat; }; /** @internal */ export declare const WebhookCustomerSeatAssignedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookCustomerSeatAssignedPayload$Outbound = { type: "customer_seat.assigned"; timestamp: string; data: CustomerSeat$Outbound; }; /** @internal */ export declare const WebhookCustomerSeatAssignedPayload$outboundSchema: z.ZodMiniType; export declare function webhookCustomerSeatAssignedPayloadToJSON(webhookCustomerSeatAssignedPayload: WebhookCustomerSeatAssignedPayload): string; export declare function webhookCustomerSeatAssignedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookcustomerseatassignedpayload.d.ts.map