Module Values.SyncBlockerSource

Detailed data of the sync blocker.

Sourcetype nonrec t = {
  1. contexts : SyncBlockerContexts.t option;
    (*

    The contexts for the sync blocker.

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

    The time when the sync blocker was created.

    *)
  3. createdReason : String_.t option;
    (*

    The reason why the sync blocker was created.

    *)
  4. id : String_.t option;
    (*

    The ID of the sync blocker.

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

    The time the sync blocker was resolved.

    *)
  6. resolvedReason : String_.t option;
    (*

    The reason the sync blocker was resolved.

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

    The status of the sync blocker.

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

    The type of the sync blocker.

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