import { Serializable } from "../Serializable"; export class ExternalDatasetModel implements Serializable { public abbreviation: String; public id: String; public label: String; public reference: String; fromJSONObject(item: any): ExternalDatasetModel { this.abbreviation = item.abbreviation; this.id = item.id; this.label = item.label; this.reference = item.reference; return this; } }