
com.github.libgraviton.workerbase.model.file.Link Maven / Gradle / Ivy
package com.github.libgraviton.workerbase.model.file;
/**
* Link class.
*
* @author Dario Nuevo
* @version $Id: $Id
*/
public class Link {
public String type;
public String $ref;
/**
* Getter for the field type
.
*
* @return a {@link java.lang.String} object.
*/
public String getType() {
return type;
}
/**
* Setter for the field type
.
*
* @param type a {@link java.lang.String} object.
*/
public void setType(String type) {
this.type = type;
}
/**
* Getter for the field $ref
.
*
* @return a {@link java.lang.String} object.
*/
public String get$ref() {
return $ref;
}
/**
* Setter for the field $ref
.
*
* @param $ref a {@link java.lang.String} object.
*/
public void set$ref(String $ref) {
this.$ref = $ref;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy