Interface VoicesCreateResponse

The newly created voice details.

interface VoicesCreateResponse {
    avatarUrl?: null | string;
    displayName: string;
    gender: undefined | Gender;
    id: string;
    models: VoiceModel[];
    type: "shared" | "personal";
}

Hierarchy

  • VoiceBaseProps
    • VoicesCreateResponse

Properties

avatarUrl?: null | string

URL for the voice avatar image.

displayName: string

The display name of the voice.

gender: undefined | Gender

The gender marker for the voice.

id: string

The unique identifier of the voice.

models: VoiceModel[]

The list of models that support this voice.

type: "shared" | "personal"

The type of the voice.