This activity provides your Flogo app the ability to generate a random unique number between the min and max value
flogo install github.com/retgits/flogo-components/activity/randomnumber
Link for flogo web:
https://github.com/retgits/flogo-components/activity/randomnumber
Inputs and Outputs:
{
"inputs":[
{
"name": "min",
"type": "integer"
},
{
"name": "max",
"type": "integer"
}
],
"outputs": [
{
"name": "result",
"type": "integer"
}
]
}
Input | Description |
---|---|
min | The minimum value of the random number |
max | The maximum value of the random number |
Output | Description |
---|---|
result | The random number |