All files / src/entities short_url.ts

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

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 371x   1x   1x 1x 1x 1x   1x     1x     1x     1x     1x     1x     1x     1x     1x   1x  
import { Entity } from '../entity.js';
import { Notification } from './notification.js';
import { User } from './user.js';
 
export class ShortUrl extends Entity {
  protected static resourceName = 'short_urls';
  protected static singularName = 'shortUrl';
  protected static pluralName = 'shortUrls';
 
  @ShortUrl.property({type: Date})
  public archived?: Date | null;
 
  @ShortUrl.property()
  public id?: number;
 
  @ShortUrl.property()
  public prefixToken?: string;
 
  @ShortUrl.property()
  public suffixToken?: string;
 
  @ShortUrl.property()
  public originalLink?: string;
 
  @ShortUrl.property()
  public triedTimes?: number;
 
  @ShortUrl.property({type: Date})
  public lastLookup?: Date | null;
 
  @ShortUrl.property({type: User})
  public user?: User | null;
 
  @ShortUrl.property({arrayType: 'Notification'})
  public notification?: Notification[];
}