Type alias GroupDto

GroupDto: Immutable<{
    chatId: string;
    groupId: string;
    name: string;
    owner: {
        id: string;
    };
    participants: readonly string[];
    ringingStrategy: {
        properties?: {
            delay: number;
            steps: number;
        };
        type: "sequential" | "simultaneous";
    };
}>

Generated using TypeDoc