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

    Interface Rule

    interface Rule {
        $CreationOptions?: RuleCreationOptions;
        $ID: string;
        $Type: "Microflows$Rule";
        applyEntityAccess: boolean;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        flows: Flow[];
        markAsUsed: boolean;
        microflowReturnType: DataType;
        name: string;
        objectCollection: MicroflowObjectCollection;
        parameters: RuleParameter[];
        returnVariableName: string;
        addAnnotationFlow(): Promise<AnnotationFlow>;
        addRuleParameter(
            options: RuleParameterCreationOptions,
        ): Promise<RuleParameter>;
        addSequenceFlow(
            options: SequenceFlowSchemaInitOptions,
        ): Promise<SequenceFlow>;
        getRuleParameter(name: string): undefined | RuleParameter;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: RuleCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Microflows$Rule"

    The type of the element.

    applyEntityAccess: boolean
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    flows: Flow[]
    markAsUsed: boolean
    microflowReturnType: DataType
    name: string
    objectCollection: MicroflowObjectCollection
    parameters: RuleParameter[]
    returnVariableName: string

    Methods