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:
@@ -24,6 +24,7 @@ Name | Type | Description | Notes
|
||||
**ref** | **String** | | [optional]
|
||||
**repository** | [**RepositoryMeta**](RepositoryMeta.md) | | [optional]
|
||||
**state** | **String** | | [optional]
|
||||
**timeEstimate** | **Long** | | [optional]
|
||||
**title** | **String** | | [optional]
|
||||
**updatedAt** | [**Date**](Date.md) | | [optional]
|
||||
**url** | **String** | | [optional]
|
||||
|
||||
@@ -88,6 +88,9 @@ public class Issue implements Serializable {
|
||||
@SerializedName("state")
|
||||
private String state = null;
|
||||
|
||||
@SerializedName("time_estimate")
|
||||
private Long timeEstimate = null;
|
||||
|
||||
@SerializedName("title")
|
||||
private String title = null;
|
||||
|
||||
@@ -523,6 +526,25 @@ public class Issue implements Serializable {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public Issue timeEstimate(Long timeEstimate) {
|
||||
this.timeEstimate = timeEstimate;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get timeEstimate
|
||||
*
|
||||
* @return timeEstimate
|
||||
*/
|
||||
@Schema(description = "")
|
||||
public Long getTimeEstimate() {
|
||||
return timeEstimate;
|
||||
}
|
||||
|
||||
public void setTimeEstimate(Long timeEstimate) {
|
||||
this.timeEstimate = timeEstimate;
|
||||
}
|
||||
|
||||
public Issue title(String title) {
|
||||
this.title = title;
|
||||
return this;
|
||||
@@ -629,6 +651,7 @@ public class Issue implements Serializable {
|
||||
&& Objects.equals(this.ref, issue.ref)
|
||||
&& Objects.equals(this.repository, issue.repository)
|
||||
&& Objects.equals(this.state, issue.state)
|
||||
&& Objects.equals(this.timeEstimate, issue.timeEstimate)
|
||||
&& Objects.equals(this.title, issue.title)
|
||||
&& Objects.equals(this.updatedAt, issue.updatedAt)
|
||||
&& Objects.equals(this.url, issue.url)
|
||||
@@ -659,6 +682,7 @@ public class Issue implements Serializable {
|
||||
ref,
|
||||
repository,
|
||||
state,
|
||||
timeEstimate,
|
||||
title,
|
||||
updatedAt,
|
||||
url,
|
||||
@@ -691,6 +715,7 @@ public class Issue implements Serializable {
|
||||
sb.append(" ref: ").append(toIndentedString(ref)).append("\n");
|
||||
sb.append(" repository: ").append(toIndentedString(repository)).append("\n");
|
||||
sb.append(" state: ").append(toIndentedString(state)).append("\n");
|
||||
sb.append(" timeEstimate: ").append(toIndentedString(timeEstimate)).append("\n");
|
||||
sb.append(" title: ").append(toIndentedString(title)).append("\n");
|
||||
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
|
||||
sb.append(" url: ").append(toIndentedString(url)).append("\n");
|
||||
|
||||
Reference in New Issue
Block a user