Class GroupInfoDto.

GroupInfoDto

interface GroupInfoDto {
    GroupId?: string;
    GroupName?: string;
    LastUpdatedAt?: string;
    Participants?: string[];
    State?: GroupStateType;
}

Properties

GroupId?: string

Gets the group identifier.

GroupInfoDto

GroupName?: string

Gets the group name.

GroupInfoDto

LastUpdatedAt?: string

Gets the date when this DTO has been created.

GroupInfoDto

Participants?: string[]

Gets the participants.

GroupInfoDto

GroupInfoDto