Name | Type | Description | Notes |
---|---|---|---|
eq | string | Equal filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify an inbox message type to get items where the specified field is equal to the specified value. Example: `?status=external`. | [optional] |
ne | string | Not equal filter mode. \ Specify an inbox message type to get items where the specified field is not equal to the specified value. Example: `?status.ne=transfer`. | [optional] |
in | string[] | In list (any of) filter mode. \ Specify a comma-separated list of inbox message types to get items where the specified field is equal to one of the specified values. Example: `?status.in=transfer,external`. | [optional] |
ni | string[] | Not in list (none of) filter mode. \ Specify a comma-separated list of inbox message types to get items where the specified field is not equal to all the specified values. Example: `?status.ni=transfer,external`. | [optional] |