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:
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
|
|||||||
**defaultBranch** | **String** | | [optional]
|
**defaultBranch** | **String** | | [optional]
|
||||||
**defaultDeleteBranchAfterMerge** | **Boolean** | | [optional]
|
**defaultDeleteBranchAfterMerge** | **Boolean** | | [optional]
|
||||||
**defaultMergeStyle** | **String** | | [optional]
|
**defaultMergeStyle** | **String** | | [optional]
|
||||||
|
**defaultTargetBranch** | **String** | | [optional]
|
||||||
**description** | **String** | | [optional]
|
**description** | **String** | | [optional]
|
||||||
**empty** | **Boolean** | | [optional]
|
**empty** | **Boolean** | | [optional]
|
||||||
**externalTracker** | [**ExternalTracker**](ExternalTracker.md) | | [optional]
|
**externalTracker** | [**ExternalTracker**](ExternalTracker.md) | | [optional]
|
||||||
|
|||||||
@@ -81,6 +81,9 @@ public class Repository implements Serializable {
|
|||||||
@SerializedName("default_merge_style")
|
@SerializedName("default_merge_style")
|
||||||
private String defaultMergeStyle = null;
|
private String defaultMergeStyle = null;
|
||||||
|
|
||||||
|
@SerializedName("default_target_branch")
|
||||||
|
private String defaultTargetBranch = null;
|
||||||
|
|
||||||
@SerializedName("description")
|
@SerializedName("description")
|
||||||
private String description = null;
|
private String description = null;
|
||||||
|
|
||||||
@@ -593,6 +596,25 @@ public class Repository implements Serializable {
|
|||||||
this.defaultMergeStyle = defaultMergeStyle;
|
this.defaultMergeStyle = defaultMergeStyle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Repository defaultTargetBranch(String defaultTargetBranch) {
|
||||||
|
this.defaultTargetBranch = defaultTargetBranch;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get defaultTargetBranch
|
||||||
|
*
|
||||||
|
* @return defaultTargetBranch
|
||||||
|
*/
|
||||||
|
@Schema(description = "")
|
||||||
|
public String getDefaultTargetBranch() {
|
||||||
|
return defaultTargetBranch;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDefaultTargetBranch(String defaultTargetBranch) {
|
||||||
|
this.defaultTargetBranch = defaultTargetBranch;
|
||||||
|
}
|
||||||
|
|
||||||
public Repository description(String description) {
|
public Repository description(String description) {
|
||||||
this.description = description;
|
this.description = description;
|
||||||
return this;
|
return this;
|
||||||
@@ -1548,6 +1570,7 @@ public class Repository implements Serializable {
|
|||||||
&& Objects.equals(
|
&& Objects.equals(
|
||||||
this.defaultDeleteBranchAfterMerge, repository.defaultDeleteBranchAfterMerge)
|
this.defaultDeleteBranchAfterMerge, repository.defaultDeleteBranchAfterMerge)
|
||||||
&& Objects.equals(this.defaultMergeStyle, repository.defaultMergeStyle)
|
&& Objects.equals(this.defaultMergeStyle, repository.defaultMergeStyle)
|
||||||
|
&& Objects.equals(this.defaultTargetBranch, repository.defaultTargetBranch)
|
||||||
&& Objects.equals(this.description, repository.description)
|
&& Objects.equals(this.description, repository.description)
|
||||||
&& Objects.equals(this.empty, repository.empty)
|
&& Objects.equals(this.empty, repository.empty)
|
||||||
&& Objects.equals(this.externalTracker, repository.externalTracker)
|
&& Objects.equals(this.externalTracker, repository.externalTracker)
|
||||||
@@ -1618,6 +1641,7 @@ public class Repository implements Serializable {
|
|||||||
defaultBranch,
|
defaultBranch,
|
||||||
defaultDeleteBranchAfterMerge,
|
defaultDeleteBranchAfterMerge,
|
||||||
defaultMergeStyle,
|
defaultMergeStyle,
|
||||||
|
defaultTargetBranch,
|
||||||
description,
|
description,
|
||||||
empty,
|
empty,
|
||||||
externalTracker,
|
externalTracker,
|
||||||
@@ -1700,6 +1724,9 @@ public class Repository implements Serializable {
|
|||||||
.append(toIndentedString(defaultDeleteBranchAfterMerge))
|
.append(toIndentedString(defaultDeleteBranchAfterMerge))
|
||||||
.append("\n");
|
.append("\n");
|
||||||
sb.append(" defaultMergeStyle: ").append(toIndentedString(defaultMergeStyle)).append("\n");
|
sb.append(" defaultMergeStyle: ").append(toIndentedString(defaultMergeStyle)).append("\n");
|
||||||
|
sb.append(" defaultTargetBranch: ")
|
||||||
|
.append(toIndentedString(defaultTargetBranch))
|
||||||
|
.append("\n");
|
||||||
sb.append(" description: ").append(toIndentedString(description)).append("\n");
|
sb.append(" description: ").append(toIndentedString(description)).append("\n");
|
||||||
sb.append(" empty: ").append(toIndentedString(empty)).append("\n");
|
sb.append(" empty: ").append(toIndentedString(empty)).append("\n");
|
||||||
sb.append(" externalTracker: ").append(toIndentedString(externalTracker)).append("\n");
|
sb.append(" externalTracker: ").append(toIndentedString(externalTracker)).append("\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user