All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sdl.translate.responses.LanguagePairsResult Maven / Gradle / Ivy

package com.sdl.translate.responses;

import java.util.List;

public class LanguagePairsResult {

    private Integer accountId;
    private List languagePairs;

    public Integer getAccountId() {
        return accountId;
    }

    public LanguagePairsResult setAccountId(Integer accountId) {
        this.accountId = accountId;
        return this;
    }

    public List getLanguagePairs() {
        return languagePairs;
    }

    public LanguagePairsResult setLanguagePairs(List languagePairs) {
        this.languagePairs = languagePairs;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy