mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-03 00:43:46 +00:00
[csharp] Fixed model property data type (#16315)
* fixed model property data type * build samples
This commit is contained in:
@@ -1156,6 +1156,17 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
/test:
|
||||
get:
|
||||
operationId: Test
|
||||
responses:
|
||||
"200":
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/notificationtest-getElements-v1-Response-mPayload'
|
||||
description: Successful response
|
||||
summary: Retrieve an existing Notificationtest's Elements
|
||||
components:
|
||||
requestBodies:
|
||||
UserArray:
|
||||
@@ -2294,6 +2305,29 @@ components:
|
||||
- notUnknown
|
||||
type: string
|
||||
type: object
|
||||
Custom-Variableobject-Response:
|
||||
additionalProperties: true
|
||||
description: A Variable object without predefined property names
|
||||
type: object
|
||||
Field-pkiNotificationtestID:
|
||||
type: integer
|
||||
notificationtest-getElements-v1-Response-mPayload:
|
||||
example:
|
||||
a_objVariableobject:
|
||||
- null
|
||||
- null
|
||||
pkiNotificationtestID: 0
|
||||
properties:
|
||||
pkiNotificationtestID:
|
||||
type: integer
|
||||
a_objVariableobject:
|
||||
items:
|
||||
$ref: '#/components/schemas/Custom-Variableobject-Response'
|
||||
type: array
|
||||
required:
|
||||
- a_objVariableobject
|
||||
- pkiNotificationtestID
|
||||
type: object
|
||||
_foo_get_default_response:
|
||||
example:
|
||||
string:
|
||||
|
||||
Reference in New Issue
Block a user