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 MultiHelloMultiKey struct { Name string Key2 int }
func (MultiHelloMultiKey) IsEntity()
type MultiHelloMultiKeyByKey2sInput struct { Key2s []string `json:"Key2s"` }
type MultiHelloMultiKeyByNamesInput struct { Names []string `json:"Names"` }
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()