Skip to content

Commit 5dcd76d

Browse files
authored
add decimal support to R client generator (#10487)
1 parent 26ffab1 commit 5dcd76d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/RClientCodegen.java

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ public RClientCodegen() {
133133
typeMapping.put("number", "numeric");
134134
typeMapping.put("float", "numeric");
135135
typeMapping.put("double", "numeric");
136+
typeMapping.put("decimal", "numeric");
136137
typeMapping.put("boolean", "character");
137138
typeMapping.put("string", "character");
138139
typeMapping.put("UUID", "character");

0 commit comments

Comments
 (0)