mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-08 10:42:18 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -3469,7 +3469,7 @@ Token.setApiKey("YOUR API KEY");
|
||||
RepositoryApi apiInstance = new RepositoryApi();
|
||||
String owner = "owner_example"; // String | owner of the repo
|
||||
String repo = "repo_example"; // String | name of the repo
|
||||
String collaborator = "collaborator_example"; // String | username of the collaborator to add
|
||||
String collaborator = "collaborator_example"; // String | username of the user to add or update as a collaborator
|
||||
AddCollaboratorOption body = new AddCollaboratorOption(); // AddCollaboratorOption |
|
||||
try {
|
||||
Void result = apiInstance.repoAddCollaborator(owner, repo, collaborator, body);
|
||||
@@ -3486,7 +3486,7 @@ Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
**owner** | **String**| owner of the repo |
|
||||
**repo** | **String**| name of the repo |
|
||||
**collaborator** | **String**| username of the collaborator to add |
|
||||
**collaborator** | **String**| username of the user to add or update as a collaborator |
|
||||
**body** | [**AddCollaboratorOption**](AddCollaboratorOption.md)| | [optional]
|
||||
|
||||
### Return type
|
||||
@@ -4108,7 +4108,7 @@ Token.setApiKey("YOUR API KEY");
|
||||
RepositoryApi apiInstance = new RepositoryApi();
|
||||
String owner = "owner_example"; // String | owner of the repo
|
||||
String repo = "repo_example"; // String | name of the repo
|
||||
String collaborator = "collaborator_example"; // String | username of the collaborator
|
||||
String collaborator = "collaborator_example"; // String | username of the user to check for being a collaborator
|
||||
try {
|
||||
Void result = apiInstance.repoCheckCollaborator(owner, repo, collaborator);
|
||||
System.out.println(result);
|
||||
@@ -4124,7 +4124,7 @@ Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
**owner** | **String**| owner of the repo |
|
||||
**repo** | **String**| name of the repo |
|
||||
**collaborator** | **String**| username of the collaborator |
|
||||
**collaborator** | **String**| username of the user to check for being a collaborator |
|
||||
|
||||
### Return type
|
||||
|
||||
@@ -12129,7 +12129,7 @@ Token.setApiKey("YOUR API KEY");
|
||||
RepositoryApi apiInstance = new RepositoryApi();
|
||||
String owner = "owner_example"; // String | owner of the repo
|
||||
String repo = "repo_example"; // String | name of the repo
|
||||
String collaborator = "collaborator_example"; // String | username of the collaborator
|
||||
String collaborator = "collaborator_example"; // String | username of the collaborator whose permissions are to be obtained
|
||||
try {
|
||||
RepoCollaboratorPermission result = apiInstance.repoGetRepoPermissions(owner, repo, collaborator);
|
||||
System.out.println(result);
|
||||
@@ -12145,7 +12145,7 @@ Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
**owner** | **String**| owner of the repo |
|
||||
**repo** | **String**| name of the repo |
|
||||
**collaborator** | **String**| username of the collaborator |
|
||||
**collaborator** | **String**| username of the collaborator whose permissions are to be obtained |
|
||||
|
||||
### Return type
|
||||
|
||||
@@ -17865,7 +17865,7 @@ Token.setApiKey("YOUR API KEY");
|
||||
RepositoryApi apiInstance = new RepositoryApi();
|
||||
String owner = "owner_example"; // String | owner of the repo
|
||||
String repo = "repo_example"; // String | name of the repo
|
||||
String user = "user_example"; // String | username of user
|
||||
String user = "user_example"; // String | username of the user whose tracked times are to be listed
|
||||
try {
|
||||
List<TrackedTime> result = apiInstance.userTrackedTimes(owner, repo, user);
|
||||
System.out.println(result);
|
||||
@@ -17881,7 +17881,7 @@ Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
**owner** | **String**| owner of the repo |
|
||||
**repo** | **String**| name of the repo |
|
||||
**user** | **String**| username of user |
|
||||
**user** | **String**| username of the user whose tracked times are to be listed |
|
||||
|
||||
### Return type
|
||||
|
||||
|
||||
Reference in New Issue
Block a user