deleteGroupAttributes abstract method

Future<ZIMGroupAttributesOperatedResult> deleteGroupAttributes(
  1. List<String> keys,
  2. String groupID
)

Available since: 2.0.0 and above.

Description: When a group already exists, you can use this method to delete group attributes. Both the master and members of the interface group can be invoked.

Use cases: Deleted the extended field of the group description.

When to call /Trigger: The ZIM instance can be invoked after being created by create and logged in.

Restrictions: Only group members can delete group attributes.

Related callbacks: Through the callback ZIMGroupAttributesOperatedResult can delete the result of the group of attributes.

Related APIs: You can use setGroupAttributes to setGroupAttributes, queryGroupAttributes to queryGroupAttributes, and queryGroupAllAttributes to queryAllGroupAttributes.

groupID The group ID of the group attribute to be deleted. keys The key of the group attribute to delete.

Implementation

Future<ZIMGroupAttributesOperatedResult> deleteGroupAttributes(
    List<String> keys, String groupID);