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:
@@ -15,4 +15,5 @@ Name | Type | Description | Notes
|
||||
**state** | **String** | | [optional]
|
||||
**submittedAt** | [**Date**](Date.md) | | [optional]
|
||||
**team** | [**Team**](Team.md) | | [optional]
|
||||
**updatedAt** | [**Date**](Date.md) | | [optional]
|
||||
**user** | [**User**](User.md) | | [optional]
|
||||
|
||||
@@ -59,6 +59,9 @@ public class PullReview implements Serializable {
|
||||
@SerializedName("team")
|
||||
private Team team = null;
|
||||
|
||||
@SerializedName("updated_at")
|
||||
private Date updatedAt = null;
|
||||
|
||||
@SerializedName("user")
|
||||
private User user = null;
|
||||
|
||||
@@ -290,6 +293,25 @@ public class PullReview implements Serializable {
|
||||
this.team = team;
|
||||
}
|
||||
|
||||
public PullReview updatedAt(Date updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get updatedAt
|
||||
*
|
||||
* @return updatedAt
|
||||
*/
|
||||
@Schema(description = "")
|
||||
public Date getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
|
||||
public void setUpdatedAt(Date updatedAt) {
|
||||
this.updatedAt = updatedAt;
|
||||
}
|
||||
|
||||
public PullReview user(User user) {
|
||||
this.user = user;
|
||||
return this;
|
||||
@@ -330,6 +352,7 @@ public class PullReview implements Serializable {
|
||||
&& Objects.equals(this.state, pullReview.state)
|
||||
&& Objects.equals(this.submittedAt, pullReview.submittedAt)
|
||||
&& Objects.equals(this.team, pullReview.team)
|
||||
&& Objects.equals(this.updatedAt, pullReview.updatedAt)
|
||||
&& Objects.equals(this.user, pullReview.user);
|
||||
}
|
||||
|
||||
@@ -348,6 +371,7 @@ public class PullReview implements Serializable {
|
||||
state,
|
||||
submittedAt,
|
||||
team,
|
||||
updatedAt,
|
||||
user);
|
||||
}
|
||||
|
||||
@@ -368,6 +392,7 @@ public class PullReview implements Serializable {
|
||||
sb.append(" state: ").append(toIndentedString(state)).append("\n");
|
||||
sb.append(" submittedAt: ").append(toIndentedString(submittedAt)).append("\n");
|
||||
sb.append(" team: ").append(toIndentedString(team)).append("\n");
|
||||
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
|
||||
sb.append(" user: ").append(toIndentedString(user)).append("\n");
|
||||
sb.append("}");
|
||||
return sb.toString();
|
||||
|
||||
Reference in New Issue
Block a user