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

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

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

public class Timestamps {

    private String queued;
    private String started;
    private String done;

    public String getQueued() {
        return queued;
    }

    public Timestamps setQueued(String queued) {
        this.queued = queued;
        return this;
    }

    public String getStarted() {
        return started;
    }

    public Timestamps setStarted(String started) {
        this.started = started;
        return this;
    }

    public String getDone() {
        return done;
    }

    public Timestamps setDone(String done) {
        this.done = done;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy