Advertisement
informaticage

DwsPage Interface

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