Module Values.CollaborationChangeRequestSource

Represents a request to modify a collaboration. Change requests enable structured modifications to collaborations after they have been created.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The unique identifier for the change request.

    *)
  2. collaborationId : UUID.t option;
    (*

    The unique identifier for the collaboration being modified.

    *)
  3. createTime : Timestamp.t option;
    (*

    The time when the change request was created.

    *)
  4. updateTime : Timestamp.t option;
    (*

    The time when the change request was last updated.

    *)
  5. status : ChangeRequestStatus.t option;
    (*

    The current status of the change request. Valid values are PENDING, APPROVED, DENIED, COMMITTED, and CANCELLED.

    *)
  6. isAutoApproved : Boolean.t option;
    (*

    Whether the change request was automatically approved based on the collaboration's auto-approval settings.

    *)
  7. changes : ChangeList.t option;
    (*

    The list of changes specified in this change request.

    *)
  8. approvals : ApprovalStatuses.t option;
    (*

    A list of approval details from collaboration members, including approval status and multi-party approval workflow information.

    *)
}
Sourceval make : ?id:??? -> ?collaborationId:??? -> ?createTime:??? -> ?updateTime:??? -> ?status:??? -> ?isAutoApproved:??? -> ?changes:??? -> ?approvals:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Structure of (string * [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of AccountId.t ]) list ]) list ]) list ] list | `Map of ([> `String of AccountId.t ] * [> `Structure of (string * [> `Enum of string ]) list ]) list | `String of UUID.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t