Lifecycle status of an AgentIdentity credential.
| 49 | |
| 50 | |
| 51 | class AgentIdentityStatus(str, Enum): |
| 52 | """Lifecycle status of an AgentIdentity credential.""" |
| 53 | ACTIVE = "ACTIVE" |
| 54 | SUSPENDED = "SUSPENDED" |
| 55 | REVOKED = "REVOKED" |
| 56 | EXPIRED = "EXPIRED" |
| 57 | |
| 58 | |
| 59 | # ── AgentIdentity ───────────────────────────────────────────────────────────── |
no outgoing calls
no test coverage detected