I have two structure (New and DailyPrediction) with DailyPrediction structure as one of the entity of New structure:
type New struct {
Id string
DailyPrediction
}
type DailyPrediction struct {
Prediction string
}
I am unable to read (or) write the structure new in the datastore. It would be helpful if someone can help me on this.