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

com.manywho.sdk.client.entities.Outcome Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.client.entities;

import com.manywho.sdk.entities.run.elements.map.OutcomeResponse;

public class Outcome {
    private String id;
    private String name;
    private String label;

    public Outcome(String id, String name, String label) {
        this.id = id;
        this.name = name;
        this.label = label;
    }

    public Outcome(OutcomeResponse outcomeResponse) {
        this(outcomeResponse.getId(), outcomeResponse.getDeveloperName(), outcomeResponse.getLabel());
    }

    public Outcome() {
    }

    public String getId() {
        return id;
    }

    public String getName() {
        return name;
    }

    public String getLabel() {
        return label;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy