Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 964 Bytes

VersionResponse.md

File metadata and controls

31 lines (22 loc) · 964 Bytes

VersionResponse

Properties

Name Type Description Notes
version str
name str
message str [optional]

Example

from waylay.services.data.models.version_response import VersionResponse

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

# convert the object into a dict
version_response_dict = version_response_instance.to_dict()
# create an instance of VersionResponse from a dict
version_response_form_dict = version_response.from_dict(version_response_dict)

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