export class BaseModel { deserialize(input: any): this { Object.assign(this, input); return this; } sendFormat(): this { return this; } }