| Name | Type | Description | Notes |
|---|---|---|---|
| vx_lan_id | int | ||
| id | str |
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)