Information for a Chamber
| Name | Type | Description | Notes |
|---|---|---|---|
| chamber_code | str | Chamber code (H/S) | [optional] |
| name | str | Chamber name | [optional] |
from valis.models.chamber_type_reference_response import ChamberTypeReferenceResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ChamberTypeReferenceResponse from a JSON string
chamber_type_reference_response_instance = ChamberTypeReferenceResponse.from_json(json)
# print the JSON string representation of the object
print(ChamberTypeReferenceResponse.to_json())
# convert the object into a dict
chamber_type_reference_response_dict = chamber_type_reference_response_instance.to_dict()
# create an instance of ChamberTypeReferenceResponse from a dict
chamber_type_reference_response_from_dict = ChamberTypeReferenceResponse.from_dict(chamber_type_reference_response_dict)