forked from loafle/openapi-generator-original
Support for discriminator.mapping (#536)
This commit is contained in:
committed by
Jérémie Bresson
parent
478d6ced4e
commit
0a52f56ba4
@@ -1 +1 @@
|
||||
3.0.0-SNAPSHOT
|
||||
3.1.1-SNAPSHOT
|
||||
@@ -158,7 +158,7 @@ public class Order {
|
||||
* Get complete
|
||||
* @return complete
|
||||
**/
|
||||
public Boolean isComplete() {
|
||||
public Boolean getComplete() {
|
||||
return complete;
|
||||
}
|
||||
|
||||
|
||||
@@ -108,13 +108,14 @@
|
||||
"in" : "query",
|
||||
"description" : "Status values that need to be considered for filter",
|
||||
"required" : true,
|
||||
"style" : "form",
|
||||
"explode" : false,
|
||||
"schema" : {
|
||||
"type" : "array",
|
||||
"items" : {
|
||||
"type" : "string",
|
||||
"default" : "available",
|
||||
"enum" : [ "available", "pending", "sold" ]
|
||||
"enum" : [ "available", "pending", "sold" ],
|
||||
"default" : "available"
|
||||
}
|
||||
}
|
||||
} ],
|
||||
@@ -162,6 +163,7 @@
|
||||
"in" : "query",
|
||||
"description" : "Tags to filter by",
|
||||
"required" : true,
|
||||
"style" : "form",
|
||||
"explode" : false,
|
||||
"schema" : {
|
||||
"type" : "array",
|
||||
|
||||
Reference in New Issue
Block a user