com.ibm.watson.text_to_speech.v1.model.SpeakerCustomModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-to-speech Show documentation
Show all versions of text-to-speech Show documentation
Java client library to use the IBM Text to Speech API
/*
* (C) Copyright IBM Corp. 2021.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.ibm.watson.text_to_speech.v1.model;
import com.google.gson.annotations.SerializedName;
import com.ibm.cloud.sdk.core.service.model.GenericModel;
import java.util.List;
/** A custom models for which the speaker has defined prompts. */
public class SpeakerCustomModel extends GenericModel {
@SerializedName("customization_id")
protected String customizationId;
protected List prompts;
/**
* Gets the customizationId.
*
* The customization ID (GUID) of a custom model for which the speaker has defined one or more
* prompts.
*
* @return the customizationId
*/
public String getCustomizationId() {
return customizationId;
}
/**
* Gets the prompts.
*
*
An array of `SpeakerPrompt` objects that provides information about each prompt that the
* user has defined for the custom model.
*
* @return the prompts
*/
public List getPrompts() {
return prompts;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy