Module Values.SpeakerSummarySource

Contains a summary of information about a speaker.

Sourcetype nonrec t = {
  1. createdAt : Timestamp.t option;
    (*

    A timestamp showing the speaker's creation time.

    *)
  2. customerSpeakerId : CustomerSpeakerId.t option;
    (*

    The client-provided identifier for the speaker.

    *)
  3. domainId : DomainId.t option;
    (*

    The identifier of the domain that contains the speaker.

    *)
  4. generatedSpeakerId : GeneratedSpeakerId.t option;
    (*

    The service-generated identifier for the speaker.

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

    The timestamp when the speaker was last accessed for enrollment, re-enrollment or a successful authentication. This timestamp is accurate to one hour.

    *)
  6. status : SpeakerStatus.t option;
    (*

    The current status of the speaker.

    *)
  7. updatedAt : Timestamp.t option;
    (*

    A timestamp showing the speaker's last update.

    *)
}
Sourceval make : ?createdAt:??? -> ?customerSpeakerId:??? -> ?domainId:??? -> ?generatedSpeakerId:??? -> ?lastAccessedAt:??? -> ?status:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CustomerSpeakerId.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