We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a20242 commit e13e549Copy full SHA for e13e549
modules/swagger-models/src/main/java/com/wordnik/swagger/models/properties/LongProperty.java
@@ -30,6 +30,10 @@ public LongProperty _default(String _default) {
30
}
31
return this;
32
33
+ public LongProperty _default(Long _default) {
34
+ this.setDefault(_default);
35
+ return this;
36
+ }
37
38
public static boolean isType(String type, String format) {
39
if("integer".equals(type) && "int64".equals(format))
0 commit comments