import { Observable } from 'rxjs/Rx'; import { Injectable } from '@angular/core'; import { Http, RequestOptions } from '@angular/http'; import { SeCurisResourceServices } from './base'; var lictype_example = { application_name: 'CurisIntegrity', code: 'CIA2', creation_timestamp: 1437145151000, description: 'Modified after bug', id: 2, metadata: [ { key: 'datasetPrefix', value: '', mandatory: true } ], name: 'Analytic2' } @Injectable() export class LicenseTypesService extends SeCurisResourceServices { constructor(http: Http) { super(http, 'licensetype'); } }