Properties
| Name | Type | Description |
|---|---|---|
| ownerId | string | This is the owner_id of your shared voice which you want to add to your provider Account from Provider Voice Library |
| voiceId | string | This is the voice_id of the shared voice which you want to add to your provider Account from Provider Voice Library |
| name | string | This is the new name of the voice which you want to have once you have added voice to your provider Account from Provider Voice Library |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AddVoiceToProviderDTO",
"title": "AddVoiceToProviderDTO",
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "This is the owner_id of your shared voice which you want to add to your provider Account from Provider Voice Library"
},
"voiceId": {
"type": "string",
"description": "This is the voice_id of the shared voice which you want to add to your provider Account from Provider Voice Library"
},
"name": {
"type": "string",
"description": "This is the new name of the voice which you want to have once you have added voice to your provider Account from Provider Voice Library"
}
},
"required": [
"ownerId",
"voiceId",
"name"
]
}