Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 2.1 KB

Int64Parameter.md

File metadata and controls

17 lines (14 loc) · 2.1 KB

# Int64Parameter

Properties

Name Type Description Notes
eq int Equal filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify an integer number to get items where the specified field is equal to the specified value. Example: `?balance=1234`. [optional]
ne int Not equal filter mode. \ Specify an integer number to get items where the specified field is not equal to the specified value. Example: `?balance.ne=1234`. [optional]
gt int Greater than filter mode. \ Specify an integer number to get items where the specified field is greater than the specified value. Example: `?balance.gt=1234`. [optional]
ge int Greater or equal filter mode. \ Specify an integer number to get items where the specified field is greater than equal to the specified value. Example: `?balance.ge=1234`. [optional]
lt int Less than filter mode. \ Specify an integer number to get items where the specified field is less than the specified value. Example: `?balance.lt=1234`. [optional]
le int Less or equal filter mode. \ Specify an integer number to get items where the specified field is less than or equal to the specified value. Example: `?balance.le=1234`. [optional]
in int[] In list (any of) filter mode. \ Specify a comma-separated list of integers to get items where the specified field is equal to one of the specified values. Example: `?level.in=12,14,52,69`. [optional]
ni int[] Not in list (none of) filter mode. \ Specify a comma-separated list of integers to get items where the specified field is not equal to all the specified values. Example: `?level.ni=12,14,52,69`. [optional]
empty bool [optional]

[Back to Model list] [Back to API list] [Back to README]