@@ -41,13 +41,33 @@ class InquiriesCreateInquiryPayload(BaseModel):
41
41
"""
42
42
43
43
# data type: SuggestProduct
44
+ # BEGIN of the workaround until upstream issues are fixed:
45
+ # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
46
+ # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
47
+ # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
44
48
oneof_schema_1_validator : Optional [SuggestProduct ] = None
49
+ # END of the workaround
45
50
# data type: ContactSales
51
+ # BEGIN of the workaround until upstream issues are fixed:
52
+ # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
53
+ # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
54
+ # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
46
55
oneof_schema_2_validator : Optional [ContactSales ] = None
56
+ # END of the workaround
47
57
# data type: BecomeVendor
58
+ # BEGIN of the workaround until upstream issues are fixed:
59
+ # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
60
+ # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
61
+ # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
48
62
oneof_schema_3_validator : Optional [BecomeVendor ] = None
63
+ # END of the workaround
49
64
# data type: RegisterTesting
65
+ # BEGIN of the workaround until upstream issues are fixed:
66
+ # https://github.com/OpenAPITools/openapi-generator/issues/19034 from Jun 28, 2024
67
+ # and https://github.com/OpenAPITools/openapi-generator/issues/19842 from Oct 11, 2024
68
+ # Tracking issue on our side: https://jira.schwarz/browse/STACKITSDK-227
50
69
oneof_schema_4_validator : Optional [RegisterTesting ] = None
70
+ # END of the workaround
51
71
actual_instance : Optional [Union [BecomeVendor , ContactSales , RegisterTesting , SuggestProduct ]] = None
52
72
one_of_schemas : Set [str ] = {"BecomeVendor" , "ContactSales" , "RegisterTesting" , "SuggestProduct" }
53
73
0 commit comments