export class TemporalExtent { trs?: string[]; interval?: string[]; static fromJson(jsonObj: any): TemporalExtent { const temporalExtent = new TemporalExtent(); temporalExtent.trs = jsonObj["trs"]; temporalExtent.interval = jsonObj["interval"]; return temporalExtent; } }