Module Values.SyncBlockerSource

Information about a blocker for a sync event.

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

    The ID for a specific sync blocker.

    *)
  2. type_ : BlockerType.t option;
    (*

    The sync blocker type.

    *)
  3. status : BlockerStatus.t option;
    (*

    The status for a specific sync blocker.

    *)
  4. createdReason : CreatedReason.t option;
    (*

    The provided reason for a specific sync blocker.

    *)
  5. createdAt : Timestamp.t option;
    (*

    The creation time for a specific sync blocker.

    *)
  6. contexts : SyncBlockerContextList.t option;
    (*

    The contexts for a specific sync blocker.

    *)
  7. resolvedReason : ResolvedReason.t option;
    (*

    The resolved reason for a specific sync blocker.

    *)
  8. resolvedAt : Timestamp.t option;
    (*

    The time that a specific sync blocker was resolved.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?status:??? -> ?createdReason:??? -> ?createdAt:??? -> ?contexts:??? -> ?resolvedReason:??? -> ?resolvedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of SyncBlockerContextKey.t ]) list ] list | `String of Id.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