com.languageweaver.sdk.translate.responses.edge.EdgeDictionaryResponse Maven / Gradle / Ivy
package com.languageweaver.sdk.translate.responses.edge;
public class EdgeDictionaryResponse {
private String dictionaryId;
private String sourceLanguageId;
private String targetLanguageId;
public String getDictionaryId() {
return dictionaryId;
}
public EdgeDictionaryResponse setDictionaryId(String dictionaryId) {
this.dictionaryId = dictionaryId;
return this;
}
public String getSourceLanguageId() {
return sourceLanguageId;
}
public EdgeDictionaryResponse setSourceLanguageId(String sourceLanguageId) {
this.sourceLanguageId = sourceLanguageId;
return this;
}
public String getTargetLanguageId() {
return targetLanguageId;
}
public EdgeDictionaryResponse setTargetLanguageId(String targetLanguageId) {
this.targetLanguageId = targetLanguageId;
return this;
}
}