mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 07:01:55 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -4,3 +4,4 @@
|
|||||||
Name | Type | Description | Notes
|
Name | Type | Description | Notes
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
**branch** | **String** | | [optional]
|
**branch** | **String** | | [optional]
|
||||||
|
**ffOnly** | **Boolean** | | [optional]
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ public class MergeUpstreamRequest implements Serializable {
|
|||||||
@SerializedName("branch")
|
@SerializedName("branch")
|
||||||
private String branch = null;
|
private String branch = null;
|
||||||
|
|
||||||
|
@SerializedName("ff_only")
|
||||||
|
private Boolean ffOnly = null;
|
||||||
|
|
||||||
public MergeUpstreamRequest branch(String branch) {
|
public MergeUpstreamRequest branch(String branch) {
|
||||||
this.branch = branch;
|
this.branch = branch;
|
||||||
return this;
|
return this;
|
||||||
@@ -43,6 +46,25 @@ public class MergeUpstreamRequest implements Serializable {
|
|||||||
this.branch = branch;
|
this.branch = branch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public MergeUpstreamRequest ffOnly(Boolean ffOnly) {
|
||||||
|
this.ffOnly = ffOnly;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get ffOnly
|
||||||
|
*
|
||||||
|
* @return ffOnly
|
||||||
|
*/
|
||||||
|
@Schema(description = "")
|
||||||
|
public Boolean isFfOnly() {
|
||||||
|
return ffOnly;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFfOnly(Boolean ffOnly) {
|
||||||
|
this.ffOnly = ffOnly;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(java.lang.Object o) {
|
public boolean equals(java.lang.Object o) {
|
||||||
if (this == o) {
|
if (this == o) {
|
||||||
@@ -52,12 +74,13 @@ public class MergeUpstreamRequest implements Serializable {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
MergeUpstreamRequest mergeUpstreamRequest = (MergeUpstreamRequest) o;
|
MergeUpstreamRequest mergeUpstreamRequest = (MergeUpstreamRequest) o;
|
||||||
return Objects.equals(this.branch, mergeUpstreamRequest.branch);
|
return Objects.equals(this.branch, mergeUpstreamRequest.branch)
|
||||||
|
&& Objects.equals(this.ffOnly, mergeUpstreamRequest.ffOnly);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(branch);
|
return Objects.hash(branch, ffOnly);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -66,6 +89,7 @@ public class MergeUpstreamRequest implements Serializable {
|
|||||||
sb.append("class MergeUpstreamRequest {\n");
|
sb.append("class MergeUpstreamRequest {\n");
|
||||||
|
|
||||||
sb.append(" branch: ").append(toIndentedString(branch)).append("\n");
|
sb.append(" branch: ").append(toIndentedString(branch)).append("\n");
|
||||||
|
sb.append(" ffOnly: ").append(toIndentedString(ffOnly)).append("\n");
|
||||||
sb.append("}");
|
sb.append("}");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user