Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 869 Bytes

View.md

File metadata and controls

32 lines (23 loc) · 869 Bytes

View

Properties

Name Type Description Notes
id int [optional]
title str [optional]
project_id int [optional]
position int [optional]

Example

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)

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