mirror of
https://github.com/taigrr/elevenlabs.git
synced 2026-04-02 03:08:57 -07:00
19 lines
769 B
Go
19 lines
769 B
Go
/*
|
|
* ElevenLabs API Documentation
|
|
*
|
|
* This is the documentation for the ElevenLabs API. You can use this API to use our service programmatically, this is done by using your xi-api-key. <br/> You can view your xi-api-key using the 'Profile' tab on https://beta.elevenlabs.io. Our API is experimental so all endpoints are subject to change.
|
|
*
|
|
* API version: 1.0
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
package swagger
|
|
|
|
type VerificationAttemptResponseModel struct {
|
|
Text string `json:"text"`
|
|
DateUnix int32 `json:"date_unix"`
|
|
Accepted bool `json:"accepted"`
|
|
Similarity float64 `json:"similarity"`
|
|
LevenshteinDistance float64 `json:"levenshtein_distance"`
|
|
Recording *RecordingResponseModel `json:"recording"`
|
|
}
|