我的招摇文件的一部分是这样的:
"FootprintTypeDto": {
"required": [
"identifierCode"
],
"type": "object",
"properties": {
"identifierCode": {
"maxLength": 4,
"minLength": 0,
"type": "string"
},
"displayNames": {
"maxLength": 50,
"type": "string",
"nullable": true
},
在我调用 openapi-generator 之后,我想在打字稿模型中看到“maxlength”、“minLengs”等。
我已经阅读了 openapi-generator.tech 的文档,在论坛中进行了研究,并在 Slack 的内部开发聊天中提出了一个问题,但我没有答案。
有人可以建议如何做到这一点或告诉我是否有可能使用这个工具来达到这个目的?