Packages

t

github4s.algebras

Activities

trait Activities[F[_]] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Activities
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def listStargazers(owner: String, repo: String, timeline: Boolean, pagination: Option[Pagination] = None, headers: Map[String, String] = Map()): F[GHResponse[List[Stargazer]]]

    List the users having starred a particular repository

    List the users having starred a particular repository

    owner

    of the repo

    repo

    name of the repo

    timeline

    Whether or not to include the date at which point a user starred the repo

    pagination

    Limit and Offset for pagination

    headers

    Optional user headers to include in the request

    returns

    GHResponse with the list of users starring this repo

  2. abstract def listStarredRepositories(username: String, timeline: Boolean, sort: Option[String] = None, direction: Option[String] = None, pagination: Option[Pagination] = None, headers: Map[String, String] = Map()): F[GHResponse[List[StarredRepository]]]

    List the repositories starred by a particular user

    List the repositories starred by a particular user

    username

    User for which we want to retrieve the starred repositories

    timeline

    Whether or not to include the date at which point a user starred the repo

    sort

    How to sort the result, can be "created" (when the repo was starred) or "updated" (when the repo was last pushed to)

    direction

    In which direction the results are sorted, can be "asc" or "desc"

    pagination

    Limit and Offset for pagination

    headers

    Optional user headers to include in the request

    returns

    GHResponse with the list of starred repositories for this user

  3. abstract def setThreadSub(id: Int, subscribed: Boolean, ignored: Boolean, headers: Map[String, String] = Map()): F[GHResponse[Subscription]]

    Set a thread subscription

    Set a thread subscription

    id

    Conversation id for subscribe or unsubscribe

    subscribed

    Determines if notifications should be received from this thread

    ignored

    Determines if all notifications should be blocked from this thread

    headers

    Optional user headers to include in the request

    returns

    GHResponse with the Subscription

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped