Embedded representations of the referenced tags.
Name | Type | Description | Notes |
---|---|---|---|
tags | List[Tag] | Record of <tag key, tag representation> pairs. | [optional] |
from waylay.services.registry.models.get_plug_response_v2_embedded import GetPlugResponseV2Embedded
# TODO update the JSON string below
json = "{}"
# create an instance of GetPlugResponseV2Embedded from a JSON string
get_plug_response_v2_embedded_instance = GetPlugResponseV2Embedded.from_json(json)
# print the JSON string representation of the object
print GetPlugResponseV2Embedded.to_json()
# convert the object into a dict
get_plug_response_v2_embedded_dict = get_plug_response_v2_embedded_instance.to_dict()
# create an instance of GetPlugResponseV2Embedded from a dict
get_plug_response_v2_embedded_form_dict = get_plug_response_v2_embedded.from_dict(get_plug_response_v2_embedded_dict)