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

    Interface CreateGroupInput

    Properties required or optional when creating a new group. Groups are always end-to-end encrypted.

    CreateGroupInput

    interface CreateGroupInput {
        avatar?: AvatarInput;
        description?: string;
        handleId: HandleId;
        invitedHandleIds: HandleId[];
        name?: string;
    }
    Index

    Properties

    avatar?: AvatarInput

    Optional file to use as the group's avatar.

    description?: string

    Optional explanation about what the group is about.

    handleId: HandleId

    Identifier of the handle owned by this client.

    invitedHandleIds: HandleId[]

    The identifiers of the handles to invite immediately when the group is created.

    name?: string

    Optional display name for the group.