Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 837 Bytes

IpMask.md

File metadata and controls

30 lines (21 loc) · 837 Bytes

IpMask

Properties

Name Type Description Notes
ip str [optional] [readonly]
net_mask int [optional] [readonly]

Example

from cyperf.models.ip_mask import IpMask

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

# convert the object into a dict
ip_mask_dict = ip_mask_instance.to_dict()
# create an instance of IpMask from a dict
ip_mask_from_dict = IpMask.from_dict(ip_mask_dict)

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