I have created a weather model class with its parameters and I'm going to get data from the API.
But I'm a bit curious If I want to get data from 2 APIs with different parameters how do I use the same model classes?
Example: API 1 -> returns 'temp' and API 2 -> returns 'temperature' and I want to use the same model class.
Is this even possible? If so how should I do it?