GetVersionResource
Properties
| Name |
Type |
Description |
Notes |
| commit |
str |
|
[optional] |
| build |
str |
|
[optional] |
| release |
str |
|
[optional] |
| release_date |
datetime |
|
|
Example
from click_and_drop_api.models.get_version_resource import GetVersionResource
# TODO update the JSON string below
json = "{}"
# create an instance of GetVersionResource from a JSON string
get_version_resource_instance = GetVersionResource.from_json(json)
# print the JSON string representation of the object
print(GetVersionResource.to_json())
# convert the object into a dict
get_version_resource_dict = get_version_resource_instance.to_dict()
# create an instance of GetVersionResource from a dict
get_version_resource_from_dict = GetVersionResource.from_dict(get_version_resource_dict)
[Back to Model list] [Back to API list] [Back to README]