All files / src/models queue-member.ts

100% Statements 1/1
0% Branches 0/1
100% Functions 1/1
100% Lines 1/1

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);
  }
}