vlocode-project - v2.4.3
    Preparing search index...

    Interface VlocityMatchingKey

    Matching key definition for an SObject type describing which fields uniquely identify a record.

    interface VlocityMatchingKey {
        fields: readonly string[];
        returnField: string;
        sobjectType: string;
    }
    Index

    Properties

    fields: readonly string[]

    Fields that together uniquely identify a record of this SObject type. An empty array means the object is explicitly key-less: records are always inserted and exports use generated source keys.

    returnField: string

    Field returned when looking up records by matching key; defaults to Id.

    sobjectType: string

    SObject type to which the matching key applies.