toloka.client.project.template_builder.conditions.EqualsConditionV1
| Source code
EqualsConditionV1( self, to: Optional[Any] = None, data: Optional[Any] = None, *, hint: Optional[Any] = None, version: Optional[str] = '1.0.0')
Checks whether the original value is equal to the specified value.
If it matches, it returns true, otherwise it returns false.
When substituting values, you can refer to data.* or another element using $ref. You can also use helpers and conditions to get the value.
Parameters | Type | Description |
---|---|---|
to | Optional[Any] | The value to compare with the original. How to pass a value:
|
data | Optional[Any] | Original value. If not specified, it uses the value returned by the parent component (the component that contains condition.equals). How to pass a value: Specify the value itself, like the number 42 or a string. Get the value from your data. Refer to another element using $ref. Use helpers and conditions to get the value. |
hint | Optional[Any] | Validation error message that a Toloker will see. |