Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2025-09-17 00:07:59 +00:00
parent 551e6b76d2
commit 3dc94928fe
2 changed files with 26 additions and 0 deletions
+1
View File
@@ -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");