access property
dynamic
access
getter/setter pair
Only select conversations that the current user as specific access to.
Must be an 2-element array of [operator, operand] structure. Valid operators are:
"==", "!=", "oneOf", and "!oneOf".
The operand must be either a string (one of "ReadWrite", "Read" or "None") or an array of strings (for the oneOf operators).
Example:
// to remove conversations that the user has no access to anymore, do:
{ access: ["!=", "None"] }
Implementation
external dynamic access;