@@ -39,6 +39,7 @@ type Generator struct {
39
39
packageComment string
40
40
packageName string
41
41
skipUnparsableProperties bool
42
+ stringTags bool
42
43
structTagNames []string
43
44
typeComment string
44
45
typeName string
@@ -127,6 +128,13 @@ func WithSkipUnparsableProperties(skipUnparsableProperties bool) GeneratorOption
127
128
}
128
129
}
129
130
131
+ // WithStringTags sets whether ",string" tags should be used.
132
+ func WithStringTags (stringTags bool ) GeneratorOption {
133
+ return func (g * Generator ) {
134
+ g .stringTags = stringTags
135
+ }
136
+ }
137
+
130
138
// WithStructTagName sets the struct tag name.
131
139
func WithStructTagName (structTagName string ) GeneratorOption {
132
140
return func (g * Generator ) {
@@ -216,12 +224,13 @@ func (g *Generator) Generate() ([]byte, error) {
216
224
}
217
225
fmt .Fprintf (buffer , "package %s\n " , g .packageName )
218
226
imports := maps .Clone (g .imports )
219
- goType , _ := g .value .goType (0 , & generateOptions {
227
+ goType := g .value .goType (0 , & generateOptions {
220
228
exportNameFunc : g .exportNameFunc ,
221
229
imports : imports ,
222
230
intType : g .intType ,
223
231
omitEmptyOption : g .omitEmptyOption ,
224
232
skipUnparsableProperties : g .skipUnparsableProperties ,
233
+ stringTags : g .stringTags ,
225
234
structTagNames : g .structTagNames ,
226
235
useJSONNumber : g .useJSONNumber ,
227
236
})
@@ -236,7 +245,7 @@ func (g *Generator) Generate() ([]byte, error) {
236
245
if g .typeComment != "" {
237
246
fmt .Fprintf (buffer , "// %s\n " , g .typeComment )
238
247
}
239
- fmt .Fprintf (buffer , "type %s %s\n " , g .typeName , goType )
248
+ fmt .Fprintf (buffer , "type %s %s\n " , g .typeName , goType . typeStr )
240
249
if ! g .goFormat {
241
250
return buffer .Bytes (), nil
242
251
}
0 commit comments