Module Values_1.OpsItemEventSummarySource

Summary information about an OpsItem event or that associated an OpsItem with a related item.

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

    The ID of the OpsItem.

    *)
  2. eventId : Values_0.String_.t option;
    (*

    The ID of the OpsItem event.

    *)
  3. source : Values_0.String_.t option;
    (*

    The source of the OpsItem event.

    *)
  4. detailType : Values_0.String_.t option;
    (*

    The type of information provided as a detail.

    *)
  5. detail : Values_0.String_.t option;
    (*

    Specific information about the OpsItem event.

    *)
  6. createdBy : OpsItemIdentity.t option;
    (*

    Information about the user or resource that created the OpsItem event.

    *)
  7. createdTime : Values_0.DateTime.t option;
    (*

    The date and time the OpsItem event was created.

    *)
}
Sourceval make : ?opsItemId:??? -> ?eventId:??? -> ?source:??? -> ?detailType:??? -> ?detail:??? -> ?createdBy:??? -> ?createdTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.t | `Structure of (string * [> `String of Values_0.String_.t ]) list | `Timestamp of Values_0.DateTime.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