Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

DisablePipeline200Response

Properties

Name Type Description Notes
message str [optional]

Example

from sensorbucket.models.disable_pipeline200_response import DisablePipeline200Response

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

# convert the object into a dict
disable_pipeline200_response_dict = disable_pipeline200_response_instance.to_dict()
# create an instance of DisablePipeline200Response from a dict
disable_pipeline200_response_from_dict = DisablePipeline200Response.from_dict(disable_pipeline200_response_dict)

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