Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 807 Bytes

File metadata and controls

30 lines (21 loc) · 807 Bytes

VxLANId

Properties

Name Type Description Notes
vx_lan_id int
id str

Example

from cyperf.models.vx_lanid import VxLANId

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

# convert the object into a dict
vx_lanid_dict = vx_lanid_instance.to_dict()
# create an instance of VxLANId from a dict
vx_lanid_from_dict = VxLANId.from_dict(vx_lanid_dict)

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