SpeakerPrompt
public struct SpeakerPrompt : Codable, Equatable
A prompt that a speaker has defined for a custom model.
-
The user-specified text of the prompt.
Declaration
Swift
public var prompt: String
-
The user-specified identifier (name) of the prompt.
Declaration
Swift
public var promptID: String
-
The status of the prompt:
processing
: The service received the request to add the prompt and is analyzing the validity of the prompt.available
: The service successfully validated the prompt, which is now ready for use in a speech synthesis request.failed
: The service’s validation of the prompt failed. The status of the prompt includes anerror
field that describes the reason for the failure.
Declaration
Swift
public var status: String
-
If the status of the prompt is
failed
, an error message that describes the reason for the failure. The field is omitted if no error occurred.Declaration
Swift
public var error: String?