mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-17 15:10:40 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -34,11 +34,11 @@ public class APIError implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get message
|
||||
* Message contains the error description
|
||||
*
|
||||
* @return message
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Message contains the error description")
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
@@ -53,11 +53,11 @@ public class APIError implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL contains the documentation URL for this error
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL contains the documentation URL for this error")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -51,11 +51,11 @@ public class AccessToken implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get createdAt
|
||||
* The timestamp when the token was created
|
||||
*
|
||||
* @return createdAt
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The timestamp when the token was created")
|
||||
public Date getCreatedAt() {
|
||||
return createdAt;
|
||||
}
|
||||
@@ -70,11 +70,11 @@ public class AccessToken implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the access token
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the access token")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -89,11 +89,11 @@ public class AccessToken implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lastUsedAt
|
||||
* The timestamp when the token was last used
|
||||
*
|
||||
* @return lastUsedAt
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The timestamp when the token was last used")
|
||||
public Date getLastUsedAt() {
|
||||
return lastUsedAt;
|
||||
}
|
||||
@@ -108,11 +108,11 @@ public class AccessToken implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The name of the access token
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the access token")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -135,11 +135,11 @@ public class AccessToken implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get scopes
|
||||
* The scopes granted to this access token
|
||||
*
|
||||
* @return scopes
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The scopes granted to this access token")
|
||||
public List<String> getScopes() {
|
||||
return scopes;
|
||||
}
|
||||
@@ -154,11 +154,11 @@ public class AccessToken implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha1
|
||||
* The SHA1 hash of the access token
|
||||
*
|
||||
* @return sha1
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA1 hash of the access token")
|
||||
public String getSha1() {
|
||||
return sha1;
|
||||
}
|
||||
@@ -173,11 +173,11 @@ public class AccessToken implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get tokenLastEight
|
||||
* The last eight characters of the token
|
||||
*
|
||||
* @return tokenLastEight
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The last eight characters of the token")
|
||||
public String getTokenLastEight() {
|
||||
return tokenLastEight;
|
||||
}
|
||||
|
||||
@@ -87,11 +87,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get displayTitle
|
||||
* DisplayTitle is the display title for the workflow run
|
||||
*
|
||||
* @return displayTitle
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DisplayTitle is the display title for the workflow run")
|
||||
public String getDisplayTitle() {
|
||||
return displayTitle;
|
||||
}
|
||||
@@ -106,11 +106,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get event
|
||||
* Event is the type of event that triggered the workflow
|
||||
*
|
||||
* @return event
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Event is the type of event that triggered the workflow")
|
||||
public String getEvent() {
|
||||
return event;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get headBranch
|
||||
* HeadBranch is the branch that triggered the workflow
|
||||
*
|
||||
* @return headBranch
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HeadBranch is the branch that triggered the workflow")
|
||||
public String getHeadBranch() {
|
||||
return headBranch;
|
||||
}
|
||||
@@ -144,11 +144,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get headSha
|
||||
* HeadSHA is the commit SHA that triggered the workflow
|
||||
*
|
||||
* @return headSha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HeadSHA is the commit SHA that triggered the workflow")
|
||||
public String getHeadSha() {
|
||||
return headSha;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the action task
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the action task")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -182,11 +182,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the name of the workflow
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the name of the workflow")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -201,11 +201,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get runNumber
|
||||
* RunNumber is the sequential number of the workflow run
|
||||
*
|
||||
* @return runNumber
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "RunNumber is the sequential number of the workflow run")
|
||||
public Long getRunNumber() {
|
||||
return runNumber;
|
||||
}
|
||||
@@ -239,11 +239,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get status
|
||||
* Status indicates the current status of the workflow run
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Status indicates the current status of the workflow run")
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
@@ -277,11 +277,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this workflow run
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this workflow run")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
@@ -296,11 +296,11 @@ public class ActionTask implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get workflowId
|
||||
* WorkflowID is the identifier of the workflow
|
||||
*
|
||||
* @return workflowId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "WorkflowID is the identifier of the workflow")
|
||||
public String getWorkflowId() {
|
||||
return workflowId;
|
||||
}
|
||||
|
||||
@@ -36,11 +36,11 @@ public class ActionTaskResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get totalCount
|
||||
* TotalCount is the total number of workflow runs
|
||||
*
|
||||
* @return totalCount
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "TotalCount is the total number of workflow runs")
|
||||
public Long getTotalCount() {
|
||||
return totalCount;
|
||||
}
|
||||
@@ -63,11 +63,11 @@ public class ActionTaskResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get workflowRuns
|
||||
* Entries contains the list of workflow runs
|
||||
*
|
||||
* @return workflowRuns
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Entries contains the list of workflow runs")
|
||||
public List<ActionTask> getWorkflowRuns() {
|
||||
return workflowRuns;
|
||||
}
|
||||
|
||||
@@ -59,11 +59,11 @@ public class ActionWorkflow implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get badgeUrl
|
||||
* BadgeURL is the URL for the workflow badge
|
||||
*
|
||||
* @return badgeUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "BadgeURL is the URL for the workflow badge")
|
||||
public String getBadgeUrl() {
|
||||
return badgeUrl;
|
||||
}
|
||||
@@ -116,11 +116,11 @@ public class ActionWorkflow implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* HTMLURL is the web URL for viewing the workflow
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for viewing the workflow")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -135,11 +135,11 @@ public class ActionWorkflow implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the workflow
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the workflow")
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -154,11 +154,11 @@ public class ActionWorkflow implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the name of the workflow
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the name of the workflow")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -173,11 +173,11 @@ public class ActionWorkflow implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get path
|
||||
* Path is the file path of the workflow
|
||||
*
|
||||
* @return path
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Path is the file path of the workflow")
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
@@ -192,11 +192,11 @@ public class ActionWorkflow implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get state
|
||||
* State indicates if the workflow is active or disabled
|
||||
*
|
||||
* @return state
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "State indicates if the workflow is active or disabled")
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
@@ -230,11 +230,11 @@ public class ActionWorkflow implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this workflow
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this workflow")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -161,11 +161,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get actUserId
|
||||
* The ID of the user who performed the action
|
||||
*
|
||||
* @return actUserId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The ID of the user who performed the action")
|
||||
public Long getActUserId() {
|
||||
return actUserId;
|
||||
}
|
||||
@@ -199,11 +199,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get commentId
|
||||
* The ID of the comment associated with the activity (if applicable)
|
||||
*
|
||||
* @return commentId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The ID of the comment associated with the activity (if applicable)")
|
||||
public Long getCommentId() {
|
||||
return commentId;
|
||||
}
|
||||
@@ -218,11 +218,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get content
|
||||
* Additional content or details about the activity
|
||||
*
|
||||
* @return content
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Additional content or details about the activity")
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
@@ -237,11 +237,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get created
|
||||
* The date and time when the activity occurred
|
||||
*
|
||||
* @return created
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The date and time when the activity occurred")
|
||||
public Date getCreated() {
|
||||
return created;
|
||||
}
|
||||
@@ -256,11 +256,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the activity
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the activity")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -275,11 +275,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get isPrivate
|
||||
* Whether this activity is from a private repository
|
||||
*
|
||||
* @return isPrivate
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether this activity is from a private repository")
|
||||
public Boolean isIsPrivate() {
|
||||
return isPrivate;
|
||||
}
|
||||
@@ -313,11 +313,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get refName
|
||||
* The name of the git reference (branch/tag) associated with the activity
|
||||
*
|
||||
* @return refName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the git reference (branch/tag) associated with the activity")
|
||||
public String getRefName() {
|
||||
return refName;
|
||||
}
|
||||
@@ -351,11 +351,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get repoId
|
||||
* The ID of the repository associated with the activity
|
||||
*
|
||||
* @return repoId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The ID of the repository associated with the activity")
|
||||
public Long getRepoId() {
|
||||
return repoId;
|
||||
}
|
||||
@@ -370,11 +370,11 @@ public class Activity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get userId
|
||||
* The ID of the user who receives/sees this activity
|
||||
*
|
||||
* @return userId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The ID of the user who receives/sees this activity")
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
@@ -31,11 +31,11 @@ public class ActivityPub implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get _atContext
|
||||
* Context defines the JSON-LD context for ActivityPub
|
||||
*
|
||||
* @return _atContext
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Context defines the JSON-LD context for ActivityPub")
|
||||
public String getAtContext() {
|
||||
return _atContext;
|
||||
}
|
||||
|
||||
@@ -49,11 +49,11 @@ public class AnnotatedTag implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get message
|
||||
* The message associated with the annotated tag
|
||||
*
|
||||
* @return message
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The message associated with the annotated tag")
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
@@ -87,11 +87,11 @@ public class AnnotatedTag implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* The SHA hash of the annotated tag
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA hash of the annotated tag")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -106,11 +106,11 @@ public class AnnotatedTag implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get tag
|
||||
* The name of the annotated tag
|
||||
*
|
||||
* @return tag
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the annotated tag")
|
||||
public String getTag() {
|
||||
return tag;
|
||||
}
|
||||
@@ -144,11 +144,11 @@ public class AnnotatedTag implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The URL to access the annotated tag
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to access the annotated tag")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,11 @@ public class AnnotatedTagObject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* The SHA hash of the tagged object
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA hash of the tagged object")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -56,11 +56,11 @@ public class AnnotatedTagObject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get type
|
||||
* The type of the tagged object (e.g., commit, tree)
|
||||
*
|
||||
* @return type
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The type of the tagged object (e.g., commit, tree)")
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
@@ -75,11 +75,11 @@ public class AnnotatedTagObject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The URL to access the tagged object
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to access the tagged object")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -50,11 +50,11 @@ public class Attachment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get browserDownloadUrl
|
||||
* DownloadURL is the URL to download the attachment
|
||||
*
|
||||
* @return browserDownloadUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DownloadURL is the URL to download the attachment")
|
||||
public String getBrowserDownloadUrl() {
|
||||
return browserDownloadUrl;
|
||||
}
|
||||
@@ -88,11 +88,11 @@ public class Attachment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get downloadCount
|
||||
* DownloadCount is the number of times the attachment has been downloaded
|
||||
*
|
||||
* @return downloadCount
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DownloadCount is the number of times the attachment has been downloaded")
|
||||
public Long getDownloadCount() {
|
||||
return downloadCount;
|
||||
}
|
||||
@@ -107,11 +107,11 @@ public class Attachment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the attachment
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the attachment")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -126,11 +126,11 @@ public class Attachment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the filename of the attachment
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the filename of the attachment")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -145,11 +145,11 @@ public class Attachment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get size
|
||||
* Size is the file size in bytes
|
||||
*
|
||||
* @return size
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Size is the file size in bytes")
|
||||
public Long getSize() {
|
||||
return size;
|
||||
}
|
||||
@@ -164,11 +164,11 @@ public class Attachment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get uuid
|
||||
* UUID is the unique identifier for the attachment file
|
||||
*
|
||||
* @return uuid
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "UUID is the unique identifier for the attachment file")
|
||||
public String getUuid() {
|
||||
return uuid;
|
||||
}
|
||||
|
||||
@@ -76,11 +76,13 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get effectiveBranchProtectionName
|
||||
* EffectiveBranchProtectionName is the name of the effective branch protection rule
|
||||
*
|
||||
* @return effectiveBranchProtectionName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"EffectiveBranchProtectionName is the name of the effective branch protection rule")
|
||||
public String getEffectiveBranchProtectionName() {
|
||||
return effectiveBranchProtectionName;
|
||||
}
|
||||
@@ -95,11 +97,11 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get enableStatusCheck
|
||||
* EnableStatusCheck indicates if status checks are enabled
|
||||
*
|
||||
* @return enableStatusCheck
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "EnableStatusCheck indicates if status checks are enabled")
|
||||
public Boolean isEnableStatusCheck() {
|
||||
return enableStatusCheck;
|
||||
}
|
||||
@@ -114,11 +116,11 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the branch name
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the branch name")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -133,11 +135,11 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get _protected
|
||||
* Protected indicates if the branch is protected
|
||||
*
|
||||
* @return _protected
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Protected indicates if the branch is protected")
|
||||
public Boolean isProtected() {
|
||||
return _protected;
|
||||
}
|
||||
@@ -152,11 +154,11 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get requiredApprovals
|
||||
* RequiredApprovals is the number of required approvals for pull requests
|
||||
*
|
||||
* @return requiredApprovals
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "RequiredApprovals is the number of required approvals for pull requests")
|
||||
public Long getRequiredApprovals() {
|
||||
return requiredApprovals;
|
||||
}
|
||||
@@ -179,11 +181,11 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get statusCheckContexts
|
||||
* StatusCheckContexts contains the list of required status check contexts
|
||||
*
|
||||
* @return statusCheckContexts
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "StatusCheckContexts contains the list of required status check contexts")
|
||||
public List<String> getStatusCheckContexts() {
|
||||
return statusCheckContexts;
|
||||
}
|
||||
@@ -198,11 +200,11 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get userCanMerge
|
||||
* UserCanMerge indicates if the current user can merge to this branch
|
||||
*
|
||||
* @return userCanMerge
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "UserCanMerge indicates if the current user can merge to this branch")
|
||||
public Boolean isUserCanMerge() {
|
||||
return userCanMerge;
|
||||
}
|
||||
@@ -217,11 +219,11 @@ public class Branch implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get userCanPush
|
||||
* UserCanPush indicates if the current user can push to this branch
|
||||
*
|
||||
* @return userCanPush
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "UserCanPush indicates if the current user can push to this branch")
|
||||
public Boolean isUserCanPush() {
|
||||
return userCanPush;
|
||||
}
|
||||
|
||||
@@ -597,11 +597,11 @@ public class BranchProtection implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get priority
|
||||
* Priority is the priority of this branch protection rule
|
||||
*
|
||||
* @return priority
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Priority is the priority of this branch protection rule")
|
||||
public Long getPriority() {
|
||||
return priority;
|
||||
}
|
||||
@@ -746,11 +746,11 @@ public class BranchProtection implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get ruleName
|
||||
* RuleName is the name of the branch protection rule
|
||||
*
|
||||
* @return ruleName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "RuleName is the name of the branch protection rule")
|
||||
public String getRuleName() {
|
||||
return ruleName;
|
||||
}
|
||||
|
||||
@@ -55,11 +55,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get additions
|
||||
* The number of lines added to the file
|
||||
*
|
||||
* @return additions
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The number of lines added to the file")
|
||||
public Long getAdditions() {
|
||||
return additions;
|
||||
}
|
||||
@@ -74,11 +74,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get changes
|
||||
* The total number of changes to the file
|
||||
*
|
||||
* @return changes
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The total number of changes to the file")
|
||||
public Long getChanges() {
|
||||
return changes;
|
||||
}
|
||||
@@ -93,11 +93,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get contentsUrl
|
||||
* The API URL to get the file contents
|
||||
*
|
||||
* @return contentsUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The API URL to get the file contents")
|
||||
public String getContentsUrl() {
|
||||
return contentsUrl;
|
||||
}
|
||||
@@ -112,11 +112,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get deletions
|
||||
* The number of lines deleted from the file
|
||||
*
|
||||
* @return deletions
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The number of lines deleted from the file")
|
||||
public Long getDeletions() {
|
||||
return deletions;
|
||||
}
|
||||
@@ -131,11 +131,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get filename
|
||||
* The name of the changed file
|
||||
*
|
||||
* @return filename
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the changed file")
|
||||
public String getFilename() {
|
||||
return filename;
|
||||
}
|
||||
@@ -150,11 +150,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* The HTML URL to view the file changes
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The HTML URL to view the file changes")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -169,11 +169,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get previousFilename
|
||||
* The previous filename if the file was renamed
|
||||
*
|
||||
* @return previousFilename
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The previous filename if the file was renamed")
|
||||
public String getPreviousFilename() {
|
||||
return previousFilename;
|
||||
}
|
||||
@@ -188,11 +188,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get rawUrl
|
||||
* The raw URL to download the file
|
||||
*
|
||||
* @return rawUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The raw URL to download the file")
|
||||
public String getRawUrl() {
|
||||
return rawUrl;
|
||||
}
|
||||
@@ -207,11 +207,11 @@ public class ChangedFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get status
|
||||
* The status of the file change (added, modified, deleted, etc.)
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The status of the file change (added, modified, deleted, etc.)")
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
@@ -39,7 +39,15 @@ public class CombinedStatus implements Serializable {
|
||||
@SerializedName("sha")
|
||||
private String sha = null;
|
||||
|
||||
/** Gets or Sets state */
|
||||
/**
|
||||
* State is the overall combined status state pending CommitStatusPending CommitStatusPending is
|
||||
* for when the CommitStatus is Pending success CommitStatusSuccess CommitStatusSuccess is for
|
||||
* when the CommitStatus is Success error CommitStatusError CommitStatusError is for when the
|
||||
* CommitStatus is Error failure CommitStatusFailure CommitStatusFailure is for when the
|
||||
* CommitStatus is Failure warning CommitStatusWarning CommitStatusWarning is for when the
|
||||
* CommitStatus is Warning skipped CommitStatusSkipped CommitStatusSkipped is for when
|
||||
* CommitStatus is Skipped
|
||||
*/
|
||||
@JsonAdapter(StateEnum.Adapter.class)
|
||||
public enum StateEnum {
|
||||
PENDING("pending"),
|
||||
@@ -106,11 +114,11 @@ public class CombinedStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get commitUrl
|
||||
* CommitURL is the API URL for the commit
|
||||
*
|
||||
* @return commitUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "CommitURL is the API URL for the commit")
|
||||
public String getCommitUrl() {
|
||||
return commitUrl;
|
||||
}
|
||||
@@ -144,11 +152,11 @@ public class CombinedStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* SHA is the commit SHA this status applies to
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "SHA is the commit SHA this status applies to")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -163,11 +171,26 @@ public class CombinedStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get state
|
||||
* State is the overall combined status state pending CommitStatusPending CommitStatusPending is
|
||||
* for when the CommitStatus is Pending success CommitStatusSuccess CommitStatusSuccess is for
|
||||
* when the CommitStatus is Success error CommitStatusError CommitStatusError is for when the
|
||||
* CommitStatus is Error failure CommitStatusFailure CommitStatusFailure is for when the
|
||||
* CommitStatus is Failure warning CommitStatusWarning CommitStatusWarning is for when the
|
||||
* CommitStatus is Warning skipped CommitStatusSkipped CommitStatusSkipped is for when
|
||||
* CommitStatus is Skipped
|
||||
*
|
||||
* @return state
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"State is the overall combined status state pending CommitStatusPending "
|
||||
+ " CommitStatusPending is for when the CommitStatus is Pending success"
|
||||
+ " CommitStatusSuccess CommitStatusSuccess is for when the CommitStatus is Success"
|
||||
+ " error CommitStatusError CommitStatusError is for when the CommitStatus is Error"
|
||||
+ " failure CommitStatusFailure CommitStatusFailure is for when the CommitStatus is"
|
||||
+ " Failure warning CommitStatusWarning CommitStatusWarning is for when the"
|
||||
+ " CommitStatus is Warning skipped CommitStatusSkipped CommitStatusSkipped is for"
|
||||
+ " when CommitStatus is Skipped")
|
||||
public StateEnum getState() {
|
||||
return state;
|
||||
}
|
||||
@@ -190,11 +213,11 @@ public class CombinedStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get statuses
|
||||
* Statuses contains all individual commit statuses
|
||||
*
|
||||
* @return statuses
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Statuses contains all individual commit statuses")
|
||||
public List<CommitStatus> getStatuses() {
|
||||
return statuses;
|
||||
}
|
||||
@@ -209,11 +232,11 @@ public class CombinedStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get totalCount
|
||||
* TotalCount is the total number of statuses
|
||||
*
|
||||
* @return totalCount
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "TotalCount is the total number of statuses")
|
||||
public Long getTotalCount() {
|
||||
return totalCount;
|
||||
}
|
||||
@@ -228,11 +251,11 @@ public class CombinedStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this combined status
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this combined status")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -72,11 +72,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get assets
|
||||
* Attachments contains files attached to the comment
|
||||
*
|
||||
* @return assets
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Attachments contains files attached to the comment")
|
||||
public List<Attachment> getAssets() {
|
||||
return assets;
|
||||
}
|
||||
@@ -91,11 +91,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* Body contains the comment text content
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Body contains the comment text content")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -129,11 +129,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* HTMLURL is the web URL for viewing the comment
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for viewing the comment")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -148,11 +148,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the comment
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the comment")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -167,11 +167,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get issueUrl
|
||||
* IssueURL is the API URL for the issue
|
||||
*
|
||||
* @return issueUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "IssueURL is the API URL for the issue")
|
||||
public String getIssueUrl() {
|
||||
return issueUrl;
|
||||
}
|
||||
@@ -186,11 +186,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get originalAuthor
|
||||
* OriginalAuthor is the original author name (for imported comments)
|
||||
*
|
||||
* @return originalAuthor
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "OriginalAuthor is the original author name (for imported comments)")
|
||||
public String getOriginalAuthor() {
|
||||
return originalAuthor;
|
||||
}
|
||||
@@ -205,11 +205,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get originalAuthorId
|
||||
* OriginalAuthorID is the original author ID (for imported comments)
|
||||
*
|
||||
* @return originalAuthorId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "OriginalAuthorID is the original author ID (for imported comments)")
|
||||
public Long getOriginalAuthorId() {
|
||||
return originalAuthorId;
|
||||
}
|
||||
@@ -224,11 +224,11 @@ public class Comment implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get pullRequestUrl
|
||||
* PRURL is the API URL for the pull request (if applicable)
|
||||
*
|
||||
* @return pullRequestUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "PRURL is the API URL for the pull request (if applicable)")
|
||||
public String getPullRequestUrl() {
|
||||
return pullRequestUrl;
|
||||
}
|
||||
|
||||
@@ -144,11 +144,11 @@ public class Commit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get files
|
||||
* Files contains information about files affected by the commit
|
||||
*
|
||||
* @return files
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Files contains information about files affected by the commit")
|
||||
public List<CommitAffectedFiles> getFiles() {
|
||||
return files;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class Commit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* HTMLURL is the web URL for viewing the commit
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for viewing the commit")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -190,11 +190,11 @@ public class Commit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get parents
|
||||
* Parents contains the parent commit information
|
||||
*
|
||||
* @return parents
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Parents contains the parent commit information")
|
||||
public List<CommitMeta> getParents() {
|
||||
return parents;
|
||||
}
|
||||
@@ -209,11 +209,11 @@ public class Commit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* SHA is the commit SHA hash
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "SHA is the commit SHA hash")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -247,11 +247,11 @@ public class Commit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for the commit
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for the commit")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -34,11 +34,11 @@ public class CommitAffectedFiles implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get filename
|
||||
* Filename is the path of the affected file
|
||||
*
|
||||
* @return filename
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Filename is the path of the affected file")
|
||||
public String getFilename() {
|
||||
return filename;
|
||||
}
|
||||
@@ -53,11 +53,11 @@ public class CommitAffectedFiles implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get status
|
||||
* Status indicates how the file was affected (added, modified, deleted)
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Status indicates how the file was affected (added, modified, deleted)")
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
@@ -56,11 +56,11 @@ public class CommitMeta implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* SHA is the commit SHA hash
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "SHA is the commit SHA hash")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -75,11 +75,11 @@ public class CommitMeta implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for the commit
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for the commit")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,11 @@ public class CommitStats implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get additions
|
||||
* Additions is the number of lines added
|
||||
*
|
||||
* @return additions
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Additions is the number of lines added")
|
||||
public Long getAdditions() {
|
||||
return additions;
|
||||
}
|
||||
@@ -56,11 +56,11 @@ public class CommitStats implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get deletions
|
||||
* Deletions is the number of lines deleted
|
||||
*
|
||||
* @return deletions
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Deletions is the number of lines deleted")
|
||||
public Long getDeletions() {
|
||||
return deletions;
|
||||
}
|
||||
@@ -75,11 +75,11 @@ public class CommitStats implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get total
|
||||
* Total is the total number of lines changed
|
||||
*
|
||||
* @return total
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Total is the total number of lines changed")
|
||||
public Long getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
@@ -43,7 +43,15 @@ public class CommitStatus implements Serializable {
|
||||
@SerializedName("id")
|
||||
private Long id = null;
|
||||
|
||||
/** Gets or Sets status */
|
||||
/**
|
||||
* State represents the status state (pending, success, error, failure) pending
|
||||
* CommitStatusPending CommitStatusPending is for when the CommitStatus is Pending success
|
||||
* CommitStatusSuccess CommitStatusSuccess is for when the CommitStatus is Success error
|
||||
* CommitStatusError CommitStatusError is for when the CommitStatus is Error failure
|
||||
* CommitStatusFailure CommitStatusFailure is for when the CommitStatus is Failure warning
|
||||
* CommitStatusWarning CommitStatusWarning is for when the CommitStatus is Warning skipped
|
||||
* CommitStatusSkipped CommitStatusSkipped is for when CommitStatus is Skipped
|
||||
*/
|
||||
@JsonAdapter(StatusEnum.Adapter.class)
|
||||
public enum StatusEnum {
|
||||
PENDING("pending"),
|
||||
@@ -110,11 +118,11 @@ public class CommitStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get context
|
||||
* Context is the unique context identifier for the status
|
||||
*
|
||||
* @return context
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Context is the unique context identifier for the status")
|
||||
public String getContext() {
|
||||
return context;
|
||||
}
|
||||
@@ -167,11 +175,11 @@ public class CommitStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides a brief description of the status
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides a brief description of the status")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -186,11 +194,11 @@ public class CommitStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the commit status
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the commit status")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -205,11 +213,26 @@ public class CommitStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get status
|
||||
* State represents the status state (pending, success, error, failure) pending
|
||||
* CommitStatusPending CommitStatusPending is for when the CommitStatus is Pending success
|
||||
* CommitStatusSuccess CommitStatusSuccess is for when the CommitStatus is Success error
|
||||
* CommitStatusError CommitStatusError is for when the CommitStatus is Error failure
|
||||
* CommitStatusFailure CommitStatusFailure is for when the CommitStatus is Failure warning
|
||||
* CommitStatusWarning CommitStatusWarning is for when the CommitStatus is Warning skipped
|
||||
* CommitStatusSkipped CommitStatusSkipped is for when CommitStatus is Skipped
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"State represents the status state (pending, success, error, failure) pending"
|
||||
+ " CommitStatusPending CommitStatusPending is for when the CommitStatus is Pending"
|
||||
+ " success CommitStatusSuccess CommitStatusSuccess is for when the CommitStatus is"
|
||||
+ " Success error CommitStatusError CommitStatusError is for when the CommitStatus"
|
||||
+ " is Error failure CommitStatusFailure CommitStatusFailure is for when the"
|
||||
+ " CommitStatus is Failure warning CommitStatusWarning CommitStatusWarning is for"
|
||||
+ " when the CommitStatus is Warning skipped CommitStatusSkipped CommitStatusSkipped"
|
||||
+ " is for when CommitStatus is Skipped")
|
||||
public StatusEnum getStatus() {
|
||||
return status;
|
||||
}
|
||||
@@ -224,11 +247,11 @@ public class CommitStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get targetUrl
|
||||
* TargetURL is the URL to link to for more details
|
||||
*
|
||||
* @return targetUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "TargetURL is the URL to link to for more details")
|
||||
public String getTargetUrl() {
|
||||
return targetUrl;
|
||||
}
|
||||
@@ -262,11 +285,11 @@ public class CommitStatus implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this status
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this status")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -36,11 +36,11 @@ public class CommitUser implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get date
|
||||
* Date is the commit date in string format
|
||||
*
|
||||
* @return date
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Date is the commit date in string format")
|
||||
public String getDate() {
|
||||
return date;
|
||||
}
|
||||
@@ -74,11 +74,11 @@ public class CommitUser implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the person's name
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the person's name")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@@ -43,11 +43,12 @@ public class ContentsExtResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get dirContents
|
||||
* DirContents contains directory listing when the path represents a directory
|
||||
*
|
||||
* @return dirContents
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description = "DirContents contains directory listing when the path represents a directory")
|
||||
public List<ContentsResponse> getDirContents() {
|
||||
return dirContents;
|
||||
}
|
||||
|
||||
@@ -133,11 +133,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get downloadUrl
|
||||
* DownloadURL is the direct download URL for this file
|
||||
*
|
||||
* @return downloadUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DownloadURL is the direct download URL for this file")
|
||||
public String getDownloadUrl() {
|
||||
return downloadUrl;
|
||||
}
|
||||
@@ -171,11 +171,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get gitUrl
|
||||
* GitURL is the Git API URL for this blob or tree
|
||||
*
|
||||
* @return gitUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "GitURL is the Git API URL for this blob or tree")
|
||||
public String getGitUrl() {
|
||||
return gitUrl;
|
||||
}
|
||||
@@ -190,11 +190,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* HTMLURL is the web URL for this file or directory
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for this file or directory")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -228,11 +228,12 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lastCommitMessage
|
||||
* LastCommitMessage is the message of the last commit that affected this file
|
||||
*
|
||||
* @return lastCommitMessage
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description = "LastCommitMessage is the message of the last commit that affected this file")
|
||||
public String getLastCommitMessage() {
|
||||
return lastCommitMessage;
|
||||
}
|
||||
@@ -247,11 +248,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lastCommitSha
|
||||
* LastCommitSHA is the SHA of the last commit that affected this file
|
||||
*
|
||||
* @return lastCommitSha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "LastCommitSHA is the SHA of the last commit that affected this file")
|
||||
public String getLastCommitSha() {
|
||||
return lastCommitSha;
|
||||
}
|
||||
@@ -285,11 +286,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lfsOid
|
||||
* LfsOid is the Git LFS object ID if this file is stored in LFS
|
||||
*
|
||||
* @return lfsOid
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "LfsOid is the Git LFS object ID if this file is stored in LFS")
|
||||
public String getLfsOid() {
|
||||
return lfsOid;
|
||||
}
|
||||
@@ -304,11 +305,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lfsSize
|
||||
* LfsSize is the file size if this file is stored in LFS
|
||||
*
|
||||
* @return lfsSize
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "LfsSize is the file size if this file is stored in LFS")
|
||||
public Long getLfsSize() {
|
||||
return lfsSize;
|
||||
}
|
||||
@@ -323,11 +324,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the file or directory name
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the file or directory name")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -342,11 +343,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get path
|
||||
* Path is the full path to the file or directory
|
||||
*
|
||||
* @return path
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Path is the full path to the file or directory")
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
@@ -361,11 +362,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* SHA is the Git blob or tree SHA
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "SHA is the Git blob or tree SHA")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -380,11 +381,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get size
|
||||
* Size is the file size in bytes
|
||||
*
|
||||
* @return size
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Size is the file size in bytes")
|
||||
public Long getSize() {
|
||||
return size;
|
||||
}
|
||||
@@ -459,11 +460,11 @@ public class ContentsResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this file or directory
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this file or directory")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -53,11 +53,11 @@ public class CreateGPGKeyOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get armoredSignature
|
||||
* An optional armored signature for the GPG key
|
||||
*
|
||||
* @return armoredSignature
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "An optional armored signature for the GPG key")
|
||||
public String getArmoredSignature() {
|
||||
return armoredSignature;
|
||||
}
|
||||
|
||||
@@ -125,11 +125,11 @@ public class CreateHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get authorizationHeader
|
||||
* Authorization header to include in webhook requests
|
||||
*
|
||||
* @return authorizationHeader
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Authorization header to include in webhook requests")
|
||||
public String getAuthorizationHeader() {
|
||||
return authorizationHeader;
|
||||
}
|
||||
@@ -144,11 +144,11 @@ public class CreateHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get branchFilter
|
||||
* Branch filter pattern to determine which branches trigger the webhook
|
||||
*
|
||||
* @return branchFilter
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Branch filter pattern to determine which branches trigger the webhook")
|
||||
public String getBranchFilter() {
|
||||
return branchFilter;
|
||||
}
|
||||
@@ -190,11 +190,11 @@ public class CreateHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get events
|
||||
* List of events that will trigger this webhook
|
||||
*
|
||||
* @return events
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of events that will trigger this webhook")
|
||||
public List<String> getEvents() {
|
||||
return events;
|
||||
}
|
||||
|
||||
@@ -62,11 +62,11 @@ public class CreateLabelOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides additional context about the label's purpose
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides additional context about the label's purpose")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
@@ -91,11 +91,11 @@ public class CreateMilestoneOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides details about the milestone
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides details about the milestone")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -148,11 +148,11 @@ public class CreateMilestoneOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* Title is the title of the new milestone
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Title is the title of the new milestone")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
@@ -43,11 +43,11 @@ public class CreateOAuth2ApplicationOptions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get confidentialClient
|
||||
* Whether the client is confidential
|
||||
*
|
||||
* @return confidentialClient
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the client is confidential")
|
||||
public Boolean isConfidentialClient() {
|
||||
return confidentialClient;
|
||||
}
|
||||
@@ -62,11 +62,11 @@ public class CreateOAuth2ApplicationOptions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The name of the OAuth2 application
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the OAuth2 application")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -89,11 +89,11 @@ public class CreateOAuth2ApplicationOptions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get redirectUris
|
||||
* The list of allowed redirect URIs
|
||||
*
|
||||
* @return redirectUris
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The list of allowed redirect URIs")
|
||||
public List<String> getRedirectUris() {
|
||||
return redirectUris;
|
||||
}
|
||||
@@ -109,11 +109,11 @@ public class CreateOAuth2ApplicationOptions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get skipSecondaryAuthorization
|
||||
* Whether to skip secondary authorization
|
||||
*
|
||||
* @return skipSecondaryAuthorization
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to skip secondary authorization")
|
||||
public Boolean isSkipSecondaryAuthorization() {
|
||||
return skipSecondaryAuthorization;
|
||||
}
|
||||
|
||||
@@ -105,11 +105,11 @@ public class CreateOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* The description of the organization
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The description of the organization")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -124,11 +124,11 @@ public class CreateOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get email
|
||||
* The email address of the organization
|
||||
*
|
||||
* @return email
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The email address of the organization")
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
@@ -143,11 +143,11 @@ public class CreateOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fullName
|
||||
* The full display name of the organization
|
||||
*
|
||||
* @return fullName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The full display name of the organization")
|
||||
public String getFullName() {
|
||||
return fullName;
|
||||
}
|
||||
@@ -162,11 +162,11 @@ public class CreateOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get location
|
||||
* The location of the organization
|
||||
*
|
||||
* @return location
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The location of the organization")
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
@@ -181,11 +181,11 @@ public class CreateOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get repoAdminChangeTeamAccess
|
||||
* Whether repository administrators can change team access
|
||||
*
|
||||
* @return repoAdminChangeTeamAccess
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether repository administrators can change team access")
|
||||
public Boolean isRepoAdminChangeTeamAccess() {
|
||||
return repoAdminChangeTeamAccess;
|
||||
}
|
||||
@@ -238,11 +238,11 @@ public class CreateOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get website
|
||||
* The website URL of the organization
|
||||
*
|
||||
* @return website
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The website URL of the organization")
|
||||
public String getWebsite() {
|
||||
return website;
|
||||
}
|
||||
|
||||
@@ -64,11 +64,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get assignee
|
||||
* The primary assignee username
|
||||
*
|
||||
* @return assignee
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The primary assignee username")
|
||||
public String getAssignee() {
|
||||
return assignee;
|
||||
}
|
||||
@@ -91,11 +91,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get assignees
|
||||
* The list of assignee usernames
|
||||
*
|
||||
* @return assignees
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The list of assignee usernames")
|
||||
public List<String> getAssignees() {
|
||||
return assignees;
|
||||
}
|
||||
@@ -110,11 +110,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get base
|
||||
* The base branch for the pull request
|
||||
*
|
||||
* @return base
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The base branch for the pull request")
|
||||
public String getBase() {
|
||||
return base;
|
||||
}
|
||||
@@ -129,11 +129,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* The description body of the pull request
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The description body of the pull request")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -167,11 +167,17 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get head
|
||||
* The head branch for the pull request, it could be a branch name on the base repository or a
|
||||
* form like `<username>:<branch>` which refers to the user's fork
|
||||
* repository's branch.
|
||||
*
|
||||
* @return head
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"The head branch for the pull request, it could be a branch name on the base repository"
|
||||
+ " or a form like `<username>:<branch>` which refers to the user's fork repository's"
|
||||
+ " branch.")
|
||||
public String getHead() {
|
||||
return head;
|
||||
}
|
||||
@@ -194,11 +200,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get labels
|
||||
* The list of label IDs to assign to the pull request
|
||||
*
|
||||
* @return labels
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The list of label IDs to assign to the pull request")
|
||||
public List<Long> getLabels() {
|
||||
return labels;
|
||||
}
|
||||
@@ -213,11 +219,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get milestone
|
||||
* The milestone ID to assign to the pull request
|
||||
*
|
||||
* @return milestone
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The milestone ID to assign to the pull request")
|
||||
public Long getMilestone() {
|
||||
return milestone;
|
||||
}
|
||||
@@ -240,11 +246,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get reviewers
|
||||
* The list of reviewer usernames
|
||||
*
|
||||
* @return reviewers
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The list of reviewer usernames")
|
||||
public List<String> getReviewers() {
|
||||
return reviewers;
|
||||
}
|
||||
@@ -267,11 +273,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get teamReviewers
|
||||
* The list of team reviewer names
|
||||
*
|
||||
* @return teamReviewers
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The list of team reviewer names")
|
||||
public List<String> getTeamReviewers() {
|
||||
return teamReviewers;
|
||||
}
|
||||
@@ -286,11 +292,11 @@ public class CreatePullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* The title of the pull request
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The title of the pull request")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
@@ -42,11 +42,11 @@ public class CreatePushMirrorOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get interval
|
||||
* The sync interval for automatic updates
|
||||
*
|
||||
* @return interval
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The sync interval for automatic updates")
|
||||
public String getInterval() {
|
||||
return interval;
|
||||
}
|
||||
@@ -61,11 +61,11 @@ public class CreatePushMirrorOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get remoteAddress
|
||||
* The remote repository URL to push to
|
||||
*
|
||||
* @return remoteAddress
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The remote repository URL to push to")
|
||||
public String getRemoteAddress() {
|
||||
return remoteAddress;
|
||||
}
|
||||
@@ -80,11 +80,11 @@ public class CreatePushMirrorOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get remotePassword
|
||||
* The password for authentication with the remote repository
|
||||
*
|
||||
* @return remotePassword
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The password for authentication with the remote repository")
|
||||
public String getRemotePassword() {
|
||||
return remotePassword;
|
||||
}
|
||||
@@ -99,11 +99,11 @@ public class CreatePushMirrorOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get remoteUsername
|
||||
* The username for authentication with the remote repository
|
||||
*
|
||||
* @return remoteUsername
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The username for authentication with the remote repository")
|
||||
public String getRemoteUsername() {
|
||||
return remoteUsername;
|
||||
}
|
||||
@@ -118,11 +118,11 @@ public class CreatePushMirrorOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get syncOnCommit
|
||||
* Whether to sync on every commit
|
||||
*
|
||||
* @return syncOnCommit
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to sync on every commit")
|
||||
public Boolean isSyncOnCommit() {
|
||||
return syncOnCommit;
|
||||
}
|
||||
|
||||
@@ -49,11 +49,11 @@ public class CreateReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* The release notes or description
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The release notes or description")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -68,11 +68,11 @@ public class CreateReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get draft
|
||||
* Whether to create the release as a draft
|
||||
*
|
||||
* @return draft
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to create the release as a draft")
|
||||
public Boolean isDraft() {
|
||||
return draft;
|
||||
}
|
||||
@@ -87,11 +87,11 @@ public class CreateReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The display title of the release
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The display title of the release")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -106,11 +106,11 @@ public class CreateReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get prerelease
|
||||
* Whether to mark the release as a prerelease
|
||||
*
|
||||
* @return prerelease
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to mark the release as a prerelease")
|
||||
public Boolean isPrerelease() {
|
||||
return prerelease;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ public class CreateReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get tagMessage
|
||||
* The message for the git tag
|
||||
*
|
||||
* @return tagMessage
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The message for the git tag")
|
||||
public String getTagMessage() {
|
||||
return tagMessage;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class CreateReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get targetCommitish
|
||||
* The target commitish for the release
|
||||
*
|
||||
* @return targetCommitish
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The target commitish for the release")
|
||||
public String getTargetCommitish() {
|
||||
return targetCommitish;
|
||||
}
|
||||
|
||||
@@ -35,7 +35,15 @@ public class CreateStatusOption implements Serializable {
|
||||
@SerializedName("description")
|
||||
private String description = null;
|
||||
|
||||
/** Gets or Sets state */
|
||||
/**
|
||||
* State represents the status state to set (pending, success, error, failure) pending
|
||||
* CommitStatusPending CommitStatusPending is for when the CommitStatus is Pending success
|
||||
* CommitStatusSuccess CommitStatusSuccess is for when the CommitStatus is Success error
|
||||
* CommitStatusError CommitStatusError is for when the CommitStatus is Error failure
|
||||
* CommitStatusFailure CommitStatusFailure is for when the CommitStatus is Failure warning
|
||||
* CommitStatusWarning CommitStatusWarning is for when the CommitStatus is Warning skipped
|
||||
* CommitStatusSkipped CommitStatusSkipped is for when CommitStatus is Skipped
|
||||
*/
|
||||
@JsonAdapter(StateEnum.Adapter.class)
|
||||
public enum StateEnum {
|
||||
PENDING("pending"),
|
||||
@@ -96,11 +104,11 @@ public class CreateStatusOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get context
|
||||
* Context is the unique context identifier for the status
|
||||
*
|
||||
* @return context
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Context is the unique context identifier for the status")
|
||||
public String getContext() {
|
||||
return context;
|
||||
}
|
||||
@@ -115,11 +123,11 @@ public class CreateStatusOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides a brief description of the status
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides a brief description of the status")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -134,11 +142,26 @@ public class CreateStatusOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get state
|
||||
* State represents the status state to set (pending, success, error, failure) pending
|
||||
* CommitStatusPending CommitStatusPending is for when the CommitStatus is Pending success
|
||||
* CommitStatusSuccess CommitStatusSuccess is for when the CommitStatus is Success error
|
||||
* CommitStatusError CommitStatusError is for when the CommitStatus is Error failure
|
||||
* CommitStatusFailure CommitStatusFailure is for when the CommitStatus is Failure warning
|
||||
* CommitStatusWarning CommitStatusWarning is for when the CommitStatus is Warning skipped
|
||||
* CommitStatusSkipped CommitStatusSkipped is for when CommitStatus is Skipped
|
||||
*
|
||||
* @return state
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"State represents the status state to set (pending, success, error, failure) pending"
|
||||
+ " CommitStatusPending CommitStatusPending is for when the CommitStatus is Pending"
|
||||
+ " success CommitStatusSuccess CommitStatusSuccess is for when the CommitStatus is"
|
||||
+ " Success error CommitStatusError CommitStatusError is for when the CommitStatus"
|
||||
+ " is Error failure CommitStatusFailure CommitStatusFailure is for when the"
|
||||
+ " CommitStatus is Failure warning CommitStatusWarning CommitStatusWarning is for"
|
||||
+ " when the CommitStatus is Warning skipped CommitStatusSkipped CommitStatusSkipped"
|
||||
+ " is for when CommitStatus is Skipped")
|
||||
public StateEnum getState() {
|
||||
return state;
|
||||
}
|
||||
@@ -153,11 +176,11 @@ public class CreateStatusOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get targetUrl
|
||||
* TargetURL is the URL to link to for more details
|
||||
*
|
||||
* @return targetUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "TargetURL is the URL to link to for more details")
|
||||
public String getTargetUrl() {
|
||||
return targetUrl;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,11 @@ public class CreateTagOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get message
|
||||
* The message to associate with the tag
|
||||
*
|
||||
* @return message
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The message to associate with the tag")
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
@@ -75,11 +75,11 @@ public class CreateTagOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get target
|
||||
* The target commit SHA or branch name for the tag
|
||||
*
|
||||
* @return target
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The target commit SHA or branch name for the tag")
|
||||
public String getTarget() {
|
||||
return target;
|
||||
}
|
||||
|
||||
@@ -39,11 +39,11 @@ public class CreateTagProtectionOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get namePattern
|
||||
* The pattern to match tag names for protection
|
||||
*
|
||||
* @return namePattern
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The pattern to match tag names for protection")
|
||||
public String getNamePattern() {
|
||||
return namePattern;
|
||||
}
|
||||
@@ -66,11 +66,11 @@ public class CreateTagProtectionOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get whitelistTeams
|
||||
* List of team names allowed to create/delete protected tags
|
||||
*
|
||||
* @return whitelistTeams
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of team names allowed to create/delete protected tags")
|
||||
public List<String> getWhitelistTeams() {
|
||||
return whitelistTeams;
|
||||
}
|
||||
@@ -93,11 +93,11 @@ public class CreateTagProtectionOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get whitelistUsernames
|
||||
* List of usernames allowed to create/delete protected tags
|
||||
*
|
||||
* @return whitelistUsernames
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of usernames allowed to create/delete protected tags")
|
||||
public List<String> getWhitelistUsernames() {
|
||||
return whitelistUsernames;
|
||||
}
|
||||
|
||||
@@ -104,11 +104,11 @@ public class CreateTeamOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canCreateOrgRepo
|
||||
* Whether the team can create repositories in the organization
|
||||
*
|
||||
* @return canCreateOrgRepo
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the team can create repositories in the organization")
|
||||
public Boolean isCanCreateOrgRepo() {
|
||||
return canCreateOrgRepo;
|
||||
}
|
||||
@@ -123,11 +123,11 @@ public class CreateTeamOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* The description of the team
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The description of the team")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -142,11 +142,11 @@ public class CreateTeamOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get includesAllRepositories
|
||||
* Whether the team has access to all repositories in the organization
|
||||
*
|
||||
* @return includesAllRepositories
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the team has access to all repositories in the organization")
|
||||
public Boolean isIncludesAllRepositories() {
|
||||
return includesAllRepositories;
|
||||
}
|
||||
|
||||
@@ -105,11 +105,11 @@ public class CreateUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fullName
|
||||
* The full display name of the user
|
||||
*
|
||||
* @return fullName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The full display name of the user")
|
||||
public String getFullName() {
|
||||
return fullName;
|
||||
}
|
||||
@@ -145,11 +145,11 @@ public class CreateUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mustChangePassword
|
||||
* Whether the user must change password on first login
|
||||
*
|
||||
* @return mustChangePassword
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user must change password on first login")
|
||||
public Boolean isMustChangePassword() {
|
||||
return mustChangePassword;
|
||||
}
|
||||
@@ -164,11 +164,11 @@ public class CreateUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get password
|
||||
* The plain text password for the user
|
||||
*
|
||||
* @return password
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The plain text password for the user")
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
@@ -183,11 +183,11 @@ public class CreateUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get restricted
|
||||
* Whether the user has restricted access privileges
|
||||
*
|
||||
* @return restricted
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user has restricted access privileges")
|
||||
public Boolean isRestricted() {
|
||||
return restricted;
|
||||
}
|
||||
@@ -202,11 +202,11 @@ public class CreateUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sendNotify
|
||||
* Whether to send welcome notification email to the user
|
||||
*
|
||||
* @return sendNotify
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to send welcome notification email to the user")
|
||||
public Boolean isSendNotify() {
|
||||
return sendNotify;
|
||||
}
|
||||
@@ -221,11 +221,11 @@ public class CreateUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sourceId
|
||||
* The authentication source ID to associate with the user
|
||||
*
|
||||
* @return sourceId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The authentication source ID to associate with the user")
|
||||
public Long getSourceId() {
|
||||
return sourceId;
|
||||
}
|
||||
@@ -259,11 +259,11 @@ public class CreateUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get visibility
|
||||
* User visibility level: public, limited, or private
|
||||
*
|
||||
* @return visibility
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "User visibility level: public, limited, or private")
|
||||
public String getVisibility() {
|
||||
return visibility;
|
||||
}
|
||||
|
||||
@@ -44,11 +44,11 @@ public class Cron implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get execTimes
|
||||
* The total number of times this cron task has been executed
|
||||
*
|
||||
* @return execTimes
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The total number of times this cron task has been executed")
|
||||
public Long getExecTimes() {
|
||||
return execTimes;
|
||||
}
|
||||
@@ -63,11 +63,11 @@ public class Cron implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The name of the cron task
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the cron task")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -82,11 +82,11 @@ public class Cron implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get next
|
||||
* The next scheduled execution time
|
||||
*
|
||||
* @return next
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The next scheduled execution time")
|
||||
public Date getNext() {
|
||||
return next;
|
||||
}
|
||||
@@ -101,11 +101,11 @@ public class Cron implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get prev
|
||||
* The previous execution time
|
||||
*
|
||||
* @return prev
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The previous execution time")
|
||||
public Date getPrev() {
|
||||
return prev;
|
||||
}
|
||||
@@ -120,11 +120,11 @@ public class Cron implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get schedule
|
||||
* The cron schedule expression (e.g., \"0 0 * * *\")
|
||||
*
|
||||
* @return schedule
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The cron schedule expression (e.g., \"0 0 * * *\")")
|
||||
public String getSchedule() {
|
||||
return schedule;
|
||||
}
|
||||
|
||||
@@ -75,11 +75,11 @@ public class DeployKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fingerprint
|
||||
* Fingerprint is the key's fingerprint
|
||||
*
|
||||
* @return fingerprint
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Fingerprint is the key's fingerprint")
|
||||
public String getFingerprint() {
|
||||
return fingerprint;
|
||||
}
|
||||
@@ -94,11 +94,11 @@ public class DeployKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the deploy key
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the deploy key")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -113,11 +113,11 @@ public class DeployKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get key
|
||||
* Key contains the actual SSH key content
|
||||
*
|
||||
* @return key
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Key contains the actual SSH key content")
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
@@ -132,11 +132,11 @@ public class DeployKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get keyId
|
||||
* KeyID is the associated public key ID
|
||||
*
|
||||
* @return keyId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "KeyID is the associated public key ID")
|
||||
public Long getKeyId() {
|
||||
return keyId;
|
||||
}
|
||||
@@ -151,11 +151,11 @@ public class DeployKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get readOnly
|
||||
* ReadOnly indicates if the key has read-only access
|
||||
*
|
||||
* @return readOnly
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ReadOnly indicates if the key has read-only access")
|
||||
public Boolean isReadOnly() {
|
||||
return readOnly;
|
||||
}
|
||||
@@ -189,11 +189,11 @@ public class DeployKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* Title is the human-readable name for the key
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Title is the human-readable name for the key")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
@@ -208,11 +208,11 @@ public class DeployKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this deploy key
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this deploy key")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -31,11 +31,11 @@ public class EditAttachmentOptions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the new filename for the attachment
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the new filename for the attachment")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@@ -31,11 +31,11 @@ public class EditGitHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get content
|
||||
* Content is the new script content for the hook
|
||||
*
|
||||
* @return content
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Content is the new script content for the hook")
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -47,11 +47,11 @@ public class EditHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get active
|
||||
* Whether the webhook is active and will be triggered
|
||||
*
|
||||
* @return active
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the webhook is active and will be triggered")
|
||||
public Boolean isActive() {
|
||||
return active;
|
||||
}
|
||||
@@ -66,11 +66,11 @@ public class EditHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get authorizationHeader
|
||||
* Authorization header to include in webhook requests
|
||||
*
|
||||
* @return authorizationHeader
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Authorization header to include in webhook requests")
|
||||
public String getAuthorizationHeader() {
|
||||
return authorizationHeader;
|
||||
}
|
||||
@@ -85,11 +85,11 @@ public class EditHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get branchFilter
|
||||
* Branch filter pattern to determine which branches trigger the webhook
|
||||
*
|
||||
* @return branchFilter
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Branch filter pattern to determine which branches trigger the webhook")
|
||||
public String getBranchFilter() {
|
||||
return branchFilter;
|
||||
}
|
||||
@@ -112,11 +112,11 @@ public class EditHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get config
|
||||
* Configuration settings for the webhook
|
||||
*
|
||||
* @return config
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Configuration settings for the webhook")
|
||||
public Map<String, String> getConfig() {
|
||||
return config;
|
||||
}
|
||||
@@ -139,11 +139,11 @@ public class EditHookOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get events
|
||||
* List of events that trigger this webhook
|
||||
*
|
||||
* @return events
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of events that trigger this webhook")
|
||||
public List<String> getEvents() {
|
||||
return events;
|
||||
}
|
||||
|
||||
@@ -62,11 +62,11 @@ public class EditLabelOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides additional context about the label's purpose
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides additional context about the label's purpose")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class EditLabelOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the new display name for the label
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the new display name for the label")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@@ -41,11 +41,11 @@ public class EditMilestoneOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides updated details about the milestone
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides updated details about the milestone")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -60,11 +60,11 @@ public class EditMilestoneOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get dueOn
|
||||
* Deadline is the updated due date for the milestone
|
||||
*
|
||||
* @return dueOn
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Deadline is the updated due date for the milestone")
|
||||
public Date getDueOn() {
|
||||
return dueOn;
|
||||
}
|
||||
@@ -79,11 +79,11 @@ public class EditMilestoneOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get state
|
||||
* State indicates the updated state of the milestone
|
||||
*
|
||||
* @return state
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "State indicates the updated state of the milestone")
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
@@ -98,11 +98,11 @@ public class EditMilestoneOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* Title is the updated title of the milestone
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Title is the updated title of the milestone")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
@@ -100,11 +100,11 @@ public class EditOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* The description of the organization
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The description of the organization")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class EditOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get email
|
||||
* The email address of the organization
|
||||
*
|
||||
* @return email
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The email address of the organization")
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
@@ -138,11 +138,11 @@ public class EditOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fullName
|
||||
* The full display name of the organization
|
||||
*
|
||||
* @return fullName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The full display name of the organization")
|
||||
public String getFullName() {
|
||||
return fullName;
|
||||
}
|
||||
@@ -157,11 +157,11 @@ public class EditOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get location
|
||||
* The location of the organization
|
||||
*
|
||||
* @return location
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The location of the organization")
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
@@ -176,11 +176,11 @@ public class EditOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get repoAdminChangeTeamAccess
|
||||
* Whether repository administrators can change team access
|
||||
*
|
||||
* @return repoAdminChangeTeamAccess
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether repository administrators can change team access")
|
||||
public Boolean isRepoAdminChangeTeamAccess() {
|
||||
return repoAdminChangeTeamAccess;
|
||||
}
|
||||
@@ -214,11 +214,11 @@ public class EditOrgOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get website
|
||||
* The website URL of the organization
|
||||
*
|
||||
* @return website
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The website URL of the organization")
|
||||
public String getWebsite() {
|
||||
return website;
|
||||
}
|
||||
|
||||
@@ -64,11 +64,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get allowMaintainerEdit
|
||||
* Whether to allow maintainer edits
|
||||
*
|
||||
* @return allowMaintainerEdit
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to allow maintainer edits")
|
||||
public Boolean isAllowMaintainerEdit() {
|
||||
return allowMaintainerEdit;
|
||||
}
|
||||
@@ -83,11 +83,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get assignee
|
||||
* The new primary assignee username
|
||||
*
|
||||
* @return assignee
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new primary assignee username")
|
||||
public String getAssignee() {
|
||||
return assignee;
|
||||
}
|
||||
@@ -110,11 +110,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get assignees
|
||||
* The new list of assignee usernames
|
||||
*
|
||||
* @return assignees
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new list of assignee usernames")
|
||||
public List<String> getAssignees() {
|
||||
return assignees;
|
||||
}
|
||||
@@ -129,11 +129,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get base
|
||||
* The new base branch for the pull request
|
||||
*
|
||||
* @return base
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new base branch for the pull request")
|
||||
public String getBase() {
|
||||
return base;
|
||||
}
|
||||
@@ -148,11 +148,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* The new description body for the pull request
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new description body for the pull request")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -194,11 +194,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get labels
|
||||
* The new list of label IDs for the pull request
|
||||
*
|
||||
* @return labels
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new list of label IDs for the pull request")
|
||||
public List<Long> getLabels() {
|
||||
return labels;
|
||||
}
|
||||
@@ -213,11 +213,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get milestone
|
||||
* The new milestone ID for the pull request
|
||||
*
|
||||
* @return milestone
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new milestone ID for the pull request")
|
||||
public Long getMilestone() {
|
||||
return milestone;
|
||||
}
|
||||
@@ -232,11 +232,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get state
|
||||
* The new state for the pull request
|
||||
*
|
||||
* @return state
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new state for the pull request")
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
@@ -251,11 +251,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* The new title for the pull request
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new title for the pull request")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
@@ -270,11 +270,11 @@ public class EditPullRequestOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get unsetDueDate
|
||||
* Whether to remove the current deadline
|
||||
*
|
||||
* @return unsetDueDate
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to remove the current deadline")
|
||||
public Boolean isUnsetDueDate() {
|
||||
return unsetDueDate;
|
||||
}
|
||||
|
||||
@@ -31,11 +31,11 @@ public class EditReactionOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get content
|
||||
* The reaction content (e.g., emoji or reaction type)
|
||||
*
|
||||
* @return content
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The reaction content (e.g., emoji or reaction type)")
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -46,11 +46,11 @@ public class EditReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* The new release notes or description
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new release notes or description")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -65,11 +65,11 @@ public class EditReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get draft
|
||||
* Whether to change the draft status
|
||||
*
|
||||
* @return draft
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to change the draft status")
|
||||
public Boolean isDraft() {
|
||||
return draft;
|
||||
}
|
||||
@@ -84,11 +84,11 @@ public class EditReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The new display title of the release
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new display title of the release")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -103,11 +103,11 @@ public class EditReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get prerelease
|
||||
* Whether to change the prerelease status
|
||||
*
|
||||
* @return prerelease
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to change the prerelease status")
|
||||
public Boolean isPrerelease() {
|
||||
return prerelease;
|
||||
}
|
||||
@@ -122,11 +122,11 @@ public class EditReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get tagName
|
||||
* The new name of the git tag
|
||||
*
|
||||
* @return tagName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new name of the git tag")
|
||||
public String getTagName() {
|
||||
return tagName;
|
||||
}
|
||||
@@ -141,11 +141,11 @@ public class EditReleaseOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get targetCommitish
|
||||
* The new target commitish for the release
|
||||
*
|
||||
* @return targetCommitish
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The new target commitish for the release")
|
||||
public String getTargetCommitish() {
|
||||
return targetCommitish;
|
||||
}
|
||||
|
||||
@@ -39,11 +39,11 @@ public class EditTagProtectionOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get namePattern
|
||||
* The pattern to match tag names for protection
|
||||
*
|
||||
* @return namePattern
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The pattern to match tag names for protection")
|
||||
public String getNamePattern() {
|
||||
return namePattern;
|
||||
}
|
||||
@@ -66,11 +66,11 @@ public class EditTagProtectionOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get whitelistTeams
|
||||
* List of team names allowed to create/delete protected tags
|
||||
*
|
||||
* @return whitelistTeams
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of team names allowed to create/delete protected tags")
|
||||
public List<String> getWhitelistTeams() {
|
||||
return whitelistTeams;
|
||||
}
|
||||
@@ -93,11 +93,11 @@ public class EditTagProtectionOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get whitelistUsernames
|
||||
* List of usernames allowed to create/delete protected tags
|
||||
*
|
||||
* @return whitelistUsernames
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of usernames allowed to create/delete protected tags")
|
||||
public List<String> getWhitelistUsernames() {
|
||||
return whitelistUsernames;
|
||||
}
|
||||
|
||||
@@ -104,11 +104,11 @@ public class EditTeamOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canCreateOrgRepo
|
||||
* Whether the team can create repositories in the organization
|
||||
*
|
||||
* @return canCreateOrgRepo
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the team can create repositories in the organization")
|
||||
public Boolean isCanCreateOrgRepo() {
|
||||
return canCreateOrgRepo;
|
||||
}
|
||||
@@ -123,11 +123,11 @@ public class EditTeamOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* The description of the team
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The description of the team")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -142,11 +142,11 @@ public class EditTeamOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get includesAllRepositories
|
||||
* Whether the team has access to all repositories in the organization
|
||||
*
|
||||
* @return includesAllRepositories
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the team has access to all repositories in the organization")
|
||||
public Boolean isIncludesAllRepositories() {
|
||||
return includesAllRepositories;
|
||||
}
|
||||
|
||||
@@ -82,11 +82,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get active
|
||||
* Whether the user account is active
|
||||
*
|
||||
* @return active
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user account is active")
|
||||
public Boolean isActive() {
|
||||
return active;
|
||||
}
|
||||
@@ -101,11 +101,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get admin
|
||||
* Whether the user has administrator privileges
|
||||
*
|
||||
* @return admin
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user has administrator privileges")
|
||||
public Boolean isAdmin() {
|
||||
return admin;
|
||||
}
|
||||
@@ -120,11 +120,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get allowCreateOrganization
|
||||
* Whether the user can create organizations
|
||||
*
|
||||
* @return allowCreateOrganization
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user can create organizations")
|
||||
public Boolean isAllowCreateOrganization() {
|
||||
return allowCreateOrganization;
|
||||
}
|
||||
@@ -139,11 +139,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get allowGitHook
|
||||
* Whether the user can use Git hooks
|
||||
*
|
||||
* @return allowGitHook
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user can use Git hooks")
|
||||
public Boolean isAllowGitHook() {
|
||||
return allowGitHook;
|
||||
}
|
||||
@@ -158,11 +158,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get allowImportLocal
|
||||
* Whether the user can import local repositories
|
||||
*
|
||||
* @return allowImportLocal
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user can import local repositories")
|
||||
public Boolean isAllowImportLocal() {
|
||||
return allowImportLocal;
|
||||
}
|
||||
@@ -177,11 +177,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* The user's personal description or bio
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The user's personal description or bio")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -215,11 +215,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fullName
|
||||
* The full display name of the user
|
||||
*
|
||||
* @return fullName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The full display name of the user")
|
||||
public String getFullName() {
|
||||
return fullName;
|
||||
}
|
||||
@@ -234,11 +234,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get location
|
||||
* The user's location or address
|
||||
*
|
||||
* @return location
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The user's location or address")
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
@@ -275,11 +275,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get maxRepoCreation
|
||||
* Maximum number of repositories the user can create
|
||||
*
|
||||
* @return maxRepoCreation
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Maximum number of repositories the user can create")
|
||||
public Long getMaxRepoCreation() {
|
||||
return maxRepoCreation;
|
||||
}
|
||||
@@ -294,11 +294,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mustChangePassword
|
||||
* Whether the user must change password on next login
|
||||
*
|
||||
* @return mustChangePassword
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user must change password on next login")
|
||||
public Boolean isMustChangePassword() {
|
||||
return mustChangePassword;
|
||||
}
|
||||
@@ -313,11 +313,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get password
|
||||
* The plain text password for the user
|
||||
*
|
||||
* @return password
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The plain text password for the user")
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
@@ -332,11 +332,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get prohibitLogin
|
||||
* Whether the user is prohibited from logging in
|
||||
*
|
||||
* @return prohibitLogin
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user is prohibited from logging in")
|
||||
public Boolean isProhibitLogin() {
|
||||
return prohibitLogin;
|
||||
}
|
||||
@@ -351,11 +351,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get restricted
|
||||
* Whether the user has restricted access privileges
|
||||
*
|
||||
* @return restricted
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user has restricted access privileges")
|
||||
public Boolean isRestricted() {
|
||||
return restricted;
|
||||
}
|
||||
@@ -389,11 +389,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get visibility
|
||||
* User visibility level: public, limited, or private
|
||||
*
|
||||
* @return visibility
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "User visibility level: public, limited, or private")
|
||||
public String getVisibility() {
|
||||
return visibility;
|
||||
}
|
||||
@@ -408,11 +408,11 @@ public class EditUserOption implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get website
|
||||
* The user's personal website URL
|
||||
*
|
||||
* @return website
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The user's personal website URL")
|
||||
public String getWebsite() {
|
||||
return website;
|
||||
}
|
||||
|
||||
@@ -62,11 +62,11 @@ public class Email implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get primary
|
||||
* Whether this is the primary email address
|
||||
*
|
||||
* @return primary
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether this is the primary email address")
|
||||
public Boolean isPrimary() {
|
||||
return primary;
|
||||
}
|
||||
@@ -81,11 +81,11 @@ public class Email implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get userId
|
||||
* The unique identifier of the user who owns this email
|
||||
*
|
||||
* @return userId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the user who owns this email")
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class Email implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get verified
|
||||
* Whether the email address has been verified
|
||||
*
|
||||
* @return verified
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the email address has been verified")
|
||||
public Boolean isVerified() {
|
||||
return verified;
|
||||
}
|
||||
|
||||
@@ -114,11 +114,11 @@ public class FileCommitResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* HTMLURL is the web URL for viewing this commit
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for viewing this commit")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -133,11 +133,11 @@ public class FileCommitResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get message
|
||||
* Message is the commit message
|
||||
*
|
||||
* @return message
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Message is the commit message")
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
@@ -160,11 +160,11 @@ public class FileCommitResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get parents
|
||||
* Parents contains parent commit metadata
|
||||
*
|
||||
* @return parents
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Parents contains parent commit metadata")
|
||||
public List<CommitMeta> getParents() {
|
||||
return parents;
|
||||
}
|
||||
@@ -179,11 +179,11 @@ public class FileCommitResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* SHA is the commit SHA hash
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "SHA is the commit SHA hash")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -217,11 +217,11 @@ public class FileCommitResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for the commit
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for the commit")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -57,11 +57,11 @@ public class FileDeleteResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get content
|
||||
* Content is always null for delete operations
|
||||
*
|
||||
* @return content
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Content is always null for delete operations")
|
||||
public Object getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,11 @@ public class FileLinksResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get git
|
||||
* GitURL is the Git API URL for this file
|
||||
*
|
||||
* @return git
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "GitURL is the Git API URL for this file")
|
||||
public String getGit() {
|
||||
return git;
|
||||
}
|
||||
@@ -56,11 +56,11 @@ public class FileLinksResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get html
|
||||
* HTMLURL is the web URL for this file
|
||||
*
|
||||
* @return html
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for this file")
|
||||
public String getHtml() {
|
||||
return html;
|
||||
}
|
||||
@@ -75,11 +75,11 @@ public class FileLinksResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get self
|
||||
* Self is the API URL for this file
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Self is the API URL for this file")
|
||||
public String getSelf() {
|
||||
return self;
|
||||
}
|
||||
|
||||
@@ -66,11 +66,11 @@ public class FilesResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get files
|
||||
* Files contains the list of file contents and metadata
|
||||
*
|
||||
* @return files
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Files contains the list of file contents and metadata")
|
||||
public List<ContentsResponse> getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
@@ -70,11 +70,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canCertify
|
||||
* Whether the key can be used for certification
|
||||
*
|
||||
* @return canCertify
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the key can be used for certification")
|
||||
public Boolean isCanCertify() {
|
||||
return canCertify;
|
||||
}
|
||||
@@ -89,11 +89,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canEncryptComms
|
||||
* Whether the key can be used for encrypting communications
|
||||
*
|
||||
* @return canEncryptComms
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the key can be used for encrypting communications")
|
||||
public Boolean isCanEncryptComms() {
|
||||
return canEncryptComms;
|
||||
}
|
||||
@@ -108,11 +108,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canEncryptStorage
|
||||
* Whether the key can be used for encrypting storage
|
||||
*
|
||||
* @return canEncryptStorage
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the key can be used for encrypting storage")
|
||||
public Boolean isCanEncryptStorage() {
|
||||
return canEncryptStorage;
|
||||
}
|
||||
@@ -127,11 +127,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canSign
|
||||
* Whether the key can be used for signing
|
||||
*
|
||||
* @return canSign
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the key can be used for signing")
|
||||
public Boolean isCanSign() {
|
||||
return canSign;
|
||||
}
|
||||
@@ -173,11 +173,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get emails
|
||||
* List of email addresses associated with this GPG key
|
||||
*
|
||||
* @return emails
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of email addresses associated with this GPG key")
|
||||
public List<GPGKeyEmail> getEmails() {
|
||||
return emails;
|
||||
}
|
||||
@@ -211,11 +211,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the GPG key
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the GPG key")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -230,11 +230,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get keyId
|
||||
* The key ID of the GPG key
|
||||
*
|
||||
* @return keyId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The key ID of the GPG key")
|
||||
public String getKeyId() {
|
||||
return keyId;
|
||||
}
|
||||
@@ -249,11 +249,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get primaryKeyId
|
||||
* The primary key ID of the GPG key
|
||||
*
|
||||
* @return primaryKeyId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The primary key ID of the GPG key")
|
||||
public String getPrimaryKeyId() {
|
||||
return primaryKeyId;
|
||||
}
|
||||
@@ -268,11 +268,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get publicKey
|
||||
* The public key content in armored format
|
||||
*
|
||||
* @return publicKey
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The public key content in armored format")
|
||||
public String getPublicKey() {
|
||||
return publicKey;
|
||||
}
|
||||
@@ -295,11 +295,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get subkeys
|
||||
* List of subkeys of this GPG key
|
||||
*
|
||||
* @return subkeys
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of subkeys of this GPG key")
|
||||
public List<GPGKey> getSubkeys() {
|
||||
return subkeys;
|
||||
}
|
||||
@@ -314,11 +314,11 @@ public class GPGKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get verified
|
||||
* Whether the GPG key has been verified
|
||||
*
|
||||
* @return verified
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the GPG key has been verified")
|
||||
public Boolean isVerified() {
|
||||
return verified;
|
||||
}
|
||||
|
||||
@@ -34,11 +34,11 @@ public class GPGKeyEmail implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get email
|
||||
* The email address associated with the GPG key
|
||||
*
|
||||
* @return email
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The email address associated with the GPG key")
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
@@ -53,11 +53,11 @@ public class GPGKeyEmail implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get verified
|
||||
* Whether the email address has been verified
|
||||
*
|
||||
* @return verified
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the email address has been verified")
|
||||
public Boolean isVerified() {
|
||||
return verified;
|
||||
}
|
||||
|
||||
@@ -43,11 +43,11 @@ public class GeneralAPISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get defaultGitTreesPerPage
|
||||
* DefaultGitTreesPerPage is the default number of Git tree items per page
|
||||
*
|
||||
* @return defaultGitTreesPerPage
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DefaultGitTreesPerPage is the default number of Git tree items per page")
|
||||
public Long getDefaultGitTreesPerPage() {
|
||||
return defaultGitTreesPerPage;
|
||||
}
|
||||
@@ -62,11 +62,11 @@ public class GeneralAPISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get defaultMaxBlobSize
|
||||
* DefaultMaxBlobSize is the default maximum blob size for API responses
|
||||
*
|
||||
* @return defaultMaxBlobSize
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DefaultMaxBlobSize is the default maximum blob size for API responses")
|
||||
public Long getDefaultMaxBlobSize() {
|
||||
return defaultMaxBlobSize;
|
||||
}
|
||||
@@ -81,11 +81,11 @@ public class GeneralAPISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get defaultMaxResponseSize
|
||||
* DefaultMaxResponseSize is the default maximum response size
|
||||
*
|
||||
* @return defaultMaxResponseSize
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DefaultMaxResponseSize is the default maximum response size")
|
||||
public Long getDefaultMaxResponseSize() {
|
||||
return defaultMaxResponseSize;
|
||||
}
|
||||
@@ -100,11 +100,11 @@ public class GeneralAPISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get defaultPagingNum
|
||||
* DefaultPagingNum is the default number of items per page
|
||||
*
|
||||
* @return defaultPagingNum
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DefaultPagingNum is the default number of items per page")
|
||||
public Long getDefaultPagingNum() {
|
||||
return defaultPagingNum;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class GeneralAPISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get maxResponseItems
|
||||
* MaxResponseItems is the maximum number of items returned in API responses
|
||||
*
|
||||
* @return maxResponseItems
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "MaxResponseItems is the maximum number of items returned in API responses")
|
||||
public Long getMaxResponseItems() {
|
||||
return maxResponseItems;
|
||||
}
|
||||
|
||||
@@ -41,11 +41,11 @@ public class GeneralAttachmentSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get allowedTypes
|
||||
* AllowedTypes contains the allowed file types for attachments
|
||||
*
|
||||
* @return allowedTypes
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "AllowedTypes contains the allowed file types for attachments")
|
||||
public String getAllowedTypes() {
|
||||
return allowedTypes;
|
||||
}
|
||||
@@ -60,11 +60,11 @@ public class GeneralAttachmentSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get enabled
|
||||
* Enabled indicates if file attachments are enabled
|
||||
*
|
||||
* @return enabled
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Enabled indicates if file attachments are enabled")
|
||||
public Boolean isEnabled() {
|
||||
return enabled;
|
||||
}
|
||||
@@ -79,11 +79,11 @@ public class GeneralAttachmentSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get maxFiles
|
||||
* MaxFiles is the maximum number of files per attachment
|
||||
*
|
||||
* @return maxFiles
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "MaxFiles is the maximum number of files per attachment")
|
||||
public Long getMaxFiles() {
|
||||
return maxFiles;
|
||||
}
|
||||
@@ -98,11 +98,11 @@ public class GeneralAttachmentSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get maxSize
|
||||
* MaxSize is the maximum size for individual attachments
|
||||
*
|
||||
* @return maxSize
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "MaxSize is the maximum size for individual attachments")
|
||||
public Long getMaxSize() {
|
||||
return maxSize;
|
||||
}
|
||||
|
||||
@@ -46,11 +46,11 @@ public class GeneralRepoSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get httpGitDisabled
|
||||
* HTTPGitDisabled indicates if HTTP Git operations are disabled
|
||||
*
|
||||
* @return httpGitDisabled
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTTPGitDisabled indicates if HTTP Git operations are disabled")
|
||||
public Boolean isHttpGitDisabled() {
|
||||
return httpGitDisabled;
|
||||
}
|
||||
@@ -65,11 +65,11 @@ public class GeneralRepoSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lfsDisabled
|
||||
* LFSDisabled indicates if Git LFS support is disabled
|
||||
*
|
||||
* @return lfsDisabled
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "LFSDisabled indicates if Git LFS support is disabled")
|
||||
public Boolean isLfsDisabled() {
|
||||
return lfsDisabled;
|
||||
}
|
||||
@@ -84,11 +84,11 @@ public class GeneralRepoSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get migrationsDisabled
|
||||
* MigrationsDisabled indicates if repository migrations are disabled
|
||||
*
|
||||
* @return migrationsDisabled
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "MigrationsDisabled indicates if repository migrations are disabled")
|
||||
public Boolean isMigrationsDisabled() {
|
||||
return migrationsDisabled;
|
||||
}
|
||||
@@ -103,11 +103,11 @@ public class GeneralRepoSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mirrorsDisabled
|
||||
* MirrorsDisabled indicates if repository mirroring is disabled
|
||||
*
|
||||
* @return mirrorsDisabled
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "MirrorsDisabled indicates if repository mirroring is disabled")
|
||||
public Boolean isMirrorsDisabled() {
|
||||
return mirrorsDisabled;
|
||||
}
|
||||
@@ -122,11 +122,11 @@ public class GeneralRepoSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get starsDisabled
|
||||
* StarsDisabled indicates if repository starring is disabled
|
||||
*
|
||||
* @return starsDisabled
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "StarsDisabled indicates if repository starring is disabled")
|
||||
public Boolean isStarsDisabled() {
|
||||
return starsDisabled;
|
||||
}
|
||||
@@ -141,11 +141,11 @@ public class GeneralRepoSettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get timeTrackingDisabled
|
||||
* TimeTrackingDisabled indicates if time tracking is disabled
|
||||
*
|
||||
* @return timeTrackingDisabled
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "TimeTrackingDisabled indicates if time tracking is disabled")
|
||||
public Boolean isTimeTrackingDisabled() {
|
||||
return timeTrackingDisabled;
|
||||
}
|
||||
|
||||
@@ -47,11 +47,11 @@ public class GeneralUISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get allowedReactions
|
||||
* AllowedReactions contains the list of allowed emoji reactions
|
||||
*
|
||||
* @return allowedReactions
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "AllowedReactions contains the list of allowed emoji reactions")
|
||||
public List<String> getAllowedReactions() {
|
||||
return allowedReactions;
|
||||
}
|
||||
@@ -74,11 +74,11 @@ public class GeneralUISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get customEmojis
|
||||
* CustomEmojis contains the list of custom emojis
|
||||
*
|
||||
* @return customEmojis
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "CustomEmojis contains the list of custom emojis")
|
||||
public List<String> getCustomEmojis() {
|
||||
return customEmojis;
|
||||
}
|
||||
@@ -93,11 +93,11 @@ public class GeneralUISettings implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get defaultTheme
|
||||
* DefaultTheme is the default UI theme
|
||||
*
|
||||
* @return defaultTheme
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "DefaultTheme is the default UI theme")
|
||||
public String getDefaultTheme() {
|
||||
return defaultTheme;
|
||||
}
|
||||
|
||||
@@ -42,11 +42,11 @@ public class GetFilesOptions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get files
|
||||
* Files is the list of file paths to retrieve
|
||||
*
|
||||
* @return files
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Files is the list of file paths to retrieve")
|
||||
public List<String> getFiles() {
|
||||
return files;
|
||||
}
|
||||
|
||||
@@ -49,11 +49,11 @@ public class GitBlobResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get content
|
||||
* The content of the git blob (may be base64 encoded)
|
||||
*
|
||||
* @return content
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The content of the git blob (may be base64 encoded)")
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
@@ -68,11 +68,11 @@ public class GitBlobResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get encoding
|
||||
* The encoding used for the content (e.g., \"base64\")
|
||||
*
|
||||
* @return encoding
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The encoding used for the content (e.g., \"base64\")")
|
||||
public String getEncoding() {
|
||||
return encoding;
|
||||
}
|
||||
@@ -87,11 +87,11 @@ public class GitBlobResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lfsOid
|
||||
* The LFS object ID if this blob is stored in LFS
|
||||
*
|
||||
* @return lfsOid
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The LFS object ID if this blob is stored in LFS")
|
||||
public String getLfsOid() {
|
||||
return lfsOid;
|
||||
}
|
||||
@@ -106,11 +106,11 @@ public class GitBlobResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lfsSize
|
||||
* The size of the LFS object if this blob is stored in LFS
|
||||
*
|
||||
* @return lfsSize
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The size of the LFS object if this blob is stored in LFS")
|
||||
public Long getLfsSize() {
|
||||
return lfsSize;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ public class GitBlobResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* The SHA hash of the git blob
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA hash of the git blob")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -144,11 +144,11 @@ public class GitBlobResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get size
|
||||
* The size of the git blob in bytes
|
||||
*
|
||||
* @return size
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The size of the git blob in bytes")
|
||||
public Long getSize() {
|
||||
return size;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class GitBlobResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The URL to access this git blob
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to access this git blob")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -46,11 +46,11 @@ public class GitEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mode
|
||||
* Mode is the file mode (permissions)
|
||||
*
|
||||
* @return mode
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Mode is the file mode (permissions)")
|
||||
public String getMode() {
|
||||
return mode;
|
||||
}
|
||||
@@ -65,11 +65,11 @@ public class GitEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get path
|
||||
* Path is the file or directory path
|
||||
*
|
||||
* @return path
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Path is the file or directory path")
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
@@ -84,11 +84,11 @@ public class GitEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* SHA is the Git object SHA
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "SHA is the Git object SHA")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -103,11 +103,11 @@ public class GitEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get size
|
||||
* Size is the file size in bytes
|
||||
*
|
||||
* @return size
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Size is the file size in bytes")
|
||||
public Long getSize() {
|
||||
return size;
|
||||
}
|
||||
@@ -122,11 +122,11 @@ public class GitEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get type
|
||||
* Type indicates if this is a file, directory, or symlink
|
||||
*
|
||||
* @return type
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Type indicates if this is a file, directory, or symlink")
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
@@ -141,11 +141,11 @@ public class GitEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this tree entry
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this tree entry")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,11 @@ public class GitHook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get content
|
||||
* Content contains the script content of the hook
|
||||
*
|
||||
* @return content
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Content contains the script content of the hook")
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
@@ -56,11 +56,11 @@ public class GitHook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get isActive
|
||||
* IsActive indicates if the hook is active
|
||||
*
|
||||
* @return isActive
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "IsActive indicates if the hook is active")
|
||||
public Boolean isIsActive() {
|
||||
return isActive;
|
||||
}
|
||||
@@ -75,11 +75,11 @@ public class GitHook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the name of the Git hook
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the name of the Git hook")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@@ -36,11 +36,11 @@ public class GitObject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* The SHA hash of the Git object
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA hash of the Git object")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -55,11 +55,11 @@ public class GitObject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get type
|
||||
* The type of the Git object (e.g., commit, tag, tree, blob)
|
||||
*
|
||||
* @return type
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The type of the Git object (e.g., commit, tag, tree, blob)")
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
@@ -74,11 +74,11 @@ public class GitObject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The URL to access this Git object
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to access this Git object")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -48,11 +48,11 @@ public class GitTreeResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get page
|
||||
* Page is the current page number for pagination
|
||||
*
|
||||
* @return page
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Page is the current page number for pagination")
|
||||
public Long getPage() {
|
||||
return page;
|
||||
}
|
||||
@@ -67,11 +67,11 @@ public class GitTreeResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* SHA is the tree object SHA
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "SHA is the tree object SHA")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
@@ -86,11 +86,11 @@ public class GitTreeResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get totalCount
|
||||
* TotalCount is the total number of entries in the tree
|
||||
*
|
||||
* @return totalCount
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "TotalCount is the total number of entries in the tree")
|
||||
public Long getTotalCount() {
|
||||
return totalCount;
|
||||
}
|
||||
@@ -113,11 +113,11 @@ public class GitTreeResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get tree
|
||||
* Entries contains the tree entries (files and directories)
|
||||
*
|
||||
* @return tree
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Entries contains the tree entries (files and directories)")
|
||||
public List<GitEntry> getTree() {
|
||||
return tree;
|
||||
}
|
||||
@@ -132,11 +132,11 @@ public class GitTreeResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get truncated
|
||||
* Truncated indicates if the response was truncated due to size
|
||||
*
|
||||
* @return truncated
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Truncated indicates if the response was truncated due to size")
|
||||
public Boolean isTruncated() {
|
||||
return truncated;
|
||||
}
|
||||
@@ -151,11 +151,11 @@ public class GitTreeResponse implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this tree
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this tree")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -34,11 +34,11 @@ public class GitignoreTemplateInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the name of the gitignore template
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the name of the gitignore template")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -53,11 +53,11 @@ public class GitignoreTemplateInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get source
|
||||
* Source contains the content of the gitignore template
|
||||
*
|
||||
* @return source
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Source contains the content of the gitignore template")
|
||||
public String getSource() {
|
||||
return source;
|
||||
}
|
||||
|
||||
@@ -60,11 +60,11 @@ public class Hook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get active
|
||||
* Whether the webhook is active and will be triggered
|
||||
*
|
||||
* @return active
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the webhook is active and will be triggered")
|
||||
public Boolean isActive() {
|
||||
return active;
|
||||
}
|
||||
@@ -79,11 +79,11 @@ public class Hook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get authorizationHeader
|
||||
* Authorization header to include in webhook requests
|
||||
*
|
||||
* @return authorizationHeader
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Authorization header to include in webhook requests")
|
||||
public String getAuthorizationHeader() {
|
||||
return authorizationHeader;
|
||||
}
|
||||
@@ -98,11 +98,11 @@ public class Hook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get branchFilter
|
||||
* Branch filter pattern to determine which branches trigger the webhook
|
||||
*
|
||||
* @return branchFilter
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Branch filter pattern to determine which branches trigger the webhook")
|
||||
public String getBranchFilter() {
|
||||
return branchFilter;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ public class Hook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get config
|
||||
* Configuration settings for the webhook
|
||||
*
|
||||
* @return config
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Configuration settings for the webhook")
|
||||
public Map<String, String> getConfig() {
|
||||
return config;
|
||||
}
|
||||
@@ -171,11 +171,11 @@ public class Hook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get events
|
||||
* List of events that trigger this webhook
|
||||
*
|
||||
* @return events
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of events that trigger this webhook")
|
||||
public List<String> getEvents() {
|
||||
return events;
|
||||
}
|
||||
@@ -190,11 +190,11 @@ public class Hook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the webhook
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the webhook")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -209,11 +209,11 @@ public class Hook implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get type
|
||||
* The type of the webhook (e.g., gitea, slack, discord)
|
||||
*
|
||||
* @return type
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The type of the webhook (e.g., gitea, slack, discord)")
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
@@ -53,11 +53,11 @@ public class Identity implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the person's name
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the person's name")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@@ -68,11 +68,11 @@ public class Label implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides additional context about the label's purpose
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides additional context about the label's purpose")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -106,11 +106,11 @@ public class Label implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the label
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the label")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -144,11 +144,11 @@ public class Label implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the display name of the label
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the display name of the label")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class Label implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API endpoint for accessing this label
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API endpoint for accessing this label")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -59,11 +59,12 @@ public class LabelTemplate implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides additional context about the label template's purpose
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description = "Description provides additional context about the label template's purpose")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -97,11 +98,11 @@ public class LabelTemplate implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the display name of the label template
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the display name of the label template")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@@ -43,11 +43,11 @@ public class LicenseTemplateInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* Body contains the full text of the license
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Body contains the full text of the license")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -62,11 +62,11 @@ public class LicenseTemplateInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get implementation
|
||||
* Implementation contains license implementation details
|
||||
*
|
||||
* @return implementation
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Implementation contains license implementation details")
|
||||
public String getImplementation() {
|
||||
return implementation;
|
||||
}
|
||||
@@ -81,11 +81,11 @@ public class LicenseTemplateInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get key
|
||||
* Key is the unique identifier for the license template
|
||||
*
|
||||
* @return key
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Key is the unique identifier for the license template")
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
@@ -100,11 +100,11 @@ public class LicenseTemplateInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the display name of the license
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the display name of the license")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class LicenseTemplateInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the reference URL for the license
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the reference URL for the license")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,11 @@ public class LicensesTemplateListEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get key
|
||||
* Key is the unique identifier for the license template
|
||||
*
|
||||
* @return key
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Key is the unique identifier for the license template")
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
@@ -56,11 +56,11 @@ public class LicensesTemplateListEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the display name of the license
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the display name of the license")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -75,11 +75,11 @@ public class LicensesTemplateListEntry implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the reference URL for the license
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the reference URL for the license")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -78,11 +78,11 @@ public class Milestone implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get closedIssues
|
||||
* ClosedIssues is the number of closed issues in this milestone
|
||||
*
|
||||
* @return closedIssues
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ClosedIssues is the number of closed issues in this milestone")
|
||||
public Long getClosedIssues() {
|
||||
return closedIssues;
|
||||
}
|
||||
@@ -116,11 +116,11 @@ public class Milestone implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* Description provides details about the milestone
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Description provides details about the milestone")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -154,11 +154,11 @@ public class Milestone implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the milestone
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the milestone")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -173,11 +173,11 @@ public class Milestone implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get openIssues
|
||||
* OpenIssues is the number of open issues in this milestone
|
||||
*
|
||||
* @return openIssues
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "OpenIssues is the number of open issues in this milestone")
|
||||
public Long getOpenIssues() {
|
||||
return openIssues;
|
||||
}
|
||||
@@ -211,11 +211,11 @@ public class Milestone implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* Title is the title of the milestone
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Title is the title of the milestone")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
@@ -94,11 +94,11 @@ public class ModelPackage implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* The HTML URL to view the package
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The HTML URL to view the package")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -113,11 +113,11 @@ public class ModelPackage implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the package
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the package")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -132,11 +132,11 @@ public class ModelPackage implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The name of the package
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the package")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -189,11 +189,11 @@ public class ModelPackage implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get type
|
||||
* The type of the package (e.g., npm, maven, docker)
|
||||
*
|
||||
* @return type
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The type of the package (e.g., npm, maven, docker)")
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
@@ -208,11 +208,11 @@ public class ModelPackage implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get version
|
||||
* The version of the package
|
||||
*
|
||||
* @return version
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The version of the package")
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
@@ -57,11 +57,11 @@ public class NodeInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get metadata
|
||||
* Metadata contains free form key value pairs for software specific values
|
||||
*
|
||||
* @return metadata
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Metadata contains free form key value pairs for software specific values")
|
||||
public Object getMetadata() {
|
||||
return metadata;
|
||||
}
|
||||
@@ -76,11 +76,11 @@ public class NodeInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get openRegistrations
|
||||
* OpenRegistrations indicates if new user registrations are accepted
|
||||
*
|
||||
* @return openRegistrations
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "OpenRegistrations indicates if new user registrations are accepted")
|
||||
public Boolean isOpenRegistrations() {
|
||||
return openRegistrations;
|
||||
}
|
||||
@@ -103,11 +103,11 @@ public class NodeInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get protocols
|
||||
* Protocols lists the protocols supported by this server
|
||||
*
|
||||
* @return protocols
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Protocols lists the protocols supported by this server")
|
||||
public List<String> getProtocols() {
|
||||
return protocols;
|
||||
}
|
||||
@@ -179,11 +179,11 @@ public class NodeInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get version
|
||||
* Version specifies the schema version
|
||||
*
|
||||
* @return version
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Version specifies the schema version")
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
@@ -50,11 +50,11 @@ public class NodeInfoServices implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get inbound
|
||||
* Inbound lists services that can deliver content to this server
|
||||
*
|
||||
* @return inbound
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Inbound lists services that can deliver content to this server")
|
||||
public List<String> getInbound() {
|
||||
return inbound;
|
||||
}
|
||||
@@ -77,11 +77,11 @@ public class NodeInfoServices implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get outbound
|
||||
* Outbound lists services this server can deliver content to
|
||||
*
|
||||
* @return outbound
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Outbound lists services this server can deliver content to")
|
||||
public List<String> getOutbound() {
|
||||
return outbound;
|
||||
}
|
||||
|
||||
@@ -40,11 +40,11 @@ public class NodeInfoSoftware implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get homepage
|
||||
* Homepage is the URL to the homepage of this server software
|
||||
*
|
||||
* @return homepage
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Homepage is the URL to the homepage of this server software")
|
||||
public String getHomepage() {
|
||||
return homepage;
|
||||
}
|
||||
@@ -59,11 +59,11 @@ public class NodeInfoSoftware implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* Name is the canonical name of this server software
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Name is the canonical name of this server software")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -78,11 +78,11 @@ public class NodeInfoSoftware implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get repository
|
||||
* Repository is the URL to the source code repository
|
||||
*
|
||||
* @return repository
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Repository is the URL to the source code repository")
|
||||
public String getRepository() {
|
||||
return repository;
|
||||
}
|
||||
@@ -97,11 +97,11 @@ public class NodeInfoSoftware implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get version
|
||||
* Version is the version of this server software
|
||||
*
|
||||
* @return version
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Version is the version of this server software")
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,13 @@ public class NodeInfoUsage implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get localComments
|
||||
* LocalComments is the total amount of comments made by users local to this server
|
||||
*
|
||||
* @return localComments
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"LocalComments is the total amount of comments made by users local to this server")
|
||||
public Long getLocalComments() {
|
||||
return localComments;
|
||||
}
|
||||
@@ -56,11 +58,12 @@ public class NodeInfoUsage implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get localPosts
|
||||
* LocalPosts is the total amount of posts made by users local to this server
|
||||
*
|
||||
* @return localPosts
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description = "LocalPosts is the total amount of posts made by users local to this server")
|
||||
public Long getLocalPosts() {
|
||||
return localPosts;
|
||||
}
|
||||
|
||||
@@ -37,11 +37,13 @@ public class NodeInfoUsageUsers implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get activeHalfyear
|
||||
* ActiveHalfyear is the amount of users that signed in at least once in the last 180 days
|
||||
*
|
||||
* @return activeHalfyear
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"ActiveHalfyear is the amount of users that signed in at least once in the last 180 days")
|
||||
public Long getActiveHalfyear() {
|
||||
return activeHalfyear;
|
||||
}
|
||||
@@ -56,11 +58,13 @@ public class NodeInfoUsageUsers implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get activeMonth
|
||||
* ActiveMonth is the amount of users that signed in at least once in the last 30 days
|
||||
*
|
||||
* @return activeMonth
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(
|
||||
description =
|
||||
"ActiveMonth is the amount of users that signed in at least once in the last 30 days")
|
||||
public Long getActiveMonth() {
|
||||
return activeMonth;
|
||||
}
|
||||
@@ -75,11 +79,11 @@ public class NodeInfoUsageUsers implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get total
|
||||
* Total is the total amount of users on this server
|
||||
*
|
||||
* @return total
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Total is the total amount of users on this server")
|
||||
public Long getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
@@ -53,11 +53,11 @@ public class Note implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get message
|
||||
* The content message of the git note
|
||||
*
|
||||
* @return message
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The content message of the git note")
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
@@ -31,11 +31,11 @@ public class NotificationCount implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get _new
|
||||
* New is the number of unread notifications
|
||||
*
|
||||
* @return _new
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "New is the number of unread notifications")
|
||||
public Long getNew() {
|
||||
return _new;
|
||||
}
|
||||
|
||||
@@ -49,11 +49,11 @@ public class NotificationSubject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* HTMLURL is the web URL for the notification subject
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for the notification subject")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -68,11 +68,11 @@ public class NotificationSubject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get latestCommentHtmlUrl
|
||||
* LatestCommentHTMLURL is the web URL for the latest comment
|
||||
*
|
||||
* @return latestCommentHtmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "LatestCommentHTMLURL is the web URL for the latest comment")
|
||||
public String getLatestCommentHtmlUrl() {
|
||||
return latestCommentHtmlUrl;
|
||||
}
|
||||
@@ -87,11 +87,11 @@ public class NotificationSubject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get latestCommentUrl
|
||||
* LatestCommentURL is the API URL for the latest comment
|
||||
*
|
||||
* @return latestCommentUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "LatestCommentURL is the API URL for the latest comment")
|
||||
public String getLatestCommentUrl() {
|
||||
return latestCommentUrl;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ public class NotificationSubject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* Title is the title of the notification subject
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Title is the title of the notification subject")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class NotificationSubject implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for the notification subject
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for the notification subject")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -50,11 +50,11 @@ public class NotificationThread implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the notification thread
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the notification thread")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -69,11 +69,11 @@ public class NotificationThread implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get pinned
|
||||
* Pinned indicates if the notification is pinned
|
||||
*
|
||||
* @return pinned
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Pinned indicates if the notification is pinned")
|
||||
public Boolean isPinned() {
|
||||
return pinned;
|
||||
}
|
||||
@@ -126,11 +126,11 @@ public class NotificationThread implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get unread
|
||||
* Unread indicates if the notification has been read
|
||||
*
|
||||
* @return unread
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Unread indicates if the notification has been read")
|
||||
public Boolean isUnread() {
|
||||
return unread;
|
||||
}
|
||||
@@ -145,11 +145,11 @@ public class NotificationThread implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get updatedAt
|
||||
* UpdatedAt is the time when the notification was last updated
|
||||
*
|
||||
* @return updatedAt
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "UpdatedAt is the time when the notification was last updated")
|
||||
public Date getUpdatedAt() {
|
||||
return updatedAt;
|
||||
}
|
||||
@@ -164,11 +164,11 @@ public class NotificationThread implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this notification thread
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this notification thread")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -54,11 +54,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get clientId
|
||||
* The client ID of the OAuth2 application
|
||||
*
|
||||
* @return clientId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The client ID of the OAuth2 application")
|
||||
public String getClientId() {
|
||||
return clientId;
|
||||
}
|
||||
@@ -73,11 +73,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get clientSecret
|
||||
* The client secret of the OAuth2 application
|
||||
*
|
||||
* @return clientSecret
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The client secret of the OAuth2 application")
|
||||
public String getClientSecret() {
|
||||
return clientSecret;
|
||||
}
|
||||
@@ -92,11 +92,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get confidentialClient
|
||||
* Whether the client is confidential
|
||||
*
|
||||
* @return confidentialClient
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the client is confidential")
|
||||
public Boolean isConfidentialClient() {
|
||||
return confidentialClient;
|
||||
}
|
||||
@@ -111,11 +111,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get created
|
||||
* The timestamp when the application was created
|
||||
*
|
||||
* @return created
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The timestamp when the application was created")
|
||||
public Date getCreated() {
|
||||
return created;
|
||||
}
|
||||
@@ -130,11 +130,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the OAuth2 application
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the OAuth2 application")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -149,11 +149,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The name of the OAuth2 application
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the OAuth2 application")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -176,11 +176,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get redirectUris
|
||||
* The list of allowed redirect URIs
|
||||
*
|
||||
* @return redirectUris
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The list of allowed redirect URIs")
|
||||
public List<String> getRedirectUris() {
|
||||
return redirectUris;
|
||||
}
|
||||
@@ -195,11 +195,11 @@ public class OAuth2Application implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get skipSecondaryAuthorization
|
||||
* Whether to skip secondary authorization
|
||||
*
|
||||
* @return skipSecondaryAuthorization
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to skip secondary authorization")
|
||||
public Boolean isSkipSecondaryAuthorization() {
|
||||
return skipSecondaryAuthorization;
|
||||
}
|
||||
|
||||
@@ -61,11 +61,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get avatarUrl
|
||||
* The URL of the organization's avatar
|
||||
*
|
||||
* @return avatarUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL of the organization's avatar")
|
||||
public String getAvatarUrl() {
|
||||
return avatarUrl;
|
||||
}
|
||||
@@ -80,11 +80,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get description
|
||||
* The description of the organization
|
||||
*
|
||||
* @return description
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The description of the organization")
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
@@ -99,11 +99,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get email
|
||||
* The email address of the organization
|
||||
*
|
||||
* @return email
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The email address of the organization")
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
@@ -118,11 +118,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fullName
|
||||
* The full display name of the organization
|
||||
*
|
||||
* @return fullName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The full display name of the organization")
|
||||
public String getFullName() {
|
||||
return fullName;
|
||||
}
|
||||
@@ -137,11 +137,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the organization
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the organization")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -156,11 +156,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get location
|
||||
* The location of the organization
|
||||
*
|
||||
* @return location
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The location of the organization")
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
@@ -175,11 +175,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The name of the organization
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the organization")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -194,11 +194,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get repoAdminChangeTeamAccess
|
||||
* Whether repository administrators can change team access
|
||||
*
|
||||
* @return repoAdminChangeTeamAccess
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether repository administrators can change team access")
|
||||
public Boolean isRepoAdminChangeTeamAccess() {
|
||||
return repoAdminChangeTeamAccess;
|
||||
}
|
||||
@@ -232,11 +232,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get visibility
|
||||
* The visibility level of the organization (public, limited, private)
|
||||
*
|
||||
* @return visibility
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The visibility level of the organization (public, limited, private)")
|
||||
public String getVisibility() {
|
||||
return visibility;
|
||||
}
|
||||
@@ -251,11 +251,11 @@ public class Organization implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get website
|
||||
* The website URL of the organization
|
||||
*
|
||||
* @return website
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The website URL of the organization")
|
||||
public String getWebsite() {
|
||||
return website;
|
||||
}
|
||||
|
||||
@@ -43,11 +43,11 @@ public class OrganizationPermissions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canCreateRepository
|
||||
* Whether the user can create repositories in the organization
|
||||
*
|
||||
* @return canCreateRepository
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user can create repositories in the organization")
|
||||
public Boolean isCanCreateRepository() {
|
||||
return canCreateRepository;
|
||||
}
|
||||
@@ -62,11 +62,11 @@ public class OrganizationPermissions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canRead
|
||||
* Whether the user can read the organization
|
||||
*
|
||||
* @return canRead
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user can read the organization")
|
||||
public Boolean isCanRead() {
|
||||
return canRead;
|
||||
}
|
||||
@@ -81,11 +81,11 @@ public class OrganizationPermissions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get canWrite
|
||||
* Whether the user can write to the organization
|
||||
*
|
||||
* @return canWrite
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user can write to the organization")
|
||||
public Boolean isCanWrite() {
|
||||
return canWrite;
|
||||
}
|
||||
@@ -100,11 +100,11 @@ public class OrganizationPermissions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get isAdmin
|
||||
* Whether the user is an admin of the organization
|
||||
*
|
||||
* @return isAdmin
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user is an admin of the organization")
|
||||
public Boolean isIsAdmin() {
|
||||
return isAdmin;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class OrganizationPermissions implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get isOwner
|
||||
* Whether the user is an owner of the organization
|
||||
*
|
||||
* @return isOwner
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the user is an owner of the organization")
|
||||
public Boolean isIsOwner() {
|
||||
return isOwner;
|
||||
}
|
||||
|
||||
@@ -43,11 +43,11 @@ public class PRBranchInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get label
|
||||
* The display name of the branch
|
||||
*
|
||||
* @return label
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The display name of the branch")
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
@@ -62,11 +62,11 @@ public class PRBranchInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get ref
|
||||
* The git reference of the branch
|
||||
*
|
||||
* @return ref
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The git reference of the branch")
|
||||
public String getRef() {
|
||||
return ref;
|
||||
}
|
||||
@@ -100,11 +100,11 @@ public class PRBranchInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get repoId
|
||||
* The unique identifier of the repository
|
||||
*
|
||||
* @return repoId
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the repository")
|
||||
public Long getRepoId() {
|
||||
return repoId;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class PRBranchInfo implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha
|
||||
* The commit SHA of the branch head
|
||||
*
|
||||
* @return sha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The commit SHA of the branch head")
|
||||
public String getSha() {
|
||||
return sha;
|
||||
}
|
||||
|
||||
@@ -49,11 +49,11 @@ public class PackageFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the package file
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the package file")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -68,11 +68,11 @@ public class PackageFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get md5
|
||||
* The MD5 hash of the package file
|
||||
*
|
||||
* @return md5
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The MD5 hash of the package file")
|
||||
public String getMd5() {
|
||||
return md5;
|
||||
}
|
||||
@@ -87,11 +87,11 @@ public class PackageFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The name of the package file
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the package file")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -106,11 +106,11 @@ public class PackageFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha1
|
||||
* The SHA1 hash of the package file
|
||||
*
|
||||
* @return sha1
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA1 hash of the package file")
|
||||
public String getSha1() {
|
||||
return sha1;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ public class PackageFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha256
|
||||
* The SHA256 hash of the package file
|
||||
*
|
||||
* @return sha256
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA256 hash of the package file")
|
||||
public String getSha256() {
|
||||
return sha256;
|
||||
}
|
||||
@@ -144,11 +144,11 @@ public class PackageFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get sha512
|
||||
* The SHA512 hash of the package file
|
||||
*
|
||||
* @return sha512
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA512 hash of the package file")
|
||||
public String getSha512() {
|
||||
return sha512;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class PackageFile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get size
|
||||
* The size of the package file in bytes
|
||||
*
|
||||
* @return size
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The size of the package file in bytes")
|
||||
public Long getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
@@ -69,11 +69,11 @@ public class PayloadCommit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get added
|
||||
* List of files added in this commit
|
||||
*
|
||||
* @return added
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of files added in this commit")
|
||||
public List<String> getAdded() {
|
||||
return added;
|
||||
}
|
||||
@@ -145,11 +145,11 @@ public class PayloadCommit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get message
|
||||
* The commit message
|
||||
*
|
||||
* @return message
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The commit message")
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
@@ -172,11 +172,11 @@ public class PayloadCommit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get modified
|
||||
* List of files modified in this commit
|
||||
*
|
||||
* @return modified
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of files modified in this commit")
|
||||
public List<String> getModified() {
|
||||
return modified;
|
||||
}
|
||||
@@ -199,11 +199,11 @@ public class PayloadCommit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get removed
|
||||
* List of files removed in this commit
|
||||
*
|
||||
* @return removed
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "List of files removed in this commit")
|
||||
public List<String> getRemoved() {
|
||||
return removed;
|
||||
}
|
||||
@@ -237,11 +237,11 @@ public class PayloadCommit implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The URL to view this commit
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to view this commit")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -43,11 +43,11 @@ public class PayloadCommitVerification implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get payload
|
||||
* The signed payload content
|
||||
*
|
||||
* @return payload
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The signed payload content")
|
||||
public String getPayload() {
|
||||
return payload;
|
||||
}
|
||||
@@ -62,11 +62,11 @@ public class PayloadCommitVerification implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get reason
|
||||
* The reason for the verification status
|
||||
*
|
||||
* @return reason
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The reason for the verification status")
|
||||
public String getReason() {
|
||||
return reason;
|
||||
}
|
||||
@@ -81,11 +81,11 @@ public class PayloadCommitVerification implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get signature
|
||||
* The GPG signature of the commit
|
||||
*
|
||||
* @return signature
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The GPG signature of the commit")
|
||||
public String getSignature() {
|
||||
return signature;
|
||||
}
|
||||
@@ -119,11 +119,11 @@ public class PayloadCommitVerification implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get verified
|
||||
* Whether the commit signature is verified
|
||||
*
|
||||
* @return verified
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the commit signature is verified")
|
||||
public Boolean isVerified() {
|
||||
return verified;
|
||||
}
|
||||
|
||||
@@ -78,11 +78,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fingerprint
|
||||
* Fingerprint is the key's fingerprint
|
||||
*
|
||||
* @return fingerprint
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Fingerprint is the key's fingerprint")
|
||||
public String getFingerprint() {
|
||||
return fingerprint;
|
||||
}
|
||||
@@ -97,11 +97,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* ID is the unique identifier for the public key
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ID is the unique identifier for the public key")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -116,11 +116,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get key
|
||||
* Key contains the actual SSH public key content
|
||||
*
|
||||
* @return key
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Key contains the actual SSH public key content")
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
@@ -135,11 +135,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get keyType
|
||||
* KeyType indicates the type of the SSH key
|
||||
*
|
||||
* @return keyType
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "KeyType indicates the type of the SSH key")
|
||||
public String getKeyType() {
|
||||
return keyType;
|
||||
}
|
||||
@@ -154,11 +154,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lastUsedAt
|
||||
* Updated is the time when the key was last used
|
||||
*
|
||||
* @return lastUsedAt
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Updated is the time when the key was last used")
|
||||
public Date getLastUsedAt() {
|
||||
return lastUsedAt;
|
||||
}
|
||||
@@ -173,11 +173,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get readOnly
|
||||
* ReadOnly indicates if the key has read-only access
|
||||
*
|
||||
* @return readOnly
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "ReadOnly indicates if the key has read-only access")
|
||||
public Boolean isReadOnly() {
|
||||
return readOnly;
|
||||
}
|
||||
@@ -192,11 +192,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* Title is the human-readable name for the key
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Title is the human-readable name for the key")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
@@ -211,11 +211,11 @@ public class PublicKey implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* URL is the API URL for this key
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "URL is the API URL for this key")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -142,11 +142,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get additions
|
||||
* The number of lines added in the pull request
|
||||
*
|
||||
* @return additions
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The number of lines added in the pull request")
|
||||
public Long getAdditions() {
|
||||
return additions;
|
||||
}
|
||||
@@ -161,11 +161,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get allowMaintainerEdit
|
||||
* Whether maintainers can edit the pull request
|
||||
*
|
||||
* @return allowMaintainerEdit
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether maintainers can edit the pull request")
|
||||
public Boolean isAllowMaintainerEdit() {
|
||||
return allowMaintainerEdit;
|
||||
}
|
||||
@@ -207,11 +207,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get assignees
|
||||
* The list of users assigned to the pull request
|
||||
*
|
||||
* @return assignees
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The list of users assigned to the pull request")
|
||||
public List<User> getAssignees() {
|
||||
return assignees;
|
||||
}
|
||||
@@ -245,11 +245,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* The description body of the pull request
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The description body of the pull request")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -264,11 +264,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get changedFiles
|
||||
* The number of files changed in the pull request
|
||||
*
|
||||
* @return changedFiles
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The number of files changed in the pull request")
|
||||
public Long getChangedFiles() {
|
||||
return changedFiles;
|
||||
}
|
||||
@@ -302,11 +302,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get comments
|
||||
* The number of comments on the pull request
|
||||
*
|
||||
* @return comments
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The number of comments on the pull request")
|
||||
public Long getComments() {
|
||||
return comments;
|
||||
}
|
||||
@@ -340,11 +340,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get deletions
|
||||
* The number of lines deleted in the pull request
|
||||
*
|
||||
* @return deletions
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The number of lines deleted in the pull request")
|
||||
public Long getDeletions() {
|
||||
return deletions;
|
||||
}
|
||||
@@ -359,11 +359,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get diffUrl
|
||||
* The URL to download the diff patch
|
||||
*
|
||||
* @return diffUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to download the diff patch")
|
||||
public String getDiffUrl() {
|
||||
return diffUrl;
|
||||
}
|
||||
@@ -378,11 +378,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get draft
|
||||
* Whether the pull request is a draft
|
||||
*
|
||||
* @return draft
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the pull request is a draft")
|
||||
public Boolean isDraft() {
|
||||
return draft;
|
||||
}
|
||||
@@ -435,11 +435,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* The HTML URL to view the pull request
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The HTML URL to view the pull request")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -454,11 +454,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the pull request
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the pull request")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -473,11 +473,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get isLocked
|
||||
* Whether the pull request conversation is locked
|
||||
*
|
||||
* @return isLocked
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the pull request conversation is locked")
|
||||
public Boolean isIsLocked() {
|
||||
return isLocked;
|
||||
}
|
||||
@@ -500,11 +500,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get labels
|
||||
* The labels attached to the pull request
|
||||
*
|
||||
* @return labels
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The labels attached to the pull request")
|
||||
public List<Label> getLabels() {
|
||||
return labels;
|
||||
}
|
||||
@@ -519,11 +519,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mergeBase
|
||||
* The merge base commit SHA
|
||||
*
|
||||
* @return mergeBase
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The merge base commit SHA")
|
||||
public String getMergeBase() {
|
||||
return mergeBase;
|
||||
}
|
||||
@@ -538,11 +538,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mergeCommitSha
|
||||
* The SHA of the merge commit
|
||||
*
|
||||
* @return mergeCommitSha
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The SHA of the merge commit")
|
||||
public String getMergeCommitSha() {
|
||||
return mergeCommitSha;
|
||||
}
|
||||
@@ -557,11 +557,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mergeable
|
||||
* Whether the pull request can be merged
|
||||
*
|
||||
* @return mergeable
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the pull request can be merged")
|
||||
public Boolean isMergeable() {
|
||||
return mergeable;
|
||||
}
|
||||
@@ -576,11 +576,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get merged
|
||||
* Whether the pull request has been merged
|
||||
*
|
||||
* @return merged
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the pull request has been merged")
|
||||
public Boolean isMerged() {
|
||||
return merged;
|
||||
}
|
||||
@@ -652,11 +652,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get number
|
||||
* The pull request number
|
||||
*
|
||||
* @return number
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The pull request number")
|
||||
public Long getNumber() {
|
||||
return number;
|
||||
}
|
||||
@@ -671,11 +671,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get patchUrl
|
||||
* The URL to download the patch file
|
||||
*
|
||||
* @return patchUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to download the patch file")
|
||||
public String getPatchUrl() {
|
||||
return patchUrl;
|
||||
}
|
||||
@@ -690,11 +690,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get pinOrder
|
||||
* The pin order for the pull request
|
||||
*
|
||||
* @return pinOrder
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The pin order for the pull request")
|
||||
public Long getPinOrder() {
|
||||
return pinOrder;
|
||||
}
|
||||
@@ -717,11 +717,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get requestedReviewers
|
||||
* The users requested to review the pull request
|
||||
*
|
||||
* @return requestedReviewers
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The users requested to review the pull request")
|
||||
public List<User> getRequestedReviewers() {
|
||||
return requestedReviewers;
|
||||
}
|
||||
@@ -744,11 +744,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get requestedReviewersTeams
|
||||
* The teams requested to review the pull request
|
||||
*
|
||||
* @return requestedReviewersTeams
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The teams requested to review the pull request")
|
||||
public List<Team> getRequestedReviewersTeams() {
|
||||
return requestedReviewersTeams;
|
||||
}
|
||||
@@ -805,11 +805,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get title
|
||||
* The title of the pull request
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The title of the pull request")
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
@@ -843,11 +843,11 @@ public class PullRequest implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The API URL of the pull request
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The API URL of the pull request")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -147,11 +147,11 @@ public class PullReview implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* HTMLURL is the web URL for viewing the review
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLURL is the web URL for viewing the review")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -204,11 +204,11 @@ public class PullReview implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get pullRequestUrl
|
||||
* HTMLPullURL is the web URL for the pull request
|
||||
*
|
||||
* @return pullRequestUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "HTMLPullURL is the web URL for the pull request")
|
||||
public String getPullRequestUrl() {
|
||||
return pullRequestUrl;
|
||||
}
|
||||
|
||||
@@ -72,11 +72,11 @@ public class PushMirror implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get interval
|
||||
* The sync interval for automatic updates
|
||||
*
|
||||
* @return interval
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The sync interval for automatic updates")
|
||||
public String getInterval() {
|
||||
return interval;
|
||||
}
|
||||
@@ -91,11 +91,11 @@ public class PushMirror implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get lastError
|
||||
* The last error message encountered during sync
|
||||
*
|
||||
* @return lastError
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The last error message encountered during sync")
|
||||
public String getLastError() {
|
||||
return lastError;
|
||||
}
|
||||
@@ -129,11 +129,11 @@ public class PushMirror implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get remoteAddress
|
||||
* The remote repository URL being mirrored to
|
||||
*
|
||||
* @return remoteAddress
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The remote repository URL being mirrored to")
|
||||
public String getRemoteAddress() {
|
||||
return remoteAddress;
|
||||
}
|
||||
@@ -148,11 +148,11 @@ public class PushMirror implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get remoteName
|
||||
* The name of the remote in the git configuration
|
||||
*
|
||||
* @return remoteName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the remote in the git configuration")
|
||||
public String getRemoteName() {
|
||||
return remoteName;
|
||||
}
|
||||
@@ -167,11 +167,11 @@ public class PushMirror implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get repoName
|
||||
* The name of the source repository
|
||||
*
|
||||
* @return repoName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the source repository")
|
||||
public String getRepoName() {
|
||||
return repoName;
|
||||
}
|
||||
@@ -186,11 +186,11 @@ public class PushMirror implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get syncOnCommit
|
||||
* Whether to sync on every commit
|
||||
*
|
||||
* @return syncOnCommit
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether to sync on every commit")
|
||||
public Boolean isSyncOnCommit() {
|
||||
return syncOnCommit;
|
||||
}
|
||||
|
||||
@@ -38,11 +38,11 @@ public class Reaction implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get content
|
||||
* The reaction content (e.g., emoji or reaction type)
|
||||
*
|
||||
* @return content
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The reaction content (e.g., emoji or reaction type)")
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -55,11 +55,11 @@ public class Reference implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get ref
|
||||
* The name of the Git reference (e.g., refs/heads/main)
|
||||
*
|
||||
* @return ref
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the Git reference (e.g., refs/heads/main)")
|
||||
public String getRef() {
|
||||
return ref;
|
||||
}
|
||||
@@ -74,11 +74,11 @@ public class Reference implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The URL to access this Git reference
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to access this Git reference")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
@@ -87,11 +87,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get assets
|
||||
* The files attached to the release
|
||||
*
|
||||
* @return assets
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The files attached to the release")
|
||||
public List<Attachment> getAssets() {
|
||||
return assets;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get body
|
||||
* The release notes or description
|
||||
*
|
||||
* @return body
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The release notes or description")
|
||||
public String getBody() {
|
||||
return body;
|
||||
}
|
||||
@@ -163,11 +163,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get draft
|
||||
* Whether the release is a draft
|
||||
*
|
||||
* @return draft
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the release is a draft")
|
||||
public Boolean isDraft() {
|
||||
return draft;
|
||||
}
|
||||
@@ -182,11 +182,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get htmlUrl
|
||||
* The HTML URL to view the release
|
||||
*
|
||||
* @return htmlUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The HTML URL to view the release")
|
||||
public String getHtmlUrl() {
|
||||
return htmlUrl;
|
||||
}
|
||||
@@ -201,11 +201,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get id
|
||||
* The unique identifier of the release
|
||||
*
|
||||
* @return id
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The unique identifier of the release")
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -220,11 +220,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get name
|
||||
* The display title of the release
|
||||
*
|
||||
* @return name
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The display title of the release")
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
@@ -239,11 +239,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get prerelease
|
||||
* Whether the release is a prerelease
|
||||
*
|
||||
* @return prerelease
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "Whether the release is a prerelease")
|
||||
public Boolean isPrerelease() {
|
||||
return prerelease;
|
||||
}
|
||||
@@ -277,11 +277,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get tagName
|
||||
* The name of the git tag associated with the release
|
||||
*
|
||||
* @return tagName
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The name of the git tag associated with the release")
|
||||
public String getTagName() {
|
||||
return tagName;
|
||||
}
|
||||
@@ -296,11 +296,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get tarballUrl
|
||||
* The URL to download the tarball archive
|
||||
*
|
||||
* @return tarballUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to download the tarball archive")
|
||||
public String getTarballUrl() {
|
||||
return tarballUrl;
|
||||
}
|
||||
@@ -315,11 +315,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get targetCommitish
|
||||
* The target commitish for the release
|
||||
*
|
||||
* @return targetCommitish
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The target commitish for the release")
|
||||
public String getTargetCommitish() {
|
||||
return targetCommitish;
|
||||
}
|
||||
@@ -334,11 +334,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get uploadUrl
|
||||
* The URL template for uploading release assets
|
||||
*
|
||||
* @return uploadUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL template for uploading release assets")
|
||||
public String getUploadUrl() {
|
||||
return uploadUrl;
|
||||
}
|
||||
@@ -353,11 +353,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get url
|
||||
* The API URL of the release
|
||||
*
|
||||
* @return url
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The API URL of the release")
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
@@ -372,11 +372,11 @@ public class Release implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get zipballUrl
|
||||
* The URL to download the zip archive
|
||||
*
|
||||
* @return zipballUrl
|
||||
*/
|
||||
@Schema(description = "")
|
||||
@Schema(description = "The URL to download the zip archive")
|
||||
public String getZipballUrl() {
|
||||
return zipballUrl;
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user