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

com.reveldigital.api.CommandSet Maven / Gradle / Ivy

package com.reveldigital.api;

import com.google.gson.annotations.SerializedName;

import java.io.Serializable;
import java.util.List;

/**
 * Created by Mike on 11/9/2016.
 */
public class CommandSet implements Serializable {

    private String device_id;
    private List commands;

    public String getDeviceId() {
        return device_id;
    }

    public CommandSet setDeviceId(String deviceId) {
        this.device_id = deviceId;
        return this;
    }

    public List getCommands() {
        return commands;
    }

    public CommandSet setCommands(List commands) {
        this.commands = commands;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy