@sudoplatform/sudo-secure-communications
    Preparing search index...

    Interface UpdateGroupInput

    Updatable fields when making an update to a group. If a field's Input is undefined, that setting is not modified. If the value inside the Input is undefined, that setting is unset.

    UpdateGroupInput

    interface UpdateGroupInput {
        avatar?: Input<AvatarInput | undefined>;
        description?: Input<string | undefined>;
        groupId: GroupId;
        handleId: HandleId;
        name?: Input<string | undefined>;
    }
    Index

    Properties

    avatar?: Input<AvatarInput | undefined>

    File to upload to use as the group's avatar.

    description?: Input<string | undefined>

    An explanation about what the group is about.

    groupId: GroupId

    The identifier of the group to update.

    handleId: HandleId

    Identifier of the handle owned by this client.

    name?: Input<string | undefined>

    The display name for the group.