@@ -19,8 +19,8 @@ class AModelWithPropertiesReferenceThatAreNotObject:
19
19
str_properties_ref : List [str ]
20
20
date_properties_ref : List [datetime .date ]
21
21
datetime_properties_ref : List [datetime .datetime ]
22
- int_32_properties_ref : List [int ]
23
- int_64_properties_ref : List [int ]
22
+ int32_properties_ref : List [int ]
23
+ int64_properties_ref : List [int ]
24
24
float_properties_ref : List [float ]
25
25
double_properties_ref : List [float ]
26
26
file_properties_ref : List [File ]
@@ -29,8 +29,8 @@ class AModelWithPropertiesReferenceThatAreNotObject:
29
29
str_properties : List [str ]
30
30
date_properties : List [datetime .date ]
31
31
datetime_properties : List [datetime .datetime ]
32
- int_32_properties : List [int ]
33
- int_64_properties : List [int ]
32
+ int32_properties : List [int ]
33
+ int64_properties : List [int ]
34
34
float_properties : List [float ]
35
35
double_properties : List [float ]
36
36
file_properties : List [File ]
@@ -39,8 +39,8 @@ class AModelWithPropertiesReferenceThatAreNotObject:
39
39
str_property_ref : str
40
40
date_property_ref : datetime .date
41
41
datetime_property_ref : datetime .datetime
42
- int_32_property_ref : int
43
- int_64_property_ref : int
42
+ int32_property_ref : int
43
+ int64_property_ref : int
44
44
float_property_ref : float
45
45
double_property_ref : float
46
46
file_property_ref : File
@@ -71,9 +71,9 @@ def to_dict(self) -> Dict[str, Any]:
71
71
72
72
datetime_properties_ref .append (componentsschemas_an_other_array_of_date_time_item )
73
73
74
- int_32_properties_ref = self .int_32_properties_ref
74
+ int32_properties_ref = self .int32_properties_ref
75
75
76
- int_64_properties_ref = self .int_64_properties_ref
76
+ int64_properties_ref = self .int64_properties_ref
77
77
78
78
float_properties_ref = self .float_properties_ref
79
79
@@ -108,9 +108,9 @@ def to_dict(self) -> Dict[str, Any]:
108
108
109
109
datetime_properties .append (componentsschemas_an_array_of_date_time_item )
110
110
111
- int_32_properties = self .int_32_properties
111
+ int32_properties = self .int32_properties
112
112
113
- int_64_properties = self .int_64_properties
113
+ int64_properties = self .int64_properties
114
114
115
115
float_properties = self .float_properties
116
116
@@ -130,8 +130,8 @@ def to_dict(self) -> Dict[str, Any]:
130
130
date_property_ref = self .date_property_ref .isoformat ()
131
131
datetime_property_ref = self .datetime_property_ref .isoformat ()
132
132
133
- int_32_property_ref = self .int_32_property_ref
134
- int_64_property_ref = self .int_64_property_ref
133
+ int32_property_ref = self .int32_property_ref
134
+ int64_property_ref = self .int64_property_ref
135
135
float_property_ref = self .float_property_ref
136
136
double_property_ref = self .double_property_ref
137
137
file_property_ref = self .file_property_ref .to_tuple ()
@@ -146,8 +146,8 @@ def to_dict(self) -> Dict[str, Any]:
146
146
"str_properties_ref" : str_properties_ref ,
147
147
"date_properties_ref" : date_properties_ref ,
148
148
"datetime_properties_ref" : datetime_properties_ref ,
149
- "int32_properties_ref" : int_32_properties_ref ,
150
- "int64_properties_ref" : int_64_properties_ref ,
149
+ "int32_properties_ref" : int32_properties_ref ,
150
+ "int64_properties_ref" : int64_properties_ref ,
151
151
"float_properties_ref" : float_properties_ref ,
152
152
"double_properties_ref" : double_properties_ref ,
153
153
"file_properties_ref" : file_properties_ref ,
@@ -156,8 +156,8 @@ def to_dict(self) -> Dict[str, Any]:
156
156
"str_properties" : str_properties ,
157
157
"date_properties" : date_properties ,
158
158
"datetime_properties" : datetime_properties ,
159
- "int32_properties" : int_32_properties ,
160
- "int64_properties" : int_64_properties ,
159
+ "int32_properties" : int32_properties ,
160
+ "int64_properties" : int64_properties ,
161
161
"float_properties" : float_properties ,
162
162
"double_properties" : double_properties ,
163
163
"file_properties" : file_properties ,
@@ -166,8 +166,8 @@ def to_dict(self) -> Dict[str, Any]:
166
166
"str_property_ref" : str_property_ref ,
167
167
"date_property_ref" : date_property_ref ,
168
168
"datetime_property_ref" : datetime_property_ref ,
169
- "int32_property_ref" : int_32_property_ref ,
170
- "int64_property_ref" : int_64_property_ref ,
169
+ "int32_property_ref" : int32_property_ref ,
170
+ "int64_property_ref" : int64_property_ref ,
171
171
"float_property_ref" : float_property_ref ,
172
172
"double_property_ref" : double_property_ref ,
173
173
"file_property_ref" : file_property_ref ,
@@ -207,9 +207,9 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
207
207
208
208
datetime_properties_ref .append (componentsschemas_an_other_array_of_date_time_item )
209
209
210
- int_32_properties_ref = cast (List [int ], d .pop ("int32_properties_ref" ))
210
+ int32_properties_ref = cast (List [int ], d .pop ("int32_properties_ref" ))
211
211
212
- int_64_properties_ref = cast (List [int ], d .pop ("int64_properties_ref" ))
212
+ int64_properties_ref = cast (List [int ], d .pop ("int64_properties_ref" ))
213
213
214
214
float_properties_ref = cast (List [float ], d .pop ("float_properties_ref" ))
215
215
@@ -249,9 +249,9 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
249
249
250
250
datetime_properties .append (componentsschemas_an_array_of_date_time_item )
251
251
252
- int_32_properties = cast (List [int ], d .pop ("int32_properties" ))
252
+ int32_properties = cast (List [int ], d .pop ("int32_properties" ))
253
253
254
- int_64_properties = cast (List [int ], d .pop ("int64_properties" ))
254
+ int64_properties = cast (List [int ], d .pop ("int64_properties" ))
255
255
256
256
float_properties = cast (List [float ], d .pop ("float_properties" ))
257
257
@@ -276,9 +276,9 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
276
276
277
277
datetime_property_ref = isoparse (d .pop ("datetime_property_ref" ))
278
278
279
- int_32_property_ref = d .pop ("int32_property_ref" )
279
+ int32_property_ref = d .pop ("int32_property_ref" )
280
280
281
- int_64_property_ref = d .pop ("int64_property_ref" )
281
+ int64_property_ref = d .pop ("int64_property_ref" )
282
282
283
283
float_property_ref = d .pop ("float_property_ref" )
284
284
@@ -293,8 +293,8 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
293
293
str_properties_ref = str_properties_ref ,
294
294
date_properties_ref = date_properties_ref ,
295
295
datetime_properties_ref = datetime_properties_ref ,
296
- int_32_properties_ref = int_32_properties_ref ,
297
- int_64_properties_ref = int_64_properties_ref ,
296
+ int32_properties_ref = int32_properties_ref ,
297
+ int64_properties_ref = int64_properties_ref ,
298
298
float_properties_ref = float_properties_ref ,
299
299
double_properties_ref = double_properties_ref ,
300
300
file_properties_ref = file_properties_ref ,
@@ -303,8 +303,8 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
303
303
str_properties = str_properties ,
304
304
date_properties = date_properties ,
305
305
datetime_properties = datetime_properties ,
306
- int_32_properties = int_32_properties ,
307
- int_64_properties = int_64_properties ,
306
+ int32_properties = int32_properties ,
307
+ int64_properties = int64_properties ,
308
308
float_properties = float_properties ,
309
309
double_properties = double_properties ,
310
310
file_properties = file_properties ,
@@ -313,8 +313,8 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
313
313
str_property_ref = str_property_ref ,
314
314
date_property_ref = date_property_ref ,
315
315
datetime_property_ref = datetime_property_ref ,
316
- int_32_property_ref = int_32_property_ref ,
317
- int_64_property_ref = int_64_property_ref ,
316
+ int32_property_ref = int32_property_ref ,
317
+ int64_property_ref = int64_property_ref ,
318
318
float_property_ref = float_property_ref ,
319
319
double_property_ref = double_property_ref ,
320
320
file_property_ref = file_property_ref ,
0 commit comments