import { ContentType } from "../ContentType" import { IContentType } from "../ContentType.interface" export class PageId extends ContentType implements IContentType { readonly pageId:string constructor(jsonRaw:any) { super(jsonRaw) this.pageId = jsonRaw && jsonRaw['page_id'] ? jsonRaw['page_id'] : 'UNKNOWN_PAGE_ID' } toHTML(): string { return `