import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { IntegrationEntityType } from "./integration-entity-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type EntityIntegrationMappingResponse = { createdAt?: Date | undefined; createdBy?: string | undefined; entityId?: string | undefined; entityType?: IntegrationEntityType | undefined; environmentId?: string | undefined; id?: string | undefined; metadata?: { [k: string]: any; } | undefined; providerEntityId?: string | undefined; providerType?: string | undefined; status?: Status | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const EntityIntegrationMappingResponse$inboundSchema: z.ZodMiniType; export declare function entityIntegrationMappingResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=entity-integration-mapping-response.d.ts.map