Module Values.PendingUpdateSource

Contains details for the pending updates for an approval team, if applicable.

Sourcetype nonrec t = {
  1. versionId : String_.t option;
    (*

    Version ID for the team.

    *)
  2. description : String_.t option;
    (*

    Description for the team.

    *)
  3. approvalStrategy : ApprovalStrategyResponse.t option;
    (*

    An ApprovalStrategyResponse object. Contains details for how the team grants approval.

    *)
  4. numberOfApprovers : Integer.t option;
    (*

    Total number of approvers in the team.

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

    Status for the team. For more information, see Team health in the Multi-party approval User Guide.

    *)
  6. statusCode : ApprovalTeamStatusCode.t option;
    (*

    Status code for the update. For more information, see Team health in the Multi-party approval User Guide.

    *)
  7. statusMessage : Message.t option;
    (*

    Message describing the status for the team.

    *)
  8. approvers : GetApprovalTeamResponseApprovers.t option;
    (*

    An array of GetApprovalTeamResponseApprover objects. Contains details for the approvers in the team.

    *)
  9. updateInitiationTime : IsoTimestamp.t option;
    (*

    Timestamp when the update request was initiated.

    *)
}
Sourceval make : ?versionId:??? -> ?description:??? -> ?approvalStrategy:??? -> ?numberOfApprovers:??? -> ?status:??? -> ?statusCode:??? -> ?statusMessage:??? -> ?approvers:??? -> ?updateInitiationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `String of ParticipantId.t | `Timestamp of IsoTimestamp.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Integer of MofNApprovalStrategyMinApprovalsRequiredInteger.t ]) list ]) list | `Timestamp of IsoTimestamp.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