import { PagingApitype } from './Paging.apitype'; export class ListApitype { public paging: PagingApitype; public results: T[] = []; constructor(init: Object) { Object.assign(this, init); } }