Values.UpdateCollaborationChangeRequestInputSourceUpdates an existing collaboration change request. This operation allows approval actions for pending change requests in collaborations (APPROVE, DENY, CANCEL, COMMIT). For change requests without automatic approval, a member in the collaboration can manually APPROVE or DENY a change request. The collaboration owner can manually CANCEL or COMMIT a change request.
type nonrec t = {collaborationIdentifier : CollaborationIdentifier.t;The unique identifier of the collaboration that contains the change request to be updated.
*)changeRequestIdentifier : CollaborationChangeRequestIdentifier.t;The unique identifier of the specific change request to be updated within the collaboration.
*)action : ChangeRequestAction.t;The action to perform on the change request. Valid values include APPROVE (approve the change), DENY (reject the change), CANCEL (cancel the request), and COMMIT (commit after the request is approved). For change requests without automatic approval, a member in the collaboration can manually APPROVE or DENY a change request. The collaboration owner can manually CANCEL or COMMIT a change request.
*)}val make :
collaborationIdentifier:CollaborationIdentifier.t ->
changeRequestIdentifier:CollaborationChangeRequestIdentifier.t ->
action:ChangeRequestAction.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of CollaborationIdentifier.t ])
list ]