authentication
Toggle table of contents
0.0.1
common
Platform filter
common
Switch theme
Search in API
authentication
authentication
/
de.gematik.zeta.sdk.authentication.model
/
AccessTokenResponse
Access
Token
Response
@
Serializable
data
class
AccessTokenResponse
(
val
accessToken
:
String
,
val
expiresIn
:
Int
,
val
refreshExpires
:
Int
,
val
tokenType
:
String
,
val
notBeforePolicy
:
String
,
val
sessionState
:
String
,
val
scope
:
String
,
val
issuedTokenType
:
String
)
Members
Constructors
Access
Token
Response
Link copied to clipboard
constructor
(
accessToken
:
String
,
expiresIn
:
Int
,
refreshExpires
:
Int
,
tokenType
:
String
,
notBeforePolicy
:
String
,
sessionState
:
String
,
scope
:
String
,
issuedTokenType
:
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
issued
Token
Type
Link copied to clipboard
@
SerialName
(
value
=
"issued_token_type"
)
val
issuedTokenType
:
String
not
Before
Policy
Link copied to clipboard
@
SerialName
(
value
=
"not-before-policy"
)
val
notBeforePolicy
:
String
refresh
Expires
Link copied to clipboard
@
SerialName
(
value
=
"refresh_expires_in"
)
val
refreshExpires
:
Int
scope
Link copied to clipboard
@
SerialName
(
value
=
"scope"
)
val
scope
:
String
session
State
Link copied to clipboard
@
SerialName
(
value
=
"session_state"
)
val
sessionState
:
String
token
Type
Link copied to clipboard
@
SerialName
(
value
=
"token_type"
)
val
tokenType
:
String