-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenapitools.json
55 lines (55 loc) · 1.7 KB
/
openapitools.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "7.2.0",
"generators": {
"csharp-automation-client": {
"generatorName": "csharp",
"output": "./automation-api-clients/csharp",
"library": "generichost",
"inputSpec": "./automation-api-clients/csharp/spec.json",
"templateDir": "./templates",
"skipValidateSpec": true,
"globalProperty": {
"modelTests": false,
"apiTests": false,
"modelDocs": false,
"apiDocs": false
},
"additionalProperties": {
"packageName": "BeamAutomationClient",
"apiName": "BeamAutomationApi",
"classPrefix": "Automation",
"returnICollection": true,
"optionalMethodArgument": false,
"nullableReferenceTypes": true,
"netCoreProjectFile": true
}
},
"csharp-player-client": {
"generatorName": "csharp",
"output": "./player-api-clients/csharp",
"library": "generichost",
"inputSpec": "./player-api-clients/csharp/spec.json",
"templateDir": "./templates",
"skipValidateSpec": true,
"globalProperty": {
"modelTests": false,
"apiTests": false,
"modelDocs": false,
"apiDocs": false
},
"additionalProperties": {
"packageName": "BeamPlayerClient",
"apiName": "BeamPlayerApi",
"classPrefix": "Player",
"returnICollection": true,
"optionalMethodArgument": false,
"nullableReferenceTypes": true,
"netCoreProjectFile": true
}
}
}
}
}