Advertisement
informaticage

News Interface

Jan 19th, 2021
929
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. interface News {
  2.   template?: string;
  3.   dealerCode: string;
  4.   title: string;
  5.   internalTitle: string;
  6.   featured?: string;
  7.   locale: string;
  8.   metadata?: object;
  9.   content: any;
  10.   slug: string;
  11.   status: string;
  12.   publishedAt?: string;
  13.   deletedAt?: string;
  14.   id?: string;
  15.   original?: string;
  16.   createdBy?: string;
  17.   updatedBy?: string;
  18.   createdAt?: string;
  19.   updatedAt?: string;
  20.   expireAt?: string;
  21.   revision?: number;
  22.   active?: boolean;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement