: Runtime Version Found
Name | Type | Description | Notes |
---|---|---|---|
embedded | RuntimeSummaryResponseEmbedded | [optional] | |
runtime | CompiledRuntimeVersion |
from waylay.services.registry.models.runtime_version_response import RuntimeVersionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of RuntimeVersionResponse from a JSON string
runtime_version_response_instance = RuntimeVersionResponse.from_json(json)
# print the JSON string representation of the object
print RuntimeVersionResponse.to_json()
# convert the object into a dict
runtime_version_response_dict = runtime_version_response_instance.to_dict()
# create an instance of RuntimeVersionResponse from a dict
runtime_version_response_form_dict = runtime_version_response.from_dict(runtime_version_response_dict)