mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-17 23:20:39 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -63,6 +63,9 @@ public class Repository implements Serializable {
|
||||
@SerializedName("avatar_url")
|
||||
private String avatarUrl = null;
|
||||
|
||||
@SerializedName("branch_count")
|
||||
private Long branchCount = null;
|
||||
|
||||
@SerializedName("clone_url")
|
||||
private String cloneUrl = null;
|
||||
|
||||
@@ -482,6 +485,25 @@ public class Repository implements Serializable {
|
||||
this.avatarUrl = avatarUrl;
|
||||
}
|
||||
|
||||
public Repository branchCount(Long branchCount) {
|
||||
this.branchCount = branchCount;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get branchCount
|
||||
*
|
||||
* @return branchCount
|
||||
*/
|
||||
@Schema(description = "")
|
||||
public Long getBranchCount() {
|
||||
return branchCount;
|
||||
}
|
||||
|
||||
public void setBranchCount(Long branchCount) {
|
||||
this.branchCount = branchCount;
|
||||
}
|
||||
|
||||
public Repository cloneUrl(String cloneUrl) {
|
||||
this.cloneUrl = cloneUrl;
|
||||
return this;
|
||||
@@ -1563,6 +1585,7 @@ public class Repository implements Serializable {
|
||||
&& Objects.equals(this.archivedAt, repository.archivedAt)
|
||||
&& Objects.equals(this.autodetectManualMerge, repository.autodetectManualMerge)
|
||||
&& Objects.equals(this.avatarUrl, repository.avatarUrl)
|
||||
&& Objects.equals(this.branchCount, repository.branchCount)
|
||||
&& Objects.equals(this.cloneUrl, repository.cloneUrl)
|
||||
&& Objects.equals(this.createdAt, repository.createdAt)
|
||||
&& Objects.equals(this.defaultAllowMaintainerEdit, repository.defaultAllowMaintainerEdit)
|
||||
@@ -1635,6 +1658,7 @@ public class Repository implements Serializable {
|
||||
archivedAt,
|
||||
autodetectManualMerge,
|
||||
avatarUrl,
|
||||
branchCount,
|
||||
cloneUrl,
|
||||
createdAt,
|
||||
defaultAllowMaintainerEdit,
|
||||
@@ -1714,6 +1738,7 @@ public class Repository implements Serializable {
|
||||
.append(toIndentedString(autodetectManualMerge))
|
||||
.append("\n");
|
||||
sb.append(" avatarUrl: ").append(toIndentedString(avatarUrl)).append("\n");
|
||||
sb.append(" branchCount: ").append(toIndentedString(branchCount)).append("\n");
|
||||
sb.append(" cloneUrl: ").append(toIndentedString(cloneUrl)).append("\n");
|
||||
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
|
||||
sb.append(" defaultAllowMaintainerEdit: ")
|
||||
|
||||
Reference in New Issue
Block a user