PROTOCOL

OAuthTokenModel

swift
public protocol OAuthTokenModel: OAuthModel

A token model related with OAuth.

Properties

accessToken

swift
var accessToken: String

The access token.

tokenType

swift
var tokenType: String?

The token type.

scope

swift
var scope: String?

The resulting scope.

expiresIn

swift
var expiresIn: Int

The lifetime of the access token, in seconds.

refreshToken

swift
var refreshToken: String?

The refresh token.

idToken

swift
var idToken: String?

The ID Token value associated with the authenticated session.