Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
2c9eb31e88
|
@ -134,6 +134,11 @@ public class ApiMethodDoc implements Serializable {
|
|||
*/
|
||||
private List<ApiParam> responseParams;
|
||||
|
||||
/**
|
||||
* method deprecated
|
||||
*/
|
||||
private boolean deprecated;
|
||||
|
||||
|
||||
public String getMethodId() {
|
||||
return methodId;
|
||||
|
@ -278,4 +283,12 @@ public class ApiMethodDoc implements Serializable {
|
|||
public void setRequestExample(ApiRequestExample requestExample) {
|
||||
this.requestExample = requestExample;
|
||||
}
|
||||
|
||||
public boolean isDeprecated() {
|
||||
return deprecated;
|
||||
}
|
||||
|
||||
public void setDeprecated(boolean deprecated) {
|
||||
this.deprecated = deprecated;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue