Interface DocumentMembersResponseDTO

interface DocumentMembersResponseDTO {
    access: EntityAccess;
    managers: {
        [key: string]: DocumentMemberResponseDTO;
    };
    spectators: {
        [key: string]: DocumentMemberResponseDTO;
    };
}

Properties

access: EntityAccess
managers: {
    [key: string]: DocumentMemberResponseDTO;
}

Type declaration

spectators: {
    [key: string]: DocumentMemberResponseDTO;
}

Type declaration