Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Reminder Integer Criteria Input
Input representation of the integer criteria of a reminder.
- JSON example
- Here’s a sample of the integer type criteria to configure the reminder.
-
1{ 2 "criteria": [ 3 { 4 "operator": "Equals", 5 "field": "IntegerField", 6 "fieldType": "Integer", 7 "value": "10" 8 } 9 ] 10} - Properties
-
Name Type Description Required or Optional Available Version field String Name of the criteria field of the reminder. Required 60.0 fieldType String Criteria field type of the reminder. Valid value is Integer.
Required 60.0 operator String Operator between the field and value properties within the reminder criteria property that’s used to configure the reminder. Valid values are:
- Equals
- GreaterThan
- GreaterThanOrEqualTo
- LessThan
- LessThanOrEqualTo
- NotEquals
Required 60.0 value Integer Integer value of the field property of the reminder criteria. Required 60.0