openapi-generator/samples/client/echo_api/python-pydantic-v1/docs/TestQueryStyleFormExplodeTrueArrayIntegerQueryObjectParameter.md
William Cheng d0187ab359
Add tests for query parameters (array of integer/string) (#17686)
* add tests for query parameters in python client

* update other samples

* update samples
2024-01-24 10:20:18 +08:00

1.5 KiB

TestQueryStyleFormExplodeTrueArrayIntegerQueryObjectParameter

Properties

Name Type Description Notes
values List[int] [optional]

Example

from openapi_client.models.test_query_style_form_explode_true_array_integer_query_object_parameter import TestQueryStyleFormExplodeTrueArrayIntegerQueryObjectParameter

# TODO update the JSON string below
json = "{}"
# create an instance of TestQueryStyleFormExplodeTrueArrayIntegerQueryObjectParameter from a JSON string
test_query_style_form_explode_true_array_integer_query_object_parameter_instance = TestQueryStyleFormExplodeTrueArrayIntegerQueryObjectParameter.from_json(json)
# print the JSON string representation of the object
print TestQueryStyleFormExplodeTrueArrayIntegerQueryObjectParameter.to_json()

# convert the object into a dict
test_query_style_form_explode_true_array_integer_query_object_parameter_dict = test_query_style_form_explode_true_array_integer_query_object_parameter_instance.to_dict()
# create an instance of TestQueryStyleFormExplodeTrueArrayIntegerQueryObjectParameter from a dict
test_query_style_form_explode_true_array_integer_query_object_parameter_form_dict = test_query_style_form_explode_true_array_integer_query_object_parameter.from_dict(test_query_style_form_explode_true_array_integer_query_object_parameter_dict)

[Back to Model list] [Back to API list] [Back to README]