-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathopenapitools.json
More file actions
50 lines (50 loc) · 1.63 KB
/
Copy pathopenapitools.json
File metadata and controls
50 lines (50 loc) · 1.63 KB
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
{
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "7.21.0",
"generators": {
"kotlin": {
"generatorName": "kotlin",
"inputSpec": "http://localhost:3000/docs/openapi.json",
"output": "sdk",
"library": "jvm-retrofit2",
"additionalProperties": {
"packageName": "com.mobilemoney.sdk",
"invokerPackage": "com.mobilemoney.sdk",
"apiPackage": "com.mobilemoney.sdk.api",
"modelPackage": "com.mobilemoney.sdk.models",
"sourceFolder": "src/main/kotlin",
"artifactId": "mobile-money-sdk",
"artifactVersion": "1.0.0",
"enumPropertyNaming": "original",
"modelPropertyNaming": "camelCase",
"dateLibrary": "java8",
"serializationLibrary": "gson",
"useCoroutines": true,
"omitGradleWrapper": true,
"hideGenerationTimestamp": true,
"useRxJava3": false,
"useAndroidMavenGradlePlugin": true,
"androidSupport": true
}
},
"python": {
"generatorName": "python",
"inputSpec": "http://localhost:3000/docs/openapi.json",
"output": "sdk/python",
"additionalProperties": {
"packageName": "mobile_money_sdk",
"projectName": "mobile-money-sdk",
"projectVersion": "1.0.0"
}
},
"typescript": {
"generatorName": "typescript-axios",
"inputSpec": "http://localhost:3000/docs/openapi.json",
"output": "sdk-ts",
"configFile": "sdk-config-ts.yaml"
}
}
}
}