Source code for globus_sdk.tokenstorage.v2.validating_token_storage.context
from__future__importannotationsimportdataclasses
[docs]@dataclasses.dataclassclassTokenValidationContext:""" A data object of information available to :class:`TokenDataValidators <TokenDataValidator>` during validation. :ivar str | None prior_identity_id: The identity ID associated with the :class:`ValidatingTokenStorage` before the operation began, if there was one. :ivar str | None token_data_identity_id: The identity ID extracted from the token data being validated. """prior_identity_id:str|Nonetoken_data_identity_id:str|None