You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromklimapi_python.models.waste_disposal_construction_weightimportWasteDisposalConstructionWeight# TODO update the JSON string belowjson="{}"# create an instance of WasteDisposalConstructionWeight from a JSON stringwaste_disposal_construction_weight_instance=WasteDisposalConstructionWeight.from_json(json)
# print the JSON string representation of the objectprint(WasteDisposalConstructionWeight.to_json())
# convert the object into a dictwaste_disposal_construction_weight_dict=waste_disposal_construction_weight_instance.to_dict()
# create an instance of WasteDisposalConstructionWeight from a dictwaste_disposal_construction_weight_from_dict=WasteDisposalConstructionWeight.from_dict(waste_disposal_construction_weight_dict)