Uses of Interface
io.gitea.ApiCallback

Packages that use ApiCallback 
Package Description
io.gitea  
io.gitea.api  
  • Uses of ApiCallback in io.gitea

    Methods in io.gitea with parameters of type ApiCallback 
    Modifier and Type Method Description
    <T> void ApiClient.executeAsync​(com.squareup.okhttp.Call call, ApiCallback<T> callback)
    <T> void ApiClient.executeAsync​(com.squareup.okhttp.Call call, java.lang.reflect.Type returnType, ApiCallback<T> callback)
    Execute HTTP call asynchronously.
  • Uses of ApiCallback in io.gitea.api

    Methods in io.gitea.api with parameters of type ApiCallback 
    Modifier and Type Method Description
    com.squareup.okhttp.Call AdminApi.adminAdoptRepositoryAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Adopt unadopted files as a repository (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminCreateOrgAsync​(java.lang.String username, CreateOrgOption organization, ApiCallback<Organization> callback)
    Create an organization (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminCreatePublicKeyAsync​(java.lang.String username, CreateKeyOption key, ApiCallback<PublicKey> callback)
    Add a public key on behalf of a user (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminCreateRepoAsync​(java.lang.String username, CreateRepoOption repository, ApiCallback<Repository> callback)
    Create a repository on behalf of a user (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminCreateUserAsync​(CreateUserOption body, ApiCallback<User> callback)
    Create a user (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminCronListAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Cron>> callback)
    List cron tasks (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminCronRunAsync​(java.lang.String task, ApiCallback<java.lang.Void> callback)
    Run cron task (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminDeleteUnadoptedRepositoryAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Delete unadopted files (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminDeleteUserAsync​(java.lang.String username, ApiCallback<java.lang.Void> callback)
    Delete a user (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminDeleteUserPublicKeyAsync​(java.lang.String username, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a user's public key (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminEditUserAsync​(java.lang.String username, EditUserOption body, ApiCallback<User> callback)
    Edit an existing user (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminGetAllOrgsAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Organization>> callback)
    List all organizations (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminGetAllUsersAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List all users (asynchronously)
    com.squareup.okhttp.Call AdminApi.adminUnadoptedListAsync​(java.lang.Integer page, java.lang.Integer limit, java.lang.String pattern, ApiCallback<java.util.List<java.lang.String>> callback)
    List unadopted repositories (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.createCurrentUserRepoAsync​(CreateRepoOption body, ApiCallback<Repository> callback)
    Create a repository (asynchronously)
    com.squareup.okhttp.Call UserApi.createCurrentUserRepoAsync​(CreateRepoOption body, ApiCallback<Repository> callback)
    Create a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.createForkAsync​(java.lang.String owner, java.lang.String repo, CreateForkOption body, ApiCallback<Repository> callback)
    Fork a repository (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.createOrgRepoAsync​(java.lang.String org, CreateRepoOption body, ApiCallback<Repository> callback)
    Create a repository in an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.createOrgRepoDeprecatedAsync​(java.lang.String org, CreateRepoOption body, ApiCallback<Repository> callback)
    Deprecated. 
    com.squareup.okhttp.Call RepositoryApi.generateRepoAsync​(java.lang.String templateOwner, java.lang.String templateRepo, GenerateRepoOption body, ApiCallback<Repository> callback)
    Create a repository using a template (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.getAnnotatedTagAsync​(java.lang.String owner, java.lang.String repo, java.lang.String sha, ApiCallback<AnnotatedTag> callback)
    Gets the tag object of an annotated tag (not lightweight tags) (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.getBlobAsync​(java.lang.String owner, java.lang.String repo, java.lang.String sha, ApiCallback<GitBlobResponse> callback)
    Gets the blob of a repository.
    com.squareup.okhttp.Call SettingsApi.getGeneralAPISettingsAsync​(ApiCallback<GeneralAPISettings> callback)
    Get instance's global settings for api (asynchronously)
    com.squareup.okhttp.Call SettingsApi.getGeneralAttachmentSettingsAsync​(ApiCallback<GeneralAttachmentSettings> callback)
    Get instance's global settings for Attachment (asynchronously)
    com.squareup.okhttp.Call SettingsApi.getGeneralRepositorySettingsAsync​(ApiCallback<GeneralRepoSettings> callback)
    Get instance's global settings for repositories (asynchronously)
    com.squareup.okhttp.Call SettingsApi.getGeneralUISettingsAsync​(ApiCallback<GeneralUISettings> callback)
    Get instance's global settings for ui (asynchronously)
    com.squareup.okhttp.Call MiscellaneousApi.getSigningKeyAsync​(ApiCallback<java.lang.String> callback)
    Get default signing-key.gpg (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.getTreeAsync​(java.lang.String owner, java.lang.String repo, java.lang.String sha, java.lang.Boolean recursive, java.lang.Integer page, java.lang.Integer perPage, ApiCallback<GitTreeResponse> callback)
    Gets the tree of a repository.
    com.squareup.okhttp.Call UserApi.getUserSettingsAsync​(ApiCallback<java.util.List<UserSettings>> callback)
    Get user settings (asynchronously)
    com.squareup.okhttp.Call UserApi.getVerificationTokenAsync​(ApiCallback<java.lang.String> callback)
    Get a Token to verify (asynchronously)
    com.squareup.okhttp.Call MiscellaneousApi.getVersionAsync​(ApiCallback<ServerVersion> callback)
    Returns the version of the Gitea application (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueAddLabelAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body, ApiCallback<java.util.List<Label>> callback)
    Add a label to an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueAddSubscriptionAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.String user, ApiCallback<java.lang.Void> callback)
    Subscribe user to issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueAddTimeAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, AddTimeOption body, ApiCallback<TrackedTime> callback)
    Add tracked time to a issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueCheckSubscriptionAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<WatchInfo> callback)
    Check if user is subscribed to an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueClearLabelsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.Void> callback)
    Remove all labels from an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueCreateCommentAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, CreateIssueCommentOption body, ApiCallback<Comment> callback)
    Add a comment to an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueCreateIssueAsync​(java.lang.String owner, java.lang.String repo, CreateIssueOption body, ApiCallback<Issue> callback)
    Create an issue.
    com.squareup.okhttp.Call IssueApi.issueCreateLabelAsync​(java.lang.String owner, java.lang.String repo, CreateLabelOption body, ApiCallback<Label> callback)
    Create a label (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueCreateMilestoneAsync​(java.lang.String owner, java.lang.String repo, CreateMilestoneOption body, ApiCallback<Milestone> callback)
    Create a milestone (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueDeleteCommentAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a comment (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueDeleteCommentDeprecatedAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer index, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Deprecated. 
    com.squareup.okhttp.Call IssueApi.issueDeleteCommentReactionAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditReactionOption content, ApiCallback<java.lang.Void> callback)
    Remove a reaction from a comment of an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueDeleteIssueReactionAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, EditReactionOption content, ApiCallback<java.lang.Void> callback)
    Remove a reaction from an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueDeleteLabelAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a label (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueDeleteMilestoneAsync​(java.lang.String owner, java.lang.String repo, java.lang.String id, ApiCallback<java.lang.Void> callback)
    Delete a milestone (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueDeleteStopWatchAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.Void> callback)
    Delete an issue's existing stopwatch.
    com.squareup.okhttp.Call IssueApi.issueDeleteSubscriptionAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.String user, ApiCallback<java.lang.Void> callback)
    Unsubscribe user from issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueDeleteTimeAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete specific tracked time (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueEditCommentAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditIssueCommentOption body, ApiCallback<Comment> callback)
    Edit a comment (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueEditCommentDeprecatedAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer index, java.lang.Long id, EditIssueCommentOption body, ApiCallback<Comment> callback)
    Deprecated. 
    com.squareup.okhttp.Call IssueApi.issueEditIssueAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, EditIssueOption body, ApiCallback<Issue> callback)
    Edit an issue.
    com.squareup.okhttp.Call IssueApi.issueEditIssueDeadlineAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, EditDeadlineOption body, ApiCallback<IssueDeadline> callback)
    Set an issue deadline.
    com.squareup.okhttp.Call IssueApi.issueEditLabelAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditLabelOption body, ApiCallback<Label> callback)
    Update a label (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueEditMilestoneAsync​(java.lang.String owner, java.lang.String repo, java.lang.String id, EditMilestoneOption body, ApiCallback<Milestone> callback)
    Update a milestone (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetCommentAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<Comment> callback)
    Get a comment (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetCommentReactionsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.util.List<Reaction>> callback)
    Get a list of reactions from a comment of an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetCommentsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, ApiCallback<java.util.List<Comment>> callback)
    List all comments on an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetIssueAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<Issue> callback)
    Get an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetIssueReactionsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Reaction>> callback)
    Get a list reactions of an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetLabelAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<Label> callback)
    Get a single label (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetLabelsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.util.List<Label>> callback)
    Get an issue's labels (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetMilestoneAsync​(java.lang.String owner, java.lang.String repo, java.lang.String id, ApiCallback<Milestone> callback)
    Get a milestone (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetMilestonesListAsync​(java.lang.String owner, java.lang.String repo, java.lang.String state, java.lang.String name, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Milestone>> callback)
    Get all of a repository's opened milestones (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueGetRepoCommentsAsync​(java.lang.String owner, java.lang.String repo, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Comment>> callback)
    List all comments in a repository (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueListIssuesAsync​(java.lang.String owner, java.lang.String repo, java.lang.String state, java.lang.String labels, java.lang.String q, java.lang.String type, java.lang.String milestones, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.String createdBy, java.lang.String assignedBy, java.lang.String mentionedBy, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Issue>> callback)
    List a repository's issues (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueListLabelsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Label>> callback)
    Get all of a repository's labels (asynchronously)
    com.squareup.okhttp.Call IssueApi.issuePostCommentReactionAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditReactionOption content, ApiCallback<Reaction> callback)
    Add a reaction to a comment of an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issuePostIssueReactionAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, EditReactionOption content, ApiCallback<Reaction> callback)
    Add a reaction to an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueRemoveLabelAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Remove a label from an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueReplaceLabelsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, IssueLabelsOption body, ApiCallback<java.util.List<Label>> callback)
    Replace an issue's labels (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueResetTimeAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.Void> callback)
    Reset a tracked time of an issue (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueSearchIssuesAsync​(java.lang.String state, java.lang.String labels, java.lang.String milestones, java.lang.String q, java.lang.Long priorityRepoId, java.lang.String type, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Boolean assigned, java.lang.Boolean created, java.lang.Boolean mentioned, java.lang.Boolean reviewRequested, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Issue>> callback)
    Search for issues across the repositories that the user has access to (asynchronously)
    com.squareup.okhttp.Call IssueApi.issueStartStopWatchAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.Void> callback)
    Start stopwatch on an issue.
    com.squareup.okhttp.Call IssueApi.issueStopStopWatchAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.Void> callback)
    Stop an issue's existing stopwatch.
    com.squareup.okhttp.Call IssueApi.issueSubscriptionsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    Get users who subscribed on an issue.
    com.squareup.okhttp.Call IssueApi.issueTrackedTimesAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.String user, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<TrackedTime>> callback)
    List an issue's tracked times (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.listForksAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    List a repository's forks (asynchronously)
    com.squareup.okhttp.Call NotificationApi.notifyGetListAsync​(java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<NotificationThread>> callback)
    List users's notification threads (asynchronously)
    com.squareup.okhttp.Call NotificationApi.notifyGetRepoListAsync​(java.lang.String owner, java.lang.String repo, java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<NotificationThread>> callback)
    List users's notification threads on a specific repo (asynchronously)
    com.squareup.okhttp.Call NotificationApi.notifyGetThreadAsync​(java.lang.String id, ApiCallback<NotificationThread> callback)
    Get notification thread by ID (asynchronously)
    com.squareup.okhttp.Call NotificationApi.notifyNewAvailableAsync​(ApiCallback<NotificationCount> callback)
    Check if unread notifications exist (asynchronously)
    com.squareup.okhttp.Call NotificationApi.notifyReadListAsync​(org.threeten.bp.OffsetDateTime lastReadAt, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus, ApiCallback<java.lang.Void> callback)
    Mark notification threads as read, pinned or unread (asynchronously)
    com.squareup.okhttp.Call NotificationApi.notifyReadRepoListAsync​(java.lang.String owner, java.lang.String repo, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus, org.threeten.bp.OffsetDateTime lastReadAt, ApiCallback<java.lang.Void> callback)
    Mark notification threads as read, pinned or unread on a specific repo (asynchronously)
    com.squareup.okhttp.Call NotificationApi.notifyReadThreadAsync​(java.lang.String id, java.lang.String toStatus, ApiCallback<java.lang.Void> callback)
    Mark notification thread as read by ID (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgAddTeamMemberAsync​(java.lang.Long id, java.lang.String username, ApiCallback<java.lang.Void> callback)
    Add a team member (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgAddTeamRepositoryAsync​(java.lang.Long id, java.lang.String org, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Add a repository to a team (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgConcealMemberAsync​(java.lang.String org, java.lang.String username, ApiCallback<java.lang.Void> callback)
    Conceal a user's membership (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgCreateAsync​(CreateOrgOption organization, ApiCallback<Organization> callback)
    Create an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgCreateHookAsync​(java.lang.String org, CreateHookOption body, ApiCallback<Hook> callback)
    Create a hook (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgCreateLabelAsync​(java.lang.String org, CreateLabelOption body, ApiCallback<Label> callback)
    Create a label for an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgCreateTeamAsync​(java.lang.String org, CreateTeamOption body, ApiCallback<Team> callback)
    Create a team (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgDeleteAsync​(java.lang.String org, ApiCallback<java.lang.Void> callback)
    Delete an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgDeleteHookAsync​(java.lang.String org, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a hook (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgDeleteLabelAsync​(java.lang.String org, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a label (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgDeleteMemberAsync​(java.lang.String org, java.lang.String username, ApiCallback<java.lang.Void> callback)
    Remove a member from an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgDeleteTeamAsync​(java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a team (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgEditAsync​(java.lang.String org, EditOrgOption body, ApiCallback<Organization> callback)
    Edit an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgEditHookAsync​(java.lang.String org, java.lang.Long id, EditHookOption body, ApiCallback<Hook> callback)
    Update a hook (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgEditLabelAsync​(java.lang.String org, java.lang.Long id, EditLabelOption body, ApiCallback<Label> callback)
    Update a label (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgEditTeamAsync​(java.lang.Integer id, EditTeamOption body, ApiCallback<Team> callback)
    Edit a team (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgGetAllAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Organization>> callback)
    Get list of organizations (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgGetAsync​(java.lang.String org, ApiCallback<Organization> callback)
    Get an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgGetHookAsync​(java.lang.String org, java.lang.Long id, ApiCallback<Hook> callback)
    Get a hook (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgGetLabelAsync​(java.lang.String org, java.lang.Long id, ApiCallback<Label> callback)
    Get a single label (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgGetTeamAsync​(java.lang.Long id, ApiCallback<Team> callback)
    Get a team (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgIsMemberAsync​(java.lang.String org, java.lang.String username, ApiCallback<java.lang.Void> callback)
    Check if a user is a member of an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgIsPublicMemberAsync​(java.lang.String org, java.lang.String username, ApiCallback<java.lang.Void> callback)
    Check if a user is a public member of an organization (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListCurrentUserOrgsAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Organization>> callback)
    List the current user's organizations (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListHooksAsync​(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Hook>> callback)
    List an organization's webhooks (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListLabelsAsync​(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Label>> callback)
    List an organization's labels (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListMembersAsync​(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List an organization's members (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListPublicMembersAsync​(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List an organization's public members (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListReposAsync​(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    List an organization's repos (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListTeamMemberAsync​(java.lang.Long id, java.lang.String username, ApiCallback<User> callback)
    List a particular member of team (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListTeamMembersAsync​(java.lang.Long id, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List a team's members (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListTeamReposAsync​(java.lang.Long id, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    List a team's repos (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListTeamsAsync​(java.lang.String org, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Team>> callback)
    List an organization's teams (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgListUserOrgsAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Organization>> callback)
    List a user's organizations (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgPublicizeMemberAsync​(java.lang.String org, java.lang.String username, ApiCallback<java.lang.Void> callback)
    Publicize a user's membership (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgRemoveTeamMemberAsync​(java.lang.Long id, java.lang.String username, ApiCallback<java.lang.Void> callback)
    Remove a team member (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.orgRemoveTeamRepositoryAsync​(java.lang.Long id, java.lang.String org, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Remove a repository from a team (asynchronously) This does not delete the repository, it only removes the repository from the team.
    com.squareup.okhttp.Call MiscellaneousApi.renderMarkdownAsync​(MarkdownOption body, ApiCallback<java.lang.String> callback)
    Render a markdown document as HTML (asynchronously)
    com.squareup.okhttp.Call MiscellaneousApi.renderMarkdownRawAsync​(java.lang.String body, ApiCallback<java.lang.String> callback)
    Render raw markdown as HTML (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoAddCollaboratorAsync​(java.lang.String owner, java.lang.String repo, java.lang.String collaborator, AddCollaboratorOption body, ApiCallback<java.lang.Void> callback)
    Add a collaborator to a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoAddTeamAsync​(java.lang.String owner, java.lang.String repo, java.lang.String team, ApiCallback<java.lang.Void> callback)
    Add a team to a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoAddTopcAsync​(java.lang.String owner, java.lang.String repo, java.lang.String topic, ApiCallback<java.lang.Void> callback)
    Add a topic to a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCheckCollaboratorAsync​(java.lang.String owner, java.lang.String repo, java.lang.String collaborator, ApiCallback<java.lang.Void> callback)
    Check if a user is a collaborator of a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCheckTeamAsync​(java.lang.String owner, java.lang.String repo, java.lang.String team, ApiCallback<Team> callback)
    Check if a team is assigned to a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreateBranchAsync​(java.lang.String owner, java.lang.String repo, CreateBranchRepoOption body, ApiCallback<Branch> callback)
    Create a branch (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreateBranchProtectionAsync​(java.lang.String owner, java.lang.String repo, CreateBranchProtectionOption body, ApiCallback<BranchProtection> callback)
    Create a branch protections for a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreateFileAsync​(java.lang.String owner, java.lang.String repo, java.lang.String filepath, CreateFileOptions body, ApiCallback<FileResponse> callback)
    Create a file in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreateHookAsync​(java.lang.String owner, java.lang.String repo, CreateHookOption body, ApiCallback<Hook> callback)
    Create a hook (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreateKeyAsync​(java.lang.String owner, java.lang.String repo, CreateKeyOption body, ApiCallback<DeployKey> callback)
    Add a key to a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreatePullRequestAsync​(java.lang.String owner, java.lang.String repo, CreatePullRequestOption body, ApiCallback<PullRequest> callback)
    Create a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreatePullReviewAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, CreatePullReviewOptions body, ApiCallback<PullReview> callback)
    Create a review to an pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreatePullReviewRequestsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, PullReviewRequestOptions body, ApiCallback<java.util.List<PullReview>> callback)
    create review requests for a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreateReleaseAsync​(java.lang.String owner, java.lang.String repo, CreateReleaseOption body, ApiCallback<Release> callback)
    Create a release (asynchronously)
    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.repoCreateStatusAsync​(java.lang.String owner, java.lang.String repo, java.lang.String sha, CreateStatusOption body, ApiCallback<CommitStatus> callback)
    Create a commit status (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoCreateTagAsync​(java.lang.String owner, java.lang.String repo, CreateTagOption body, ApiCallback<Tag> callback)
    Create a new git tag in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Delete a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteBranchAsync​(java.lang.String owner, java.lang.String repo, java.lang.String branch, ApiCallback<java.lang.Void> callback)
    Delete a specific branch from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteBranchProtectionAsync​(java.lang.String owner, java.lang.String repo, java.lang.String name, ApiCallback<java.lang.Void> callback)
    Delete a specific branch protection for the repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteCollaboratorAsync​(java.lang.String owner, java.lang.String repo, java.lang.String collaborator, ApiCallback<java.lang.Void> callback)
    Delete a collaborator from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteFileAsync​(java.lang.String owner, java.lang.String repo, java.lang.String filepath, DeleteFileOptions body, ApiCallback<FileDeleteResponse> callback)
    Delete a file in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteGitHookAsync​(java.lang.String owner, java.lang.String repo, java.lang.String id, ApiCallback<java.lang.Void> callback)
    Delete a Git hook in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteHookAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a hook in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteKeyAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a key from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeletePullReviewAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a specific review from a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeletePullReviewRequestsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, PullReviewRequestOptions body, ApiCallback<java.lang.Void> callback)
    cancel review requests for a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteReleaseAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a release (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteReleaseAttachmentAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, java.lang.Long attachmentId, ApiCallback<java.lang.Void> callback)
    Delete a release attachment (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteReleaseByTagAsync​(java.lang.String owner, java.lang.String repo, java.lang.String tag, ApiCallback<java.lang.Void> callback)
    Delete a release by tag name (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteTagAsync​(java.lang.String owner, java.lang.String repo, java.lang.String tag, ApiCallback<java.lang.Void> callback)
    Delete a repository's tag by name (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteTeamAsync​(java.lang.String owner, java.lang.String repo, java.lang.String team, ApiCallback<java.lang.Void> callback)
    Delete a team from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDeleteTopicAsync​(java.lang.String owner, java.lang.String repo, java.lang.String topic, ApiCallback<java.lang.Void> callback)
    Delete a topic from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDismissPullReviewAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, DismissPullReviewOptions body, ApiCallback<PullReview> callback)
    Dismiss a review for a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDownloadPullDiffAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.String> callback)
    Get a pull request diff (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoDownloadPullPatchAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.String> callback)
    Get a pull request patch file (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoEditAsync​(java.lang.String owner, java.lang.String repo, EditRepoOption body, ApiCallback<Repository> callback)
    Edit a repository's properties.
    com.squareup.okhttp.Call RepositoryApi.repoEditBranchProtectionAsync​(java.lang.String owner, java.lang.String repo, java.lang.String name, EditBranchProtectionOption body, ApiCallback<BranchProtection> callback)
    Edit a branch protections for a repository.
    com.squareup.okhttp.Call RepositoryApi.repoEditGitHookAsync​(java.lang.String owner, java.lang.String repo, java.lang.String id, EditGitHookOption body, ApiCallback<GitHook> callback)
    Edit a Git hook in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoEditHookAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditHookOption body, ApiCallback<Hook> callback)
    Edit a hook in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoEditPullRequestAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, EditPullRequestOption body, ApiCallback<PullRequest> callback)
    Update a pull request.
    com.squareup.okhttp.Call RepositoryApi.repoEditReleaseAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, EditReleaseOption body, ApiCallback<Release> callback)
    Update a release (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.repoGetAllCommitsAsync​(java.lang.String owner, java.lang.String repo, java.lang.String sha, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Commit>> callback)
    Get a list of all commits from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetArchiveAsync​(java.lang.String owner, java.lang.String repo, java.lang.String archive, ApiCallback<java.lang.Void> callback)
    Get an archive of a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetAssigneesAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<User>> callback)
    Return all users that have write access and can be assigned to issues (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<Repository> callback)
    Get a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetBranchAsync​(java.lang.String owner, java.lang.String repo, java.lang.String branch, ApiCallback<Branch> callback)
    Retrieve a specific branch from a repository, including its effective branch protection (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetBranchProtectionAsync​(java.lang.String owner, java.lang.String repo, java.lang.String name, ApiCallback<BranchProtection> callback)
    Get a specific branch protection for the repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetByIDAsync​(java.lang.Long id, ApiCallback<Repository> callback)
    Get a repository by id (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetCombinedStatusByRefAsync​(java.lang.String owner, java.lang.String repo, java.lang.String ref, java.lang.Integer page, java.lang.Integer limit, ApiCallback<CombinedStatus> callback)
    Get a commit's combined status, by branch/tag/commit reference (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetContentsAsync​(java.lang.String owner, java.lang.String repo, java.lang.String filepath, java.lang.String ref, ApiCallback<ContentsResponse> callback)
    Gets the metadata and contents (if a file) of an entry in a repository, or a list of entries if a dir (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetContentsListAsync​(java.lang.String owner, java.lang.String repo, java.lang.String ref, ApiCallback<java.util.List<ContentsResponse>> callback)
    Gets the metadata of all the entries of the root dir (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetEditorConfigAsync​(java.lang.String owner, java.lang.String repo, java.lang.String filepath, ApiCallback<java.lang.Void> callback)
    Get the EditorConfig definitions of a file in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetGitHookAsync​(java.lang.String owner, java.lang.String repo, java.lang.String id, ApiCallback<GitHook> callback)
    Get a Git hook (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetHookAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<Hook> callback)
    Get a hook (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetIssueTemplatesAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<IssueTemplate>> callback)
    Get available issue templates for a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetKeyAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<DeployKey> callback)
    Get a repository's key by id (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetLanguagesAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.Map<java.lang.String,​java.lang.Long>> callback)
    Get languages and number of bytes of code written (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetPullRequestAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<PullRequest> callback)
    Get a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetPullRequestCommitsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Commit>> callback)
    Get commits for a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetPullReviewAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<PullReview> callback)
    Get a specific review for a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetPullReviewCommentsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<java.util.List<PullReviewComment>> callback)
    Get a specific review for a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetRawFileAsync​(java.lang.String owner, java.lang.String repo, java.lang.String filepath, java.lang.String ref, ApiCallback<java.lang.Void> callback)
    Get a file from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetReleaseAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<Release> callback)
    Get a release (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.repoGetReleaseByTagAsync​(java.lang.String owner, java.lang.String repo, java.lang.String tag, ApiCallback<Release> callback)
    Get a release by tag name (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetReviewersAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<User>> callback)
    Return all users that can be requested to review in this repo (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetSingleCommitAsync​(java.lang.String owner, java.lang.String repo, java.lang.String sha, ApiCallback<Commit> callback)
    Get a single commit from a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoGetTagAsync​(java.lang.String owner, java.lang.String repo, java.lang.String tag, ApiCallback<Tag> callback)
    Get the tag of a repository by tag name (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListAllGitRefsAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<Reference>> callback)
    Get specified ref or filtered repository's refs (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListBranchesAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Branch>> callback)
    List a repository's branches (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListBranchProtectionAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<BranchProtection>> callback)
    List branch protections for a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListCollaboratorsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List a repository's collaborators (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListGitHooksAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<GitHook>> callback)
    List the Git hooks in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListGitRefsAsync​(java.lang.String owner, java.lang.String repo, java.lang.String ref, ApiCallback<java.util.List<Reference>> callback)
    Get specified ref or filtered repository's refs (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListHooksAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Hook>> callback)
    List the hooks in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListKeysAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer keyId, java.lang.String fingerprint, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<DeployKey>> callback)
    List a repository's keys (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListPullRequestsAsync​(java.lang.String owner, java.lang.String repo, java.lang.String state, java.lang.String sort, java.lang.Long milestone, java.util.List<java.lang.Long> labels, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<PullRequest>> callback)
    List a repo's pull requests (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListPullReviewsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<PullReview>> callback)
    List all reviews for a pull request (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)
    com.squareup.okhttp.Call RepositoryApi.repoListReleasesAsync​(java.lang.String owner, java.lang.String repo, java.lang.Boolean draft, java.lang.Boolean preRelease, java.lang.Integer perPage, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Release>> callback)
    List a repo's releases (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListStargazersAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List a repo's stargazers (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListStatusesAsync​(java.lang.String owner, java.lang.String repo, java.lang.String sha, java.lang.String sort, java.lang.String state, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<CommitStatus>> callback)
    Get a commit's statuses (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListStatusesByRefAsync​(java.lang.String owner, java.lang.String repo, java.lang.String ref, java.lang.String sort, java.lang.String state, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<CommitStatus>> callback)
    Get a commit's statuses, by branch/tag/commit reference (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListSubscribersAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List a repo's watchers (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListTagsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Tag>> callback)
    List a repository's tags (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListTeamsAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.util.List<Team>> callback)
    List a repository's teams (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoListTopicsAsync​(java.lang.String owner, java.lang.String repo, java.lang.Integer page, java.lang.Integer limit, ApiCallback<TopicName> callback)
    Get list of topics that a repository has (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoMergePullRequestAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, MergePullRequestOption body, ApiCallback<java.lang.Void> callback)
    Merge a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoMigrateAsync​(MigrateRepoOptions body, ApiCallback<Repository> callback)
    Migrate a remote git repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoMirrorSyncAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Sync a mirrored repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoPullRequestIsMergedAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.Void> callback)
    Check if a pull request has been merged (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoSearchAsync​(java.lang.String q, java.lang.Boolean topic, java.lang.Boolean includeDesc, java.lang.Long uid, java.lang.Long priorityOwnerId, java.lang.Long teamId, java.lang.Long starredBy, java.lang.Boolean _private, java.lang.Boolean isPrivate, java.lang.Boolean template, java.lang.Boolean archived, java.lang.String mode, java.lang.Boolean exclusive, java.lang.String sort, java.lang.String order, java.lang.Integer page, java.lang.Integer limit, ApiCallback<SearchResults> callback)
    Search for repositories (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoSigningKeyAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.String> callback)
    Get signing-key.gpg for given repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoSubmitPullReviewAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, SubmitPullReviewOptions body, ApiCallback<PullReview> callback)
    Submit a pending review to an pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoTestHookAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Test a push webhook (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoTrackedTimesAsync​(java.lang.String owner, java.lang.String repo, java.lang.String user, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<TrackedTime>> callback)
    List a repo's tracked times (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoTransferAsync​(java.lang.String owner, java.lang.String repo, TransferRepoOption body, ApiCallback<Repository> callback)
    Transfer a repo ownership (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoUnDismissPullReviewAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, java.lang.Long id, ApiCallback<PullReview> callback)
    Cancel to dismiss a review for a pull request (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoUpdateFileAsync​(java.lang.String owner, java.lang.String repo, java.lang.String filepath, UpdateFileOptions body, ApiCallback<FileResponse> callback)
    Update a file in a repository (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoUpdatePullRequestAsync​(java.lang.String owner, java.lang.String repo, java.lang.Long index, ApiCallback<java.lang.Void> callback)
    Merge PR's baseBranch into headBranch (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.repoUpdateTopicsAsync​(java.lang.String owner, java.lang.String repo, RepoTopicOptions body, ApiCallback<java.lang.Void> callback)
    Replace list of topics for a repository (asynchronously)
    com.squareup.okhttp.Call OrganizationApi.teamSearchAsync​(java.lang.String org, java.lang.String q, java.lang.Boolean includeDesc, java.lang.Integer page, java.lang.Integer limit, ApiCallback<InlineResponse200> callback)
    Search for teams within an organization (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.topicSearchAsync​(java.lang.String q, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<TopicResponse>> callback)
    search topics via keyword (asynchronously)
    com.squareup.okhttp.Call UserApi.updateUserSettingsAsync​(UserSettingsOptions body, ApiCallback<java.util.List<UserSettings>> callback)
    Update user settings (asynchronously)
    com.squareup.okhttp.Call UserApi.userAddEmailAsync​(CreateEmailOption body, ApiCallback<java.util.List<Email>> callback)
    Add email addresses (asynchronously)
    com.squareup.okhttp.Call UserApi.userCheckFollowingAsync​(java.lang.String follower, java.lang.String followee, ApiCallback<java.lang.Void> callback)
    Check if one user is following another user (asynchronously)
    com.squareup.okhttp.Call UserApi.userCreateOAuth2ApplicationAsync​(CreateOAuth2ApplicationOptions body, ApiCallback<OAuth2Application> callback)
    creates a new OAuth2 application (asynchronously)
    com.squareup.okhttp.Call UserApi.userCreateTokenAsync​(java.lang.String username, CreateAccessTokenOption userCreateToken, ApiCallback<AccessToken> callback)
    Create an access token (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentCheckFollowingAsync​(java.lang.String username, ApiCallback<java.lang.Void> callback)
    Check whether a user is followed by the authenticated user (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentCheckStarringAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Whether the authenticated is starring the repo (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.userCurrentCheckSubscriptionAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<WatchInfo> callback)
    Check if the current user is watching a repo (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentDeleteFollowAsync​(java.lang.String username, ApiCallback<java.lang.Void> callback)
    Unfollow a user (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentDeleteGPGKeyAsync​(java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Remove a GPG key (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentDeleteKeyAsync​(java.lang.Long id, ApiCallback<java.lang.Void> callback)
    Delete a public key (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentDeleteStarAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Unstar the given repo (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.userCurrentDeleteSubscriptionAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Unwatch a repo (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentGetGPGKeyAsync​(java.lang.Long id, ApiCallback<GPGKey> callback)
    Get a GPG key (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentGetKeyAsync​(java.lang.Long id, ApiCallback<PublicKey> callback)
    Get a public key (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentListFollowersAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List the authenticated user's followers (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentListFollowingAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List the users that the authenticated user is following (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentListGPGKeysAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<GPGKey>> callback)
    List the authenticated user's GPG keys (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentListKeysAsync​(java.lang.String fingerprint, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<PublicKey>> callback)
    List the authenticated user's public keys (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentListReposAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    List the repos that the authenticated user owns or has access to (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentListStarredAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    The repos that the authenticated user has starred (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentListSubscriptionsAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    List repositories watched by the authenticated user (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentPostGPGKeyAsync​(CreateGPGKeyOption form, ApiCallback<GPGKey> callback)
    Create a GPG key (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentPostKeyAsync​(CreateKeyOption body, ApiCallback<PublicKey> callback)
    Create a public key (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentPutFollowAsync​(java.lang.String username, ApiCallback<java.lang.Void> callback)
    Follow a user (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentPutStarAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<java.lang.Void> callback)
    Star the given repo (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.userCurrentPutSubscriptionAsync​(java.lang.String owner, java.lang.String repo, ApiCallback<WatchInfo> callback)
    Watch a repo (asynchronously)
    com.squareup.okhttp.Call UserApi.userCurrentTrackedTimesAsync​(org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, ApiCallback<java.util.List<TrackedTime>> callback)
    List the current user's tracked times (asynchronously)
    com.squareup.okhttp.Call UserApi.userDeleteAccessTokenAsync​(java.lang.String username, java.lang.String token, ApiCallback<java.lang.Void> callback)
    delete an access token (asynchronously)
    com.squareup.okhttp.Call UserApi.userDeleteEmailAsync​(DeleteEmailOption body, ApiCallback<java.lang.Void> callback)
    Delete email addresses (asynchronously)
    com.squareup.okhttp.Call UserApi.userDeleteOAuth2ApplicationAsync​(java.lang.Long id, ApiCallback<java.lang.Void> callback)
    delete an OAuth2 Application (asynchronously)
    com.squareup.okhttp.Call UserApi.userGetAsync​(java.lang.String username, ApiCallback<User> callback)
    Get a user (asynchronously)
    com.squareup.okhttp.Call UserApi.userGetCurrentAsync​(ApiCallback<User> callback)
    Get the authenticated user (asynchronously)
    com.squareup.okhttp.Call UserApi.userGetHeatmapDataAsync​(java.lang.String username, ApiCallback<java.util.List<UserHeatmapData>> callback)
    Get a user's heatmap (asynchronously)
    com.squareup.okhttp.Call UserApi.userGetOauth2ApplicationAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<OAuth2Application>> callback)
    List the authenticated user's oauth2 applications (asynchronously)
    com.squareup.okhttp.Call UserApi.userGetOAuth2ApplicationAsync​(java.lang.Long id, ApiCallback<OAuth2Application> callback)
    get an OAuth2 Application (asynchronously)
    com.squareup.okhttp.Call UserApi.userGetStopWatchesAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<StopWatch>> callback)
    Get list of all existing stopwatches (asynchronously)
    com.squareup.okhttp.Call UserApi.userGetTokensAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<AccessToken>> callback)
    List the authenticated user's access tokens (asynchronously)
    com.squareup.okhttp.Call UserApi.userListEmailsAsync​(ApiCallback<java.util.List<Email>> callback)
    List the authenticated user's email addresses (asynchronously)
    com.squareup.okhttp.Call UserApi.userListFollowersAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List the given user's followers (asynchronously)
    com.squareup.okhttp.Call UserApi.userListFollowingAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<User>> callback)
    List the users that the given user is following (asynchronously)
    com.squareup.okhttp.Call UserApi.userListGPGKeysAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<GPGKey>> callback)
    List the given user's GPG keys (asynchronously)
    com.squareup.okhttp.Call UserApi.userListKeysAsync​(java.lang.String username, java.lang.String fingerprint, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<PublicKey>> callback)
    List the given user's public keys (asynchronously)
    com.squareup.okhttp.Call UserApi.userListReposAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    List the repos owned by the given user (asynchronously)
    com.squareup.okhttp.Call UserApi.userListStarredAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    The repos that the given user has starred (asynchronously)
    com.squareup.okhttp.Call UserApi.userListSubscriptionsAsync​(java.lang.String username, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Repository>> callback)
    List the repositories watched by a user (asynchronously)
    com.squareup.okhttp.Call UserApi.userListTeamsAsync​(java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<Team>> callback)
    List all the teams a user belongs to (asynchronously)
    com.squareup.okhttp.Call UserApi.userSearchAsync​(java.lang.String q, java.lang.Long uid, java.lang.Integer page, java.lang.Integer limit, ApiCallback<InlineResponse2001> callback)
    Search for users (asynchronously)
    com.squareup.okhttp.Call RepositoryApi.userTrackedTimesAsync​(java.lang.String owner, java.lang.String repo, java.lang.String user, ApiCallback<java.util.List<TrackedTime>> callback)
    Deprecated. 
    com.squareup.okhttp.Call UserApi.userUpdateOAuth2ApplicationAsync​(java.lang.Long id, CreateOAuth2ApplicationOptions body, ApiCallback<OAuth2Application> callback)
    update an OAuth2 Application, this includes regenerating the client secret (asynchronously)
    com.squareup.okhttp.Call UserApi.userVerifyGPGKeyAsync​(ApiCallback<GPGKey> callback)
    Verify a GPG key (asynchronously)