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

com.languageweaver.sdk.translate.responses.edge.EdgeStatusTranslationResponse Maven / Gradle / Ivy

package com.languageweaver.sdk.translate.responses.edge;

public class EdgeStatusTranslationResponse {

    private String translationId;
    private Profile profile;
    private Result result;
    private Timestamps timestamps;
    private String errorMessage;
    private String state;
    private String substate;

    public String getTranslationId() {
        return translationId;
    }

    public EdgeStatusTranslationResponse setTranslationId(String translationId) {
        this.translationId = translationId;
        return this;
    }

    public Profile getProfile() {
        return profile;
    }

    public EdgeStatusTranslationResponse setProfile(Profile profile) {
        this.profile = profile;
        return this;
    }

    public Result getResult() {
        return result;
    }

    public EdgeStatusTranslationResponse setResult(Result result) {
        this.result = result;
        return this;
    }

    public Timestamps getTimestamps() {
        return timestamps;
    }

    public EdgeStatusTranslationResponse setTimestamps(Timestamps timestamps) {
        this.timestamps = timestamps;
        return this;
    }

    public String getErrorMessage() {
        return errorMessage;
    }

    public EdgeStatusTranslationResponse setErrorMessage(String errorMessage) {
        this.errorMessage = errorMessage;
        return this;
    }

    public String getState() {
        return state;
    }

    public EdgeStatusTranslationResponse setState(String state) {
        this.state = state;
        return this;
    }

    public String getSubstate() {
        return substate;
    }

    public EdgeStatusTranslationResponse setSubstate(String substate) {
        this.substate = substate;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy