Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

RuntimeVersionResponse.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

RuntimeVersionResponse

: Runtime Version Found

Properties

Name Type Description Notes
embedded RuntimeSummaryResponseEmbedded [optional]
runtime CompiledRuntimeVersion

Example

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)

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