Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 1.48 KB

AddressNullParameter.md

File metadata and controls

13 lines (10 loc) · 1.48 KB

# AddressNullParameter

Properties

Name Type Description Notes
eq string Equal filter mode (optional, i.e. `param.eq=` is the same as `param=`). \ Specify an account address to get items where the specified field is equal to the specified value. Example: `?address=tz123..`. [optional]
ne string Not equal filter mode. \ Specify an account address to get items where the specified field is not equal to the specified value. Example: `?address.ne=tz123..`. [optional]
in string[] In list (any of) filter mode. \ Specify a comma-separated list of account addresses to get items where the specified field is equal to one of the specified values. Example: `?address.in=tz123..,tz345..`. [optional]
ni string[] Not in list (none of) filter mode. \ Specify a comma-separated list of account addresses to get items where the specified field is not equal to all the specified values. Example: `?address.ni=tz123..,tz345..`. [optional]
null bool Is null filter mode. \ Use this mode to get items where the specified field is null or not. Example: `?address.null` or `?address.null=false`. [optional]

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