com.caseykulm.oauthheader.models.RequestTokenResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauthheader Show documentation
Show all versions of oauthheader Show documentation
OkHttp OAuth 1.0 3-legged Helper
package com.caseykulm.oauthheader.models
data class RequestTokenResponse(
val oauthToken: String,
val oauthTokenSecret: String,
val oauthCallbackConfirmed: Boolean)