For example (golang):
type { Product struct { Name string } Customer struct { Name string Products []*Product } }
Which