Sha256: 6afbec25e4002d822a8a749a5ce3443647f86c1b3c2b6deb454277df606315b7
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
# frozen_string_literal: true require 'jwt' module FriendlyShipping module Services class TForceFreight # Represents an access token returned by TForce Freight. The access token can be # used to make API requests. Once it expires, a new token must be created. class AccessToken # @return [String] the token's type attr_reader :token_type # @return [Integer] the token's expiration attr_reader :expires_in # @return [Integer] the token's extended expiration attr_reader :ext_expires_in # @return [String] the raw JWT token attr_reader :raw_token # @param token_type [String] the token's type (typically "Bearer") # @param expires_in [Integer] the token's expiration # @param ext_expires_in [Integer] the token's extended expiration (only applicable during a service outage) # @see https://github.com/AzureAD/azure-activedirectory-library-for-android/issues/675 Service Outage Resiliency Support # @param raw_token [String] the raw JWT token def initialize(token_type:, expires_in:, ext_expires_in:, raw_token:) @token_type = token_type @expires_in = expires_in @ext_expires_in = ext_expires_in @raw_token = raw_token end # Decodes and returns the raw JWT token. # @return [Array<Hash>] the decoded token def decoded_token @_decoded_token = JWT.decode(raw_token, nil, false) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
friendly_shipping-0.9.0 | lib/friendly_shipping/services/tforce_freight/access_token.rb |