@mendix/extensions-api - v0.9.0
    Preparing search index...

    Interface DataSet

    A unit is a container of elements, it can not contain other units.

    interface DataSet {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "DataSets$DataSet";
        $UnitID?: string;
        dataSetAccess: DataSetAccess;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        parameters: DataSetParameter[];
        source: DataSetSource;
        addDataSetParameter(): Promise<DataSetParameter>;
        getDataSetParameter(name: string): undefined | DataSetParameter;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "DataSets$DataSet"

    The type of the element.

    $UnitID?: string
    dataSetAccess: DataSetAccess
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    parameters: DataSetParameter[]

    Methods