Get the fields of the object. Returns: The fields of the object.
(cls)
| 83 | |
| 84 | @classmethod |
| 85 | def get_fields(cls) -> dict[str, Any]: |
| 86 | """Get the fields of the object. |
| 87 | |
| 88 | Returns: |
| 89 | The fields of the object. |
| 90 | """ |
| 91 | return cls.__fields__ |
| 92 | |
| 93 | @classmethod |
| 94 | def add_field(cls, var: Any, default_value: Any): |
no outgoing calls