import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertEntityType } from "./alert-entity-type.js"; import { AlertInfo } from "./alert-info.js"; import { AlertState } from "./alert-state.js"; import { AlertType } from "./alert-type.js"; import { CustomerResponse } from "./customer-response.js"; import { FeatureResponse } from "./feature-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { WalletResponse } from "./wallet-response.js"; export type AlertLogResponse = { alertInfo?: AlertInfo | undefined; alertStatus?: AlertState | undefined; alertType?: AlertType | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; /** * Customer response object containing all customer information */ customer?: CustomerResponse | undefined; customerId?: string | undefined; entityId?: string | undefined; entityType?: AlertEntityType | undefined; environmentId?: string | undefined; feature?: FeatureResponse | undefined; id?: string | undefined; parentEntityId?: string | undefined; parentEntityType?: string | undefined; status?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; wallet?: WalletResponse | undefined; }; /** @internal */ export declare const AlertLogResponse$inboundSchema: z.ZodMiniType; export declare function alertLogResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alert-log-response.d.ts.map