Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1018 Bytes

ProjectRequest.md

File metadata and controls

32 lines (23 loc) · 1018 Bytes

ProjectRequest

Properties

Name Type Description Notes
name str [optional]
alert bool [optional]
alert_chat str [optional]
max_parallel_tasks int [optional]

Example

from semaphore_api.models.project_request import ProjectRequest

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

# convert the object into a dict
project_request_dict = project_request_instance.to_dict()
# create an instance of ProjectRequest from a dict
project_request_from_dict = ProjectRequest.from_dict(project_request_dict)

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