Member Junction
    Preparing search index...

    Mirrors MJCompanyIntegrationFieldMapEntity from the CompanyIntegrationFieldMap table.

    migrations/v2/V202603040358__v5.7.x_Create_CompanyIntegrationFieldMap.sql

    interface ICompanyIntegrationFieldMap {
        DefaultValue: string;
        DestinationFieldLabel: string;
        DestinationFieldName: string;
        Direction: "Both" | "SourceToDest" | "DestToSource";
        EntityMapID: string;
        ID: string;
        IsKeyField: boolean;
        IsRequired: boolean;
        Priority: number;
        SourceFieldLabel: string;
        SourceFieldName: string;
        Status: "Active" | "Inactive";
        TransformPipeline: string;
        Get(fieldName: string): unknown;
        Save?(): Promise<boolean>;
        Set?(fieldName: string, value: unknown): void;
    }
    Index

    Properties

    DefaultValue: string
    DestinationFieldLabel: string
    DestinationFieldName: string
    Direction: "Both" | "SourceToDest" | "DestToSource"
    EntityMapID: string
    ID: string
    IsKeyField: boolean
    IsRequired: boolean
    Priority: number
    SourceFieldLabel: string
    SourceFieldName: string
    Status: "Active" | "Inactive"
    TransformPipeline: string

    Methods