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

com.testvagrant.monitor.responses.DevicesResponse Maven / Gradle / Ivy

The newest version!
package com.testvagrant.monitor.responses;

import com.testvagrant.monitor.requests.Device;
import com.testvagrant.monitor.requests.Link;

import java.util.List;

public class DevicesResponse {

    private List links;
    private List content;

    public List getLinks() {
        return links;
    }

    public void setLinks(List links) {
        this.links = links;
    }

    public List getContent() {
        return content;
    }

    public void setContent(List content) {
        this.content = content;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy