Module Values.OptOutSpeakerRequestSource

Opts out a speaker from Voice ID. A speaker can be opted out regardless of whether or not they already exist in Voice ID. If they don't yet exist, a new speaker is created in an opted out state. If they already exist, their existing status is overridden and they are opted out. Enrollment and evaluation authentication requests are rejected for opted out speakers, and opted out speakers have no voice embeddings stored in Voice ID.

Sourcetype nonrec t = {
  1. domainId : DomainId.t;
    (*

    The identifier of the domain that contains the speaker.

    *)
  2. speakerId : SpeakerId.t;
    (*

    The identifier of the speaker you want opted-out.

    *)
}
Sourceval context_ : string
Sourceval make : domainId:DomainId.t -> speakerId:SpeakerId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.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