Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

ProcessingTypeExample

Example usage information

Properties

Name Type Description Notes
cmd str Example command [optional]
desc str Example description [optional]

Example

from bsubio.models.processing_type_example import ProcessingTypeExample

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

# convert the object into a dict
processing_type_example_dict = processing_type_example_instance.to_dict()
# create an instance of ProcessingTypeExample from a dict
processing_type_example_from_dict = ProcessingTypeExample.from_dict(processing_type_example_dict)

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