Response from an AgentIdentity static verification.
| 485 | |
| 486 | |
| 487 | class AgentIdentityVerifyResponse(BaseModel): |
| 488 | """Response from an AgentIdentity static verification.""" |
| 489 | agent_id: str |
| 490 | is_active: bool |
| 491 | is_valid: bool |
| 492 | verified_at: datetime |
| 493 | message: str |
| 494 | |
| 495 | |
| 496 | # ── Issue Result ─────────────────────────────────────────────────────────────── |