AuthorizationStoreable
public protocol AuthorizationStoreable : AnyObject
The AuthorizationStoreable
is used to provide authorization token.
Provide authorization token
-
An delegate that application should extend to provide access token.
Declaration
Swift
var delegate: AuthorizationStoreDelegate? { get set }
-
The current access token.
Declaration
Swift
var accessToken: String? { get }
-
The current authorization token. (auth_type + access_token)
Declaration
Swift
var authorizationToken: String? { get }