twitchkt
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
twitchkt
auth
/
io.github.captnblubber.twitchkt.auth
/
TokenResponse
Token
Response
@
Serializable
data
class
TokenResponse
(
val
accessToken
:
String
,
val
refreshToken
:
String
,
val
expiresIn
:
Int
,
val
scopes
:
List
<
String
>
,
val
tokenType
:
String
)
Members
Constructors
Token
Response
Link copied to clipboard
constructor
(
accessToken
:
String
,
refreshToken
:
String
,
expiresIn
:
Int
,
scopes
:
List
<
String
>
,
tokenType
:
String
)
Properties
access
Token
Link copied to clipboard
@
SerialName
(
value
=
"access_token"
)
val
accessToken
:
String
expires
In
Link copied to clipboard
@
SerialName
(
value
=
"expires_in"
)
val
expiresIn
:
Int
refresh
Token
Link copied to clipboard
@
SerialName
(
value
=
"refresh_token"
)
val
refreshToken
:
String
scopes
Link copied to clipboard
@
SerialName
(
value
=
"scope"
)
val
scopes
:
List
<
String
>
token
Type
Link copied to clipboard
@
SerialName
(
value
=
"token_type"
)
val
tokenType
:
String