Get "auth_time" value of the authorization code object.
(self)
| 8 | raise NotImplementedError() |
| 9 | |
| 10 | def get_auth_time(self): |
| 11 | """Get "auth_time" value of the authorization code object.""" |
| 12 | # OPs MUST support returning the time at which the End-User authenticated via the auth_time Claim, when requested, as defined in Section 2. |
| 13 | raise NotImplementedError() |
| 14 | |
| 15 | def get_acr(self) -> str: |
| 16 | """Get the "acr" (Authentication Method Class) value of the authorization code object.""" |
no outgoing calls
no test coverage detected