File tree Expand file tree Collapse file tree
src/datagsm_openapi/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,8 +48,12 @@ class ClubDetail(BaseModel):
4848 name : str = Field (..., description = "Club name" )
4949 type : ClubType = Field (..., description = "Club type" )
5050 status : Optional [ClubStatus ] = Field (None , description = "Club operation status" )
51- founded_year : Optional [int ] = Field (None , alias = "foundedYear" , description = "Year the club was founded" )
52- abolished_year : Optional [int ] = Field (None , alias = "abolishedYear" , description = "Year the club was abolished" )
51+ founded_year : Optional [int ] = Field (
52+ None , alias = "foundedYear" , description = "Year the club was founded"
53+ )
54+ abolished_year : Optional [int ] = Field (
55+ None , alias = "abolishedYear" , description = "Year the club was abolished"
56+ )
5357 leader : "ParticipantInfo" = Field (..., description = "Club leader" )
5458 participants : list ["ParticipantInfo" ] = Field (
5559 default_factory = list , description = "Club members"
You can’t perform that action at this time.
0 commit comments