com.smartling.api.filetranslations.v2.pto.mt.MtRequest Maven / Gradle / Ivy
The newest version!
package com.smartling.api.filetranslations.v2.pto.mt;
import java.util.List;
public class MtRequest
{
private String sourceLocaleId;
private List targetLocaleIds;
public MtRequest()
{
}
public MtRequest(String sourceLocaleId, List targetLocaleIds)
{
this.sourceLocaleId = sourceLocaleId;
this.targetLocaleIds = targetLocaleIds;
}
public String getSourceLocaleId()
{
return sourceLocaleId;
}
public void setSourceLocaleId(String sourceLocaleId)
{
this.sourceLocaleId = sourceLocaleId;
}
public List getTargetLocaleIds()
{
return targetLocaleIds;
}
public void setTargetLocaleIds(List targetLocaleIds)
{
this.targetLocaleIds = targetLocaleIds;
}
@Override
public String toString()
{
return "MtRequest{" +
"sourceLocaleId='" + sourceLocaleId + '\'' +
", targetLocaleIds=" + targetLocaleIds +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy