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 customer seat is revoked. * * @remarks * * This event is triggered when access to a seat is revoked, either manually by the organization or automatically when a subscription is canceled. */ export type WebhookCustomerSeatRevokedPayload = { type: "customer_seat.revoked"; timestamp: Date; data: CustomerSeat; }; /** @internal */ export declare const WebhookCustomerSeatRevokedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookCustomerSeatRevokedPayload$Outbound = { type: "customer_seat.revoked"; timestamp: string; data: CustomerSeat$Outbound; }; /** @internal */ export declare const WebhookCustomerSeatRevokedPayload$outboundSchema: z.ZodMiniType; export declare function webhookCustomerSeatRevokedPayloadToJSON(webhookCustomerSeatRevokedPayload: WebhookCustomerSeatRevokedPayload): string; export declare function webhookCustomerSeatRevokedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookcustomerseatrevokedpayload.d.ts.map