|
|
|
@ -80,7 +80,7 @@ import com.google.gson.Gson
|
|
|
|
|
object {{with .Info}}{{.Title}}{{end}}{
|
|
|
|
|
{{range .Types}}
|
|
|
|
|
data class {{.Name}}({{$length := (len .Members)}}{{range $i,$item := .Members}}
|
|
|
|
|
val {{with $item}}{{lowCamelCase .Name}}: {{parseType .Type}}{{end}}{{if ne $i (add $length -1)}},{{end}}{{end}}
|
|
|
|
|
val {{with $item}}{{lowCamelCase .Name}}: {{parseType .Type.Name}}{{end}}{{if ne $i (add $length -1)}},{{end}}{{end}}
|
|
|
|
|
){{end}}
|
|
|
|
|
{{with .Service}}
|
|
|
|
|
{{range .Routes}}suspend fun {{routeToFuncName .Method .Path}}({{with .RequestType}}{{if ne .Name ""}}
|
|
|
|
|