All files / src/entities production_comment.ts

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

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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 511x 1x     1x   1x 1x 1x 1x   1x     1x     1x     1x     1x     1x     1x     1x     1x     1x     1x     1x     1x   1x  
import { Assignment } from './assignment.js';
import { Entity } from '../entity.js';
import { MerchiFile } from './file.js';
import { Notification } from './notification.js';
import { User } from './user.js';
 
export class ProductionComment extends Entity {
  protected static resourceName = 'production_comments';
  protected static singularName = 'productionComment';
  protected static pluralName = 'productionComments';
 
  @ProductionComment.property({type: Date})
  public archived?: Date | null;
 
  @ProductionComment.property()
  public id?: number;
 
  @ProductionComment.property({type: Date})
  public date?: Date | null;
 
  @ProductionComment.property()
  public urgency?: number;
 
  @ProductionComment.property()
  public text?: string;
 
  @ProductionComment.property()
  public isUrgentQuestion?: boolean;
 
  @ProductionComment.property()
  public sendSms?: boolean;
 
  @ProductionComment.property()
  public sendEmail?: boolean;
 
  @ProductionComment.property({arrayType: "MerchiFile"})
  public files?: MerchiFile[];
 
  @ProductionComment.property()
  public user?: User;
 
  @ProductionComment.property({arrayType: 'User'})
  public forwards?: User[];
 
  @ProductionComment.property({arrayType: 'Notification'})
  public notifications?: Notification[];
 
  @ProductionComment.property()
  public assignment?: Assignment;
}