Skip to content

Commit 204c668

Browse files
committed
Update readme etc.
Signed-off-by: Andrew Thornton <[email protected]>
1 parent f741989 commit 204c668

File tree

134 files changed

+400
-163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+400
-163
lines changed

README.md

+258-31

pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@
4848
<language>java</language>
4949
<apiPackage>io.gitea.api</apiPackage>
5050
<modelPackage>io.gitea.model</modelPackage>
51+
<generateApis>true</generateApis>
52+
<generateApiTests>true</generateApiTests>
53+
<generateApiDocumentation>true</generateApiDocumentation>
54+
<generateModels>true</generateModels>
55+
<generateModelTests>true</generateModelTests>
56+
<generateModelDocumentation>true</generateModelDocumentation>
57+
<generateSupportingFiles>false</generateSupportingFiles>
58+
<configOptions>
59+
<hideGenerationTimestamp>true</hideGenerationTimestamp>
60+
</configOptions>
5161
</configuration>
5262
</plugin>
5363
<plugin>

src/main/java/io/gitea/model/APIError.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* APIError is an api error with a message
2929
*/
3030
@ApiModel(description = "APIError is an api error with a message")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class APIError {
3333
@SerializedName("message")
3434
private String message = null;

src/main/java/io/gitea/model/AccessToken.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* AccessToken
2929
*/
30-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
30+
3131
public class AccessToken {
3232
@SerializedName("name")
3333
private String name = null;

src/main/java/io/gitea/model/AddCollaboratorOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* AddCollaboratorOption options when adding a user as a collaborator of a repository
2929
*/
3030
@ApiModel(description = "AddCollaboratorOption options when adding a user as a collaborator of a repository")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class AddCollaboratorOption {
3333
@SerializedName("permission")
3434
private String permission = null;

src/main/java/io/gitea/model/AddTimeOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* AddTimeOption options for adding time to an issue
3030
*/
3131
@ApiModel(description = "AddTimeOption options for adding time to an issue")
32-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
32+
3333
public class AddTimeOption {
3434
@SerializedName("created")
3535
private OffsetDateTime created = null;

src/main/java/io/gitea/model/AnnotatedTag.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* AnnotatedTag represents an annotated tag
3232
*/
3333
@ApiModel(description = "AnnotatedTag represents an annotated tag")
34-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
34+
3535
public class AnnotatedTag {
3636
@SerializedName("message")
3737
private String message = null;

src/main/java/io/gitea/model/AnnotatedTagObject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* AnnotatedTagObject contains meta information of the tag object
2929
*/
3030
@ApiModel(description = "AnnotatedTagObject contains meta information of the tag object")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class AnnotatedTagObject {
3333
@SerializedName("sha")
3434
private String sha = null;

src/main/java/io/gitea/model/Attachment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* Attachment a generic attachment
3030
*/
3131
@ApiModel(description = "Attachment a generic attachment")
32-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
32+
3333
public class Attachment {
3434
@SerializedName("browser_download_url")
3535
private String browserDownloadUrl = null;

src/main/java/io/gitea/model/Branch.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* Branch represents a repository branch
3232
*/
3333
@ApiModel(description = "Branch represents a repository branch")
34-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
34+
3535
public class Branch {
3636
@SerializedName("commit")
3737
private PayloadCommit commit = null;

src/main/java/io/gitea/model/BranchProtection.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* BranchProtection represents a branch protection for a repository
3232
*/
3333
@ApiModel(description = "BranchProtection represents a branch protection for a repository")
34-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
34+
3535
public class BranchProtection {
3636
@SerializedName("approvals_whitelist_teams")
3737
private List<String> approvalsWhitelistTeams = null;

src/main/java/io/gitea/model/CombinedStatus.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* CombinedStatus holds the combined state of several statuses for a single commit
3333
*/
3434
@ApiModel(description = "CombinedStatus holds the combined state of several statuses for a single commit")
35-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
35+
3636
public class CombinedStatus {
3737
@SerializedName("commit_url")
3838
private String commitUrl = null;

src/main/java/io/gitea/model/Comment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Comment represents a comment on a commit or issue
3131
*/
3232
@ApiModel(description = "Comment represents a comment on a commit or issue")
33-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
33+
3434
public class Comment {
3535
@SerializedName("body")
3636
private String body = null;

src/main/java/io/gitea/model/Commit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* Commit
3636
*/
37-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
37+
3838
public class Commit {
3939
@SerializedName("author")
4040
private User author = null;

src/main/java/io/gitea/model/CommitAffectedFiles.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CommitAffectedFiles store information about files affected by the commit
2929
*/
3030
@ApiModel(description = "CommitAffectedFiles store information about files affected by the commit")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CommitAffectedFiles {
3333
@SerializedName("filename")
3434
private String filename = null;

src/main/java/io/gitea/model/CommitDateOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* CommitDateOptions store dates for GIT_AUTHOR_DATE and GIT_COMMITTER_DATE
3030
*/
3131
@ApiModel(description = "CommitDateOptions store dates for GIT_AUTHOR_DATE and GIT_COMMITTER_DATE")
32-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
32+
3333
public class CommitDateOptions {
3434
@SerializedName("author")
3535
private OffsetDateTime author = null;

src/main/java/io/gitea/model/CommitMeta.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* CommitMeta
3030
*/
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CommitMeta {
3333
@SerializedName("created")
3434
private OffsetDateTime created = null;

src/main/java/io/gitea/model/CommitStatus.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* CommitStatus holds a single status of a single Commit
3131
*/
3232
@ApiModel(description = "CommitStatus holds a single status of a single Commit")
33-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
33+
3434
public class CommitStatus {
3535
@SerializedName("context")
3636
private String context = null;

src/main/java/io/gitea/model/CommitUser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* CommitUser
2929
*/
30-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
30+
3131
public class CommitUser {
3232
@SerializedName("date")
3333
private String date = null;

src/main/java/io/gitea/model/ContentsResponse.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* ContentsResponse contains information about a repo&#39;s entry&#39;s (dir, file, symlink, submodule) metadata and content
3030
*/
3131
@ApiModel(description = "ContentsResponse contains information about a repo's entry's (dir, file, symlink, submodule) metadata and content")
32-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
32+
3333
public class ContentsResponse {
3434
@SerializedName("_links")
3535
private FileLinksResponse links = null;

src/main/java/io/gitea/model/CreateBranchProtectionOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* CreateBranchProtectionOption options for creating a branch protection
3131
*/
3232
@ApiModel(description = "CreateBranchProtectionOption options for creating a branch protection")
33-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
33+
3434
public class CreateBranchProtectionOption {
3535
@SerializedName("approvals_whitelist_teams")
3636
private List<String> approvalsWhitelistTeams = null;

src/main/java/io/gitea/model/CreateBranchRepoOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateBranchRepoOption options when creating a branch in a repository
2929
*/
3030
@ApiModel(description = "CreateBranchRepoOption options when creating a branch in a repository")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateBranchRepoOption {
3333
@SerializedName("new_branch_name")
3434
private String newBranchName = null;

src/main/java/io/gitea/model/CreateEmailOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* CreateEmailOption options when creating email addresses
3131
*/
3232
@ApiModel(description = "CreateEmailOption options when creating email addresses")
33-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
33+
3434
public class CreateEmailOption {
3535
@SerializedName("emails")
3636
private List<String> emails = null;

src/main/java/io/gitea/model/CreateFileOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* CreateFileOptions options for creating files Note: &#x60;author&#x60; and &#x60;committer&#x60; are optional (if only one is given, it will be used for the other, otherwise the authenticated user will be used)
3131
*/
3232
@ApiModel(description = "CreateFileOptions options for creating files Note: `author` and `committer` are optional (if only one is given, it will be used for the other, otherwise the authenticated user will be used)")
33-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
33+
3434
public class CreateFileOptions {
3535
@SerializedName("author")
3636
private Identity author = null;

src/main/java/io/gitea/model/CreateForkOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateForkOption options for creating a fork
2929
*/
3030
@ApiModel(description = "CreateForkOption options for creating a fork")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateForkOption {
3333
@SerializedName("organization")
3434
private String organization = null;

src/main/java/io/gitea/model/CreateGPGKeyOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateGPGKeyOption options create user GPG key
2929
*/
3030
@ApiModel(description = "CreateGPGKeyOption options create user GPG key")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateGPGKeyOption {
3333
@SerializedName("armored_public_key")
3434
private String armoredPublicKey = null;

src/main/java/io/gitea/model/CreateHookOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* CreateHookOption options when create a hook
3232
*/
3333
@ApiModel(description = "CreateHookOption options when create a hook")
34-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
34+
3535
public class CreateHookOption {
3636
@SerializedName("active")
3737
private Boolean active = false;

src/main/java/io/gitea/model/CreateHookOptionConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* CreateHookOptionConfig has all config options in it required are \&quot;content_type\&quot; and \&quot;url\&quot; Required
2424
*/
2525
@ApiModel(description = "CreateHookOptionConfig has all config options in it required are \"content_type\" and \"url\" Required")
26-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
26+
2727
public class CreateHookOptionConfig extends HashMap<String, String> {
2828

2929
@Override

src/main/java/io/gitea/model/CreateIssueCommentOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateIssueCommentOption options for creating a comment on an issue
2929
*/
3030
@ApiModel(description = "CreateIssueCommentOption options for creating a comment on an issue")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateIssueCommentOption {
3333
@SerializedName("body")
3434
private String body = null;

src/main/java/io/gitea/model/CreateIssueOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* CreateIssueOption options to create one issue
3232
*/
3333
@ApiModel(description = "CreateIssueOption options to create one issue")
34-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
34+
3535
public class CreateIssueOption {
3636
@SerializedName("assignee")
3737
private String assignee = null;

src/main/java/io/gitea/model/CreateKeyOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateKeyOption options when creating a key
2929
*/
3030
@ApiModel(description = "CreateKeyOption options when creating a key")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateKeyOption {
3333
@SerializedName("key")
3434
private String key = null;

src/main/java/io/gitea/model/CreateLabelOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateLabelOption options for creating a label
2929
*/
3030
@ApiModel(description = "CreateLabelOption options for creating a label")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateLabelOption {
3333
@SerializedName("color")
3434
private String color = null;

src/main/java/io/gitea/model/CreateMilestoneOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* CreateMilestoneOption options for creating a milestone
3030
*/
3131
@ApiModel(description = "CreateMilestoneOption options for creating a milestone")
32-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
32+
3333
public class CreateMilestoneOption {
3434
@SerializedName("description")
3535
private String description = null;

src/main/java/io/gitea/model/CreateOAuth2ApplicationOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* CreateOAuth2ApplicationOptions holds options to create an oauth2 application
3131
*/
3232
@ApiModel(description = "CreateOAuth2ApplicationOptions holds options to create an oauth2 application")
33-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
33+
3434
public class CreateOAuth2ApplicationOptions {
3535
@SerializedName("name")
3636
private String name = null;

src/main/java/io/gitea/model/CreateOrgOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateOrgOption options for creating an organization
2929
*/
3030
@ApiModel(description = "CreateOrgOption options for creating an organization")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateOrgOption {
3333
@SerializedName("description")
3434
private String description = null;

src/main/java/io/gitea/model/CreatePullRequestOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* CreatePullRequestOption options when creating a pull request
3232
*/
3333
@ApiModel(description = "CreatePullRequestOption options when creating a pull request")
34-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
34+
3535
public class CreatePullRequestOption {
3636
@SerializedName("assignee")
3737
private String assignee = null;

src/main/java/io/gitea/model/CreatePullReviewComment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreatePullReviewComment represent a review comment for creation api
2929
*/
3030
@ApiModel(description = "CreatePullReviewComment represent a review comment for creation api")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreatePullReviewComment {
3333
@SerializedName("body")
3434
private String body = null;

src/main/java/io/gitea/model/CreatePullReviewOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* CreatePullReviewOptions are options to create a pull review
3232
*/
3333
@ApiModel(description = "CreatePullReviewOptions are options to create a pull review")
34-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
34+
3535
public class CreatePullReviewOptions {
3636
@SerializedName("body")
3737
private String body = null;

src/main/java/io/gitea/model/CreateReleaseOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateReleaseOption options when creating a release
2929
*/
3030
@ApiModel(description = "CreateReleaseOption options when creating a release")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateReleaseOption {
3333
@SerializedName("body")
3434
private String body = null;

src/main/java/io/gitea/model/CreateRepoOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateRepoOption options when creating repository
2929
*/
3030
@ApiModel(description = "CreateRepoOption options when creating repository")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateRepoOption {
3333
@SerializedName("auto_init")
3434
private Boolean autoInit = null;

src/main/java/io/gitea/model/CreateStatusOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateStatusOption holds the information needed to create a new CommitStatus for a Commit
2929
*/
3030
@ApiModel(description = "CreateStatusOption holds the information needed to create a new CommitStatus for a Commit")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateStatusOption {
3333
@SerializedName("context")
3434
private String context = null;

src/main/java/io/gitea/model/CreateTeamOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* CreateTeamOption options for creating a team
3131
*/
3232
@ApiModel(description = "CreateTeamOption options for creating a team")
33-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
33+
3434
public class CreateTeamOption {
3535
@SerializedName("can_create_org_repo")
3636
private Boolean canCreateOrgRepo = null;

src/main/java/io/gitea/model/CreateUserOption.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* CreateUserOption create user options
2929
*/
3030
@ApiModel(description = "CreateUserOption create user options")
31-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
31+
3232
public class CreateUserOption {
3333
@SerializedName("email")
3434
private String email = null;

src/main/java/io/gitea/model/Cron.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* Cron represents a Cron task
3030
*/
3131
@ApiModel(description = "Cron represents a Cron task")
32-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-03-09T00:25:51.647+03:00")
32+
3333
public class Cron {
3434
@SerializedName("exec_times")
3535
private Long execTimes = null;

0 commit comments

Comments
 (0)