Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 932 Bytes

ViewRequest.md

File metadata and controls

31 lines (22 loc) · 932 Bytes

ViewRequest

Properties

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

Example

from semaphore_api.models.view_request import ViewRequest

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

# convert the object into a dict
view_request_dict = view_request_instance.to_dict()
# create an instance of ViewRequest from a dict
view_request_from_dict = ViewRequest.from_dict(view_request_dict)

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