Module Values_2.RealTimeContactAnalysisSegmentEventSource

Segment type describing a contact event.

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

    The identifier of the contact event.

    *)
  2. participantId : Values_0.ParticipantId.t option;
    (*

    The identifier of the participant.

    *)
  3. participantRole : Values_0.ParticipantRole.t option;
    (*

    The role of the participant. For example, is it a customer, agent, or system.

    *)
  4. displayName : Values_0.DisplayName.t option;
    (*

    The display name of the participant. Can be redacted.

    *)
  5. eventType : RealTimeContactAnalysisEventType.t option;
    (*

    Type of the event. For example, application/vnd.amazonaws.connect.event.participant.left.

    *)
  6. time : RealTimeContactAnalysisTimeData.t option;
    (*

    Field describing the time of the event. It can have different representations of time.

    *)
}
Sourceval make : ?id:??? -> ?participantId:??? -> ?participantRole:??? -> ?displayName:??? -> ?eventType:??? -> ?time:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RealTimeContactAnalysisId256.t | `Structure of (string * [> `Timestamp of RealTimeContactAnalysisTimeInstant.t ]) list ]) 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