Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 706 Bytes

File metadata and controls

28 lines (19 loc) · 706 Bytes

Val

Properties

Name Type Description Notes

Example

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)

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