Uses of Class
io.gitea.model.NotificationThread

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

    Methods in io.gitea.api that return NotificationThread 
    Modifier and Type Method Description
    NotificationThread NotificationApi.notifyGetThread​(java.lang.String id)
    Get notification thread by ID
    Methods in io.gitea.api that return types with arguments of type NotificationThread 
    Modifier and Type Method Description
    java.util.List<NotificationThread> NotificationApi.notifyGetList​(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)
    List users's notification threads
    ApiResponse<java.util.List<NotificationThread>> NotificationApi.notifyGetListWithHttpInfo​(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)
    List users's notification threads
    java.util.List<NotificationThread> NotificationApi.notifyGetRepoList​(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)
    List users's notification threads on a specific repo
    ApiResponse<java.util.List<NotificationThread>> NotificationApi.notifyGetRepoListWithHttpInfo​(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)
    List users's notification threads on a specific repo
    ApiResponse<NotificationThread> NotificationApi.notifyGetThreadWithHttpInfo​(java.lang.String id)
    Get notification thread by ID
    Method parameters in io.gitea.api with type arguments of type NotificationThread 
    Modifier and Type Method Description
    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)
  • Uses of NotificationThread in io.gitea.model

    Methods in io.gitea.model that return NotificationThread 
    Modifier and Type Method Description
    NotificationThread NotificationThread.id​(java.lang.Long id)  
    NotificationThread NotificationThread.pinned​(java.lang.Boolean pinned)  
    NotificationThread NotificationThread.repository​(Repository repository)  
    NotificationThread NotificationThread.subject​(NotificationSubject subject)  
    NotificationThread NotificationThread.unread​(java.lang.Boolean unread)  
    NotificationThread NotificationThread.updatedAt​(org.threeten.bp.OffsetDateTime updatedAt)  
    NotificationThread NotificationThread.url​(java.lang.String url)