| Name | Type | Description | Notes |
|---|
from clientapi_cpanel.models.val import Val
# TODO update the JSON string below
json = "{}"
# create an instance of Val from a JSON string
val_instance = Val.from_json(json)
# print the JSON string representation of the object
print(Val.to_json())
# convert the object into a dict
val_dict = val_instance.to_dict()
# create an instance of Val from a dict
val_from_dict = Val.from_dict(val_dict)