ContactGroup: {
    displayName: string;
    encryptionKeyUrl: string;
    groupId: string;
    groupType: GroupType;
    members?: string[];
    ownerId?: string;
}

ContactGroup object is used to represent a contact group.

Type declaration

  • displayName: string

    Name of the contact group.

  • encryptionKeyUrl: string

    Encrypted key url used for encryption.

  • groupId: string

    Unique identifier of the contact group.

  • groupType: GroupType

    Type of the contact group, can be NORMAL or EXTERNAL.

  • Optional members?: string[]

    String array containing details of the contacts in each group.

  • Optional ownerId?: string

    User ID of the user who owns the contact group.