github.com/blend/go-sdk@v1.20220411.3/reflectutil/main_test.go (about) 1 /* 2 3 Copyright (c) 2022 - Present. Blend Labs, Inc. All rights reserved 4 Use of this source code is governed by a MIT license that can be found in the LICENSE file. 5 6 */ 7 8 package reflectutil 9 10 type testType struct { 11 ID int 12 Name string 13 NotTagged string 14 Tagged string 15 SubTypes []subType 16 } 17 18 type subType struct { 19 ID int 20 Name string 21 }