Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

ExpectedDiskSpace

Properties

Name Type Description Notes
message ExpectedDiskSpaceMessage
pretty_size ExpectedDiskSpacePrettySize
size ExpectedDiskSpaceSize

Example

from cyperf.models.expected_disk_space import ExpectedDiskSpace

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

# convert the object into a dict
expected_disk_space_dict = expected_disk_space_instance.to_dict()
# create an instance of ExpectedDiskSpace from a dict
expected_disk_space_from_dict = ExpectedDiskSpace.from_dict(expected_disk_space_dict)

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