com.askfast.model.TTSUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of askfast-api-java Show documentation
Show all versions of askfast-api-java Show documentation
AskFast Library to use the AskFast system
package com.askfast.model;
import java.util.Map;
/**
* Bean for the TTS user that is saved in the TTSGateway
* @author shravan
*
*/
public class TTSUser {
String accountId;
String username;
String password;
TTSProvider service = null;
Map properties;
String info;
public String getAccountId() {
return accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public TTSProvider getService() {
return service;
}
public void setService(TTSProvider service) {
this.service = service;
}
public String getInfo() {
return info;
}
public void setInfo(String info) {
this.info = info;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy