Values.SpeakerSourceContains all the information about a speaker.
type nonrec t = {createdAt : Timestamp.t option;A timestamp of when the speaker was created.
*)customerSpeakerId : CustomerSpeakerId.t option;The client-provided identifier for the speaker.
*)domainId : DomainId.t option;The identifier of the domain that contains the speaker.
*)generatedSpeakerId : GeneratedSpeakerId.t option;The service-generated identifier for the speaker.
*)lastAccessedAt : Timestamp.t option;The timestamp of when the speaker was last accessed for enrollment, re-enrollment or a successful authentication. This timestamp is accurate to one hour.
*)status : SpeakerStatus.t option;The current status of the speaker.
*)updatedAt : Timestamp.t option;A timestamp of the speaker's last update.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of CustomerSpeakerId.t
| `Timestamp of Timestamp.t ])
list ]