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
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**message** | **String** | | [optional]
|
||||
**priors** | **Boolean** | | [optional]
|
||||
|
||||
@@ -25,6 +25,9 @@ public class DismissPullReviewOptions implements Serializable {
|
||||
@SerializedName("message")
|
||||
private String message = null;
|
||||
|
||||
@SerializedName("priors")
|
||||
private Boolean priors = null;
|
||||
|
||||
public DismissPullReviewOptions message(String message) {
|
||||
this.message = message;
|
||||
return this;
|
||||
@@ -44,6 +47,25 @@ public class DismissPullReviewOptions implements Serializable {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public DismissPullReviewOptions priors(Boolean priors) {
|
||||
this.priors = priors;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get priors
|
||||
*
|
||||
* @return priors
|
||||
*/
|
||||
@Schema(description = "")
|
||||
public Boolean isPriors() {
|
||||
return priors;
|
||||
}
|
||||
|
||||
public void setPriors(Boolean priors) {
|
||||
this.priors = priors;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(java.lang.Object o) {
|
||||
if (this == o) {
|
||||
@@ -53,12 +75,13 @@ public class DismissPullReviewOptions implements Serializable {
|
||||
return false;
|
||||
}
|
||||
DismissPullReviewOptions dismissPullReviewOptions = (DismissPullReviewOptions) o;
|
||||
return Objects.equals(this.message, dismissPullReviewOptions.message);
|
||||
return Objects.equals(this.message, dismissPullReviewOptions.message)
|
||||
&& Objects.equals(this.priors, dismissPullReviewOptions.priors);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(message);
|
||||
return Objects.hash(message, priors);
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -67,6 +90,7 @@ public class DismissPullReviewOptions implements Serializable {
|
||||
sb.append("class DismissPullReviewOptions {\n");
|
||||
|
||||
sb.append(" message: ").append(toIndentedString(message)).append("\n");
|
||||
sb.append(" priors: ").append(toIndentedString(priors)).append("\n");
|
||||
sb.append("}");
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user