In my app, I have a model defined as Class with a constructor. Like this:
export class Movie {
title: string;
posterURL: string;
description: str
HttpClient methods are generic, this.http.get asserts that the result conforms to Movie[] interface and doesn't create Movie instances.
In order for the result to become class instances, the class should be explicitly instantiated. Class constructor should preferably accept plain object which properties will be assigned to class instance, and Movie already does this with cfg parameter.
Since it's unlikely that Partial type precisely describes the interface, it's better to declare a separate interface:
interface IMovie {
title: string;
posterURL: string;
description: string;
}
class Movie implements IMovie { ... }
...
getMoviesData(): Observable {
return this.http.get(...)
.map(plainMovies => plainMovies.map(plainMovie => new Movie(plainMovie)))
}