Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 2.15 KB

NatParameter.md

File metadata and controls

16 lines (13 loc) · 2.15 KB

# NatParameter

Properties

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

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