-
Methods in io.gitea.api that return Attachment
| Modifier and Type |
Method |
Description |
Attachment |
RepositoryApi.repoCreateReleaseAttachment(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.io.File attachment,
java.lang.String name) |
Create a release attachment
|
Attachment |
RepositoryApi.repoEditReleaseAttachment(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.lang.Long attachmentId,
EditAttachmentOptions body) |
Edit a release attachment
|
Attachment |
RepositoryApi.repoGetReleaseAttachment(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.lang.Long attachmentId) |
Get a release attachment
|
Methods in io.gitea.api that return types with arguments of type Attachment
| Modifier and Type |
Method |
Description |
ApiResponse<Attachment> |
RepositoryApi.repoCreateReleaseAttachmentWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.io.File attachment,
java.lang.String name) |
Create a release attachment
|
ApiResponse<Attachment> |
RepositoryApi.repoEditReleaseAttachmentWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.lang.Long attachmentId,
EditAttachmentOptions body) |
Edit a release attachment
|
ApiResponse<Attachment> |
RepositoryApi.repoGetReleaseAttachmentWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.lang.Long attachmentId) |
Get a release attachment
|
java.util.List<Attachment> |
RepositoryApi.repoListReleaseAttachments(java.lang.String owner,
java.lang.String repo,
java.lang.Long id) |
List release's attachments
|
ApiResponse<java.util.List<Attachment>> |
RepositoryApi.repoListReleaseAttachmentsWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long id) |
List release's attachments
|
Method parameters in io.gitea.api with type arguments of type Attachment
| Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
RepositoryApi.repoCreateReleaseAttachmentAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.io.File attachment,
java.lang.String name,
ApiCallback<Attachment> callback) |
Create a release attachment (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoEditReleaseAttachmentAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.lang.Long attachmentId,
EditAttachmentOptions body,
ApiCallback<Attachment> callback) |
Edit a release attachment (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoGetReleaseAttachmentAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
java.lang.Long attachmentId,
ApiCallback<Attachment> callback) |
Get a release attachment (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoListReleaseAttachmentsAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
ApiCallback<java.util.List<Attachment>> callback) |
List release's attachments (asynchronously)
|
-