Member Junction
    Preparing search index...

    Simplified representation of an integration object field for generation

    interface IntegrationFieldInfo {
        Description?: string;
        DisplayName: string;
        IsPrimaryKey: boolean;
        IsReadOnly: boolean;
        IsRequired: boolean;
        Name: string;
        Type: string;
    }
    Index

    Properties

    Description?: string

    Field description

    DisplayName: string

    Human-readable display name

    IsPrimaryKey: boolean

    Whether this field is the primary key

    IsReadOnly: boolean

    Whether this field is read-only (should not appear in Create/Update params)

    IsRequired: boolean

    Whether this field is required for creates

    Name: string

    Field name in the external system (e.g., "email", "firstname")

    Type: string

    Field data type (e.g., "string", "number", "datetime", "boolean")