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

io.github.lambdatest.models.Snapshot Maven / Gradle / Ivy

The newest version!
package io.github.lambdatest.models;

import java.util.HashMap;
import java.util.Map;

public class Snapshot {
    private Object dom;
    private String name;
    private Map options;
    private String url;

    // Getters and Setters
    public Object getDom() {
        return dom;
    }

    public void setDom(Object dom) {
        this.dom = dom;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Map getOptions() {
        return options;
    }

    public void setOptions(Map options) {
        this.options = options;
    }

    public String getURL() {
        return url;
    }

    public void setURL(String url) {
        this.url = url;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy