Skip to content

Create Random Int

The int.random processor will set the payload to a random integer between the specified min and max value.

  • typeint.random
  • params:
    • max: inclusive maximum value of the random integer
    • min: inclusive minimum value of the random integer

This would generate a random integer between -127 and 127 and set the payload to that value.

- type: int.random
params:
min: -127
max: 127