Module Values.CollaborationChangeRequestSummarySource

Summary information about a collaboration change request.

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.

    *)
  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.

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

    Whether the change request was automatically approved.

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

    Summary of the changes in this change request.

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

    Summary of approval statuses from all collaboration members for this change request.

    *)
}
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