| 84 | |
| 85 | |
| 86 | class IdentityOverrideV2(BaseModel): |
| 87 | environment_id: str |
| 88 | document_key: str |
| 89 | environment_api_key: str |
| 90 | identifier: str |
| 91 | identity_uuid: str |
| 92 | feature_state: FeatureStateModel |
| 93 | created_date: datetime = Field(default_factory=timezone.now) |
| 94 | |
| 95 | |
| 96 | @dataclass |
no outgoing calls
searching dependent graphs…