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

com.languageweaver.sdk.translate.result.cloud.CloudLanguagePairsResult Maven / Gradle / Ivy

package com.languageweaver.sdk.translate.result.cloud;

import com.languageweaver.sdk.translate.responses.cloud.CloudLanguagePair;

import java.util.List;

public class CloudLanguagePairsResult {

    private Integer accountId;
    private List languagePairs;

    public Integer getAccountId() {
        return accountId;
    }

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

    public List getLanguagePairs() {
        return languagePairs;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy