Skip to content

Commit 0488805

Browse files
stackit-pipelinerubenhoenle
authored andcommitted
Generate stackitmarketplace
1 parent a052591 commit 0488805

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

services/stackitmarketplace/src/stackit/stackitmarketplace/models/inquiries_create_inquiry_payload.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,33 @@ class InquiriesCreateInquiryPayload(BaseModel):
4141
"""
4242

4343
# 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
4448
oneof_schema_1_validator: Optional[SuggestProduct] = None
49+
# END of the workaround
4550
# 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
4655
oneof_schema_2_validator: Optional[ContactSales] = None
56+
# END of the workaround
4757
# 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
4862
oneof_schema_3_validator: Optional[BecomeVendor] = None
63+
# END of the workaround
4964
# 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
5069
oneof_schema_4_validator: Optional[RegisterTesting] = None
70+
# END of the workaround
5171
actual_instance: Optional[Union[BecomeVendor, ContactSales, RegisterTesting, SuggestProduct]] = None
5272
one_of_schemas: Set[str] = {"BecomeVendor", "ContactSales", "RegisterTesting", "SuggestProduct"}
5373

0 commit comments

Comments
 (0)