Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.32 KB

File metadata and controls

37 lines (28 loc) · 1.32 KB

PathPartApprovalResponse

Current approval decision over any path_part (file or folder).

Properties

Name Type Description Notes
id UUID
path_part_id UUID
status PathPartApprovalDecision
reviewer_id UUID
reviewed_at datetime
reason str
created_at datetime
updated_at datetime

Example

from ksapi.models.path_part_approval_response import PathPartApprovalResponse

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

# convert the object into a dict
path_part_approval_response_dict = path_part_approval_response_instance.to_dict()
# create an instance of PathPartApprovalResponse from a dict
path_part_approval_response_from_dict = PathPartApprovalResponse.from_dict(path_part_approval_response_dict)

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