//
/* NOTICE: All information contained herein is, and remains the property of Brightinsight Inc. or its customer. 
The intellectual and technical concepts contained herein are proprietary to Brightinsight Inc. or its customer and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret or copyright law.
Dissemination of this information or reproduction of this material is strictly forbidden unless prior written permission is obtained from Brightinsight Inc. or its customer. Access to the source code contained herein is hereby forbidden to anyone except current Brightinsight Inc. employees, managers or contractors who have executed
Confidentiality and Non-disclosure agreements explicitly covering such access.
*/
/**
* System Name : BISDKUserManagement
* Component ID : BISDKToken
* Description : 
* Author: José Luis García
* Copyright © : Brightinsight, Inc.
* -----------------------
* Revision Change
* -----------------------
* Author            Date             Version       Change-Description
*========================================================================================================
*/

import Foundation

public struct BISDKToken: Codable {
    public var accessToken: String?
    public var refreshToken: String?
    public var tokenType: String?
    public var idToken: String?
    
    public var tokenId: String?
    public var authorization: String? {
        guard let type = tokenType, let token = accessToken else { return nil }
        return "\(type) \(token)"
    }
}
extension BISDKToken {
    enum CodingKeys: String, CodingKey {
        case accessToken = "access_token"
        case refreshToken = "refresh_token"
        case tokenType = "token_type"
        case idToken = "id_token"
    }
}
