Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
title | str | [optional] | |
project_id | int | [optional] | |
position | int | [optional] |
from semaphore_api.models.view import View
# TODO update the JSON string below
json = "{}"
# create an instance of View from a JSON string
view_instance = View.from_json(json)
# print the JSON string representation of the object
print(View.to_json())
# convert the object into a dict
view_dict = view_instance.to_dict()
# create an instance of View from a dict
view_from_dict = View.from_dict(view_dict)