jp.room417.twitter4kt.auth.Authorization.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twitter4kt Show documentation
Show all versions of twitter4kt Show documentation
Simple `Twitter4J` wrapper for native support of Kotlin Coroutines
The newest version!
package jp.room417.twitter4kt.auth
import java.io.Serializable
/** A wrapper of [twitter4j.Authorization] */
interface Authorization : Serializable {
/** A wrapped instance */
val auth: twitter4j.Authorization
}