Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public AdditionalPropertiesClass mapProperty(Map<String, String> mapProperty) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("map_property")
public Map<String, String> getMapProperty() {
return mapProperty;
Expand All @@ -46,7 +46,7 @@ public AdditionalPropertiesClass mapOfMapProperty(Map<String, Map<String, String
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("map_of_map_property")
public Map<String, Map<String, String>> getMapOfMapProperty() {
return mapOfMapProperty;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public Animal className(String className) {
}


@ApiModelProperty(example = "null", required = true, value = "")
@ApiModelProperty(required = true, value = "")
@JsonProperty("className")
public String getClassName() {
return className;
Expand All @@ -45,7 +45,7 @@ public Animal color(String color) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("color")
public String getColor() {
return color;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ArrayOfArrayOfNumberOnly arrayArrayNumber(List<List<BigDecimal>> arrayArr
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("ArrayArrayNumber")
public List<List<BigDecimal>> getArrayArrayNumber() {
return arrayArrayNumber;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ArrayOfNumberOnly arrayNumber(List<BigDecimal> arrayNumber) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("ArrayNumber")
public List<BigDecimal> getArrayNumber() {
return arrayNumber;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public ArrayTest arrayOfString(List<String> arrayOfString) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("array_of_string")
public List<String> getArrayOfString() {
return arrayOfString;
Expand All @@ -49,7 +49,7 @@ public ArrayTest arrayArrayOfInteger(List<List<Long>> arrayArrayOfInteger) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("array_array_of_integer")
public List<List<Long>> getArrayArrayOfInteger() {
return arrayArrayOfInteger;
Expand All @@ -66,7 +66,7 @@ public ArrayTest arrayArrayOfModel(List<List<ReadOnlyFirst>> arrayArrayOfModel)
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("array_array_of_model")
public List<List<ReadOnlyFirst>> getArrayArrayOfModel() {
return arrayArrayOfModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public Capitalization smallCamel(String smallCamel) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("smallCamel")
public String getSmallCamel() {
return smallCamel;
Expand All @@ -55,7 +55,7 @@ public Capitalization capitalCamel(String capitalCamel) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("CapitalCamel")
public String getCapitalCamel() {
return capitalCamel;
Expand All @@ -72,7 +72,7 @@ public Capitalization smallSnake(String smallSnake) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("small_Snake")
public String getSmallSnake() {
return smallSnake;
Expand All @@ -89,7 +89,7 @@ public Capitalization capitalSnake(String capitalSnake) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("Capital_Snake")
public String getCapitalSnake() {
return capitalSnake;
Expand All @@ -106,7 +106,7 @@ public Capitalization scAETHFlowPoints(String scAETHFlowPoints) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("SCA_ETH_Flow_Points")
public String getScAETHFlowPoints() {
return scAETHFlowPoints;
Expand All @@ -124,7 +124,7 @@ public Capitalization ATT_NAME(String ATT_NAME) {
}


@ApiModelProperty(example = "null", value = "Name of the pet ")
@ApiModelProperty(value = "Name of the pet ")
@JsonProperty("ATT_NAME")
public String getATTNAME() {
return ATT_NAME;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public Cat declawed(Boolean declawed) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("declawed")
public Boolean getDeclawed() {
return declawed;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public Category id(Long id) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("id")
public Long getId() {
return id;
Expand All @@ -43,7 +43,7 @@ public Category name(String name) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("name")
public String getName() {
return name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ClassModel propertyClass(String propertyClass) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("_class")
public String getPropertyClass() {
return propertyClass;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public Client client(String client) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("client")
public String getClient() {
return client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public Dog breed(String breed) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("breed")
public String getBreed() {
return breed;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public EnumArrays justSymbol(JustSymbolEnum justSymbol) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("just_symbol")
public JustSymbolEnum getJustSymbol() {
return justSymbol;
Expand All @@ -108,7 +108,7 @@ public EnumArrays arrayEnum(List<ArrayEnumEnum> arrayEnum) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("array_enum")
public List<ArrayEnumEnum> getArrayEnum() {
return arrayEnum;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public EnumTest enumString(EnumStringEnum enumString) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("enum_string")
public EnumStringEnum getEnumString() {
return enumString;
Expand All @@ -146,7 +146,7 @@ public EnumTest enumInteger(EnumIntegerEnum enumInteger) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("enum_integer")
public EnumIntegerEnum getEnumInteger() {
return enumInteger;
Expand All @@ -163,7 +163,7 @@ public EnumTest enumNumber(EnumNumberEnum enumNumber) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("enum_number")
public EnumNumberEnum getEnumNumber() {
return enumNumber;
Expand All @@ -180,7 +180,7 @@ public EnumTest outerEnum(OuterEnum outerEnum) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("outerEnum")
public OuterEnum getOuterEnum() {
return outerEnum;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public FormatTest integer(Integer integer) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("integer")
public Integer getInteger() {
return integer;
Expand All @@ -83,7 +83,7 @@ public FormatTest int32(Integer int32) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("int32")
public Integer getInt32() {
return int32;
Expand All @@ -100,7 +100,7 @@ public FormatTest int64(Long int64) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("int64")
public Long getInt64() {
return int64;
Expand All @@ -119,7 +119,7 @@ public FormatTest number(BigDecimal number) {
}


@ApiModelProperty(example = "null", required = true, value = "")
@ApiModelProperty(required = true, value = "")
@JsonProperty("number")
public BigDecimal getNumber() {
return number;
Expand All @@ -138,7 +138,7 @@ public FormatTest _float(Float _float) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("float")
public Float getFloat() {
return _float;
Expand All @@ -157,7 +157,7 @@ public FormatTest _double(Double _double) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("double")
public Double getDouble() {
return _double;
Expand All @@ -174,7 +174,7 @@ public FormatTest string(String string) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("string")
public String getString() {
return string;
Expand All @@ -191,7 +191,7 @@ public FormatTest _byte(byte[] _byte) {
}


@ApiModelProperty(example = "null", required = true, value = "")
@ApiModelProperty(required = true, value = "")
@JsonProperty("byte")
public byte[] getByte() {
return _byte;
Expand All @@ -208,7 +208,7 @@ public FormatTest binary(byte[] binary) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("binary")
public byte[] getBinary() {
return binary;
Expand All @@ -225,7 +225,7 @@ public FormatTest date(Date date) {
}


@ApiModelProperty(example = "null", required = true, value = "")
@ApiModelProperty(required = true, value = "")
@JsonProperty("date")
public Date getDate() {
return date;
Expand All @@ -242,7 +242,7 @@ public FormatTest dateTime(Date dateTime) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("dateTime")
public Date getDateTime() {
return dateTime;
Expand All @@ -259,7 +259,7 @@ public FormatTest uuid(UUID uuid) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("uuid")
public UUID getUuid() {
return uuid;
Expand All @@ -276,7 +276,7 @@ public FormatTest password(String password) {
}


@ApiModelProperty(example = "null", required = true, value = "")
@ApiModelProperty(required = true, value = "")
@JsonProperty("password")
public String getPassword() {
return password;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public HasOnlyReadOnly bar(String bar) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("bar")
public String getBar() {
return bar;
Expand All @@ -43,7 +43,7 @@ public HasOnlyReadOnly foo(String foo) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("foo")
public String getFoo() {
return foo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public MapTest mapMapOfString(Map<String, Map<String, String>> mapMapOfString) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("map_map_of_string")
public Map<String, Map<String, String>> getMapMapOfString() {
return mapMapOfString;
Expand All @@ -78,7 +78,7 @@ public MapTest mapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
}


@ApiModelProperty(example = "null", value = "")
@ApiModelProperty(value = "")
@JsonProperty("map_of_enum_string")
public Map<String, InnerEnum> getMapOfEnumString() {
return mapOfEnumString;
Expand Down
Loading