EnumsAction

PropertyActions. EnumsAction

An action 'enums' that sets a variable to all possible values of an enum string type.

Constructor

new EnumsAction()

Source:
Examples
//Fetch all enum values for myEnumProperty and save in variable $enum
{
    "enums": {
        "property": "myEnumProperty"
    }
}
//Fetch all enum values for myEnumProperty and save in variable $myVariableName
{
    "enums": {
        "property": "myEnumProperty",
        "as": "myVariableName"
    }
}
//Non selected concept version
{
    "enums": {
        "property": "myConcept.myEnumProperty"
    }
}
//Shorthand version
{
    "enums": "myEnumProperty"
}