(cls, data: Any)
| 136 | |
| 137 | @model_validator(mode="after") |
| 138 | def validate(cls, data: Any): |
| 139 | if data.authentication is not None: |
| 140 | data.authentication.encrypt() |
| 141 | return data |
| 142 | |
| 143 | # ---------------------------- |
| 144 | # Run an Action |
no test coverage detected