Module Values.SlaConfigurationSource

Represents an SLA configuration.

Sourcetype nonrec t = {
  1. name : SlaName.t option;
    (*

    Name of an SLA.

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

    Type of SLA.

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

    Status of an SLA.

    *)
  4. fieldId : FieldId.t option;
    (*

    Unique identifier of a field.

    *)
  5. targetFieldValues : SlaFieldValueUnionList.t option;
    (*

    Represents a list of target field values for the fieldId specified in SlaConfiguration.

    *)
  6. targetTime : SlaTargetTime.t option;
    (*

    Target time by which an SLA should be completed.

    *)
  7. completionTime : SlaCompletionTime.t option;
    (*

    Time at which an SLA was completed.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?status:??? -> ?fieldId:??? -> ?targetFieldValues:??? -> ?targetTime:??? -> ?completionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'a list ]) list ] list | `String of SlaName.t | `Timestamp of SlaTargetTime.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