@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
18 lines (17 loc) • 530 B
TypeScript
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
export interface EnterprisePropertyColumnMapping {
enterprisePropertyId: GuidValue;
tableName: string;
enterprisePropertyInternalName: string;
createdAt: Date;
status: EnterprisePropertyMappingStatus;
log: string;
enableAZFiltering?: boolean;
azFilterInternalName?: string;
}
export declare enum EnterprisePropertyMappingStatus {
isAdding = 1,
isRemoving = 2,
success = 3,
exception = 4
}