PredixUAAAccessToken
public struct PredixUAAAccessTokenA Model that represents a Predix UAA session. Please visit the UAA documentation site for more information
- 
                  
                  The UAA token used for access DeclarationSwift public let token: String?
- 
                  
                  The UAA token type DeclarationSwift public let tokenType: String?
- 
                  
                  The UAA refresh token DeclarationSwift public let refreshToken: String?
- 
                  
                  The UAA user information for the Authenticated user DeclarationSwift public let user: User?
- 
                  
                  The raw UAA token response payload DeclarationSwift public let rawPayload: [String: Any]?
- 
                  
                  Constructs a PredixUAAAccessToken from a UAA token response. For detials on how to obtain a UAA token please refer to the UAAAuthorizationHandler The authenticationPayload is expect to follow the token response payload from the UAA token specification example structure: [ access_token :070b35231966488ab07f11822c6ef162 ,token_type :bearer ,refresh_token :cd98b3dea6044470b0a6dfccc0e370ee-r ,expires_in : 43199,scope :openid oauth.approvals ,jti :070b35231966488ab07f11822c6ef162 ]DeclarationSwift public init?(authenticationPayload: [String: Any]?)Return ValueReturns nil if the given payload does not contain a UAA token or a UAA token type 
 View on GitHub
            View on GitHub
           PredixUAAAccessToken Structure Reference
      PredixUAAAccessToken Structure Reference