
com.github.libgraviton.gdk.gravitondyn.file.document.FileLinks Maven / Gradle / Ivy
The newest version!
package com.github.libgraviton.gdk.gravitondyn.file.document;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Links
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"type",
"$ref"
})
public class FileLinks {
/**
* Type
* Type of the link.
*
*/
@JsonProperty("type")
@JsonPropertyDescription("")
private String type;
/**
* Link
* Link to any document.
*
*/
@JsonProperty("$ref")
@JsonPropertyDescription("")
private String $ref;
/**
* Type
* Type of the link.
*
* @return
* The type
*/
@JsonProperty("type")
public String getType() {
return type;
}
/**
* Type
* Type of the link.
*
* @param type
* The type
*/
@JsonProperty("type")
public void setType(String type) {
this.type = type;
}
/**
* Link
* Link to any document.
*
* @return
* The $ref
*/
@JsonProperty("$ref")
public String get$ref() {
return $ref;
}
/**
* Link
* Link to any document.
*
* @param $ref
* The $ref
*/
@JsonProperty("$ref")
public void set$ref(String $ref) {
this.$ref = $ref;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy