Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

RuntimeSummaryResponseEmbedded.md

File metadata and controls

30 lines (21 loc) · 1.22 KB

RuntimeSummaryResponseEmbedded

Embedded representations of the referenced tags.

Properties

Name Type Description Notes
tags List[RuntimeTag] Record of <tag key, tag representation> pairs. [optional]

Example

from waylay.services.registry.models.runtime_summary_response_embedded import RuntimeSummaryResponseEmbedded

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

# convert the object into a dict
runtime_summary_response_embedded_dict = runtime_summary_response_embedded_instance.to_dict()
# create an instance of RuntimeSummaryResponseEmbedded from a dict
runtime_summary_response_embedded_form_dict = runtime_summary_response_embedded.from_dict(runtime_summary_response_embedded_dict)

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