Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

GetVersionResponse.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

GetVersionResponse

Properties

Name Type Description Notes
version str FormKiQ version [optional]
type str FormKiQ type [optional]
modules List[str] List of installed modules [optional]

Example

from formkiq_client.models.get_version_response import GetVersionResponse

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

# convert the object into a dict
get_version_response_dict = get_version_response_instance.to_dict()
# create an instance of GetVersionResponse from a dict
get_version_response_from_dict = GetVersionResponse.from_dict(get_version_response_dict)

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