Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 3x | import { Model } from './model';
import { Namespace } from './namespace';
import { Queue } from './queue';
import { User } from './user';
export class QueueMember extends Model {
public _id: string;
public createdAt: Date;
public groupId: string;
public namespace: Namespace;
public namespaceId: string;
public queue: Queue;
public queueId: string;
public updatedAt: Date;
public user: User;
public userId: string;
public webSocketId: string;
constructor(params: Partial<QueueMember> = {}) {
super(params);
}
}
|