Newer
Older
"use strict";
class Article {
constructor(data) {
if (data) {
this.from(data)
} else {
this.title = "";
this.subtitle = "";
this.category = "";
this.details = [];
this.images = [];
this.body = "";
this.locale = "";
this.display_priority_index = 1;
this.metadata = {
description: "",
};