How do I send metadata into a seperate Pydantic class?
I am parsing data from an API (https://rapidapi.com/apidojo/api/tasty, to be exact). I have two classes: Tip (represents a review on a recipe) and TipMetadata (represents all of the metadata associated with the Tip. I don’t technically have to do this, but I prefer it this way. The problem is, when I get the data from the API, it isn’t structured the same way I want it to be in my code.