(cls, identity_document: dict)
| 35 | |
| 36 | @classmethod |
| 37 | def from_identity_document(cls, identity_document: dict) -> "EdgeIdentity": # type: ignore[type-arg] |
| 38 | return EdgeIdentity(IdentityModel.model_validate(identity_document)) |
| 39 | |
| 40 | @property |
| 41 | def environment_api_key(self) -> str: |