try string in input type

This commit is contained in:
2021-11-25 15:44:16 +01:00
parent 39528bc248
commit 7cf092cc9f
3 changed files with 10 additions and 10 deletions

View File

@ -12,6 +12,8 @@ def CsTypeConverter(i):
match (i):
case 'integer':
r = 'int'
case 'string':
r = 'string'
return r
def OpenApiExtractRefType(i):