| 25 | |
| 26 | |
| 27 | class GroupMeta: |
| 28 | created: Union[Optional[str], DefaultArg] |
| 29 | location: Union[Optional[str], DefaultArg] |
| 30 | unknown_fields: Dict[str, Any] |
| 31 | |
| 32 | def __init__( |
| 33 | self, |
| 34 | *, |
| 35 | created: Union[Optional[str], DefaultArg] = NotGiven, |
| 36 | location: Union[Optional[str], DefaultArg] = NotGiven, |
| 37 | **kwargs, |
| 38 | ) -> None: |
| 39 | self.created = created |
| 40 | self.location = location |
| 41 | self.unknown_fields = kwargs |
| 42 | |
| 43 | def to_dict(self): |
| 44 | return _to_dict_without_not_given(self) |
| 45 | |
| 46 | |
| 47 | class Group: |