Source code for pyrestsdk.credential._abstract_token_credential
"""Houses the Abstract Token Credential"""
from abc import abstractmethod
from typing import TypeVar
from pyrestsdk.credential._abstract_credential import AbstractCredential
from pyrestsdk.type.model.token import AccessToken
A = TypeVar("A", bound=AccessToken)