An interface for editing attributes.
Example
const contact = await sdk.contact
const editor = await contact.editAttributes()
editor.set("my_attribute", "some_value")
await editor.apply()
Members
apply :Promise.<void>
Applies any previously queued changes.
Type:
-
Promise.<void>
remove :void
Queue an attribute removal.
Type:
-
void
set :void
Queue an attribute set.
Type:
-
void