Skip to content

Commit 039a1bd

Browse files
committed
run build
./mvnw clean package || exit ./bin/generate-samples.sh ./bin/configs/*.yaml || exit ./bin/utils/export_docs_generators.sh || exit
1 parent bc25f93 commit 039a1bd

459 files changed

Lines changed: 628 additions & 494 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Bird.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ json = "{}"
1818
# create an instance of Bird from a JSON string
1919
bird_instance = Bird.model_validate_json(json)
2020
# print the JSON string representation of the object
21-
print(Bird.model_dump_json(by_alias=True, exclude_unset=True))
21+
print(bird_instance.model_dump_json(by_alias=True, exclude_unset=True))
2222

2323
# convert the object into a dict
2424
bird_dict = bird_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Category.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ json = "{}"
1818
# create an instance of Category from a JSON string
1919
category_instance = Category.model_validate_json(json)
2020
# print the JSON string representation of the object
21-
print(Category.model_dump_json(by_alias=True, exclude_unset=True))
21+
print(category_instance.model_dump_json(by_alias=True, exclude_unset=True))
2222

2323
# convert the object into a dict
2424
category_dict = category_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DataQuery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ json = "{}"
1919
# create an instance of DataQuery from a JSON string
2020
data_query_instance = DataQuery.model_validate_json(json)
2121
# print the JSON string representation of the object
22-
print(DataQuery.model_dump_json(by_alias=True, exclude_unset=True))
22+
print(data_query_instance.model_dump_json(by_alias=True, exclude_unset=True))
2323

2424
# convert the object into a dict
2525
data_query_dict = data_query_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/DefaultValue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ json = "{}"
2525
# create an instance of DefaultValue from a JSON string
2626
default_value_instance = DefaultValue.model_validate_json(json)
2727
# print the JSON string representation of the object
28-
print(DefaultValue.model_dump_json(by_alias=True, exclude_unset=True))
28+
print(default_value_instance.model_dump_json(by_alias=True, exclude_unset=True))
2929

3030
# convert the object into a dict
3131
default_value_dict = default_value_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/NumberPropertiesOnly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ json = "{}"
1919
# create an instance of NumberPropertiesOnly from a JSON string
2020
number_properties_only_instance = NumberPropertiesOnly.model_validate_json(json)
2121
# print the JSON string representation of the object
22-
print(NumberPropertiesOnly.model_dump_json(by_alias=True, exclude_unset=True))
22+
print(number_properties_only_instance.model_dump_json(by_alias=True, exclude_unset=True))
2323

2424
# convert the object into a dict
2525
number_properties_only_dict = number_properties_only_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Pet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ json = "{}"
2222
# create an instance of Pet from a JSON string
2323
pet_instance = Pet.model_validate_json(json)
2424
# print the JSON string representation of the object
25-
print(Pet.model_dump_json(by_alias=True, exclude_unset=True))
25+
print(pet_instance.model_dump_json(by_alias=True, exclude_unset=True))
2626

2727
# convert the object into a dict
2828
pet_dict = pet_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ json = "{}"
1818
# create an instance of Query from a JSON string
1919
query_instance = Query.model_validate_json(json)
2020
# print the JSON string representation of the object
21-
print(Query.model_dump_json(by_alias=True, exclude_unset=True))
21+
print(query_instance.model_dump_json(by_alias=True, exclude_unset=True))
2222

2323
# convert the object into a dict
2424
query_dict = query_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/Tag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ json = "{}"
1818
# create an instance of Tag from a JSON string
1919
tag_instance = Tag.model_validate_json(json)
2020
# print the JSON string representation of the object
21-
print(Tag.model_dump_json(by_alias=True, exclude_unset=True))
21+
print(tag_instance.model_dump_json(by_alias=True, exclude_unset=True))
2222

2323
# convert the object into a dict
2424
tag_dict = tag_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestFormObjectMultipartRequestMarker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ json = "{}"
1717
# create an instance of TestFormObjectMultipartRequestMarker from a JSON string
1818
test_form_object_multipart_request_marker_instance = TestFormObjectMultipartRequestMarker.model_validate_json(json)
1919
# print the JSON string representation of the object
20-
print(TestFormObjectMultipartRequestMarker.model_dump_json(by_alias=True, exclude_unset=True))
20+
print(test_form_object_multipart_request_marker_instance.model_dump_json(by_alias=True, exclude_unset=True))
2121

2222
# convert the object into a dict
2323
test_form_object_multipart_request_marker_dict = test_form_object_multipart_request_marker_instance.model_dump(by_alias=True)

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/docs/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ json = "{}"
2020
# create an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter from a JSON string
2121
test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_instance = TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.model_validate_json(json)
2222
# print the JSON string representation of the object
23-
print(TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.model_dump_json(by_alias=True, exclude_unset=True))
23+
print(test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_instance.model_dump_json(by_alias=True, exclude_unset=True))
2424

2525
# convert the object into a dict
2626
test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_dict = test_query_style_deep_object_explode_true_object_all_of_query_object_parameter_instance.model_dump(by_alias=True)

0 commit comments

Comments
 (0)