Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

File metadata and controls

29 lines (20 loc) · 1.13 KB

DefaultPipingBoolParameterRequest

Properties

Name Type Description Notes
value bool [optional]

Example

from aiochris_oag.models.default_piping_bool_parameter_request import DefaultPipingBoolParameterRequest

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

# convert the object into a dict
default_piping_bool_parameter_request_dict = default_piping_bool_parameter_request_instance.to_dict()
# create an instance of DefaultPipingBoolParameterRequest from a dict
default_piping_bool_parameter_request_from_dict = DefaultPipingBoolParameterRequest.from_dict(default_piping_bool_parameter_request_dict)

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