type ExternalExtension struct { UPC string Reviews []*World }
func (ExternalExtension) IsEntity()
type Hello struct { Name string Secondary string }
func (Hello) IsEntity()
type MoreNesting struct { ID string World *World }
func (MoreNesting) IsEntity()
type NestedKey struct { ID string Hello *Hello }
func (NestedKey) IsEntity()
type VeryNestedKey struct { ID string Hello *Hello World *World Nested *NestedKey More *MoreNesting }
func (VeryNestedKey) IsEntity()
type World struct { Foo string Bar int }
func (World) IsEntity()