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

com.github.libgraviton.gdk.gravitondyn.eventstatus.document.EventStatusEventResource Maven / Gradle / Ivy

The newest version!

package com.github.libgraviton.gdk.gravitondyn.eventstatus.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;


/**
 * EventResource
 * 
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "$ref"
})
public class EventStatusEventResource {

    /**
     * Ref to event resource
     * A $ref pointing to the resource that triggered this event. If the resource was deleted, it may not exist anymore.
     * 
     */
    @JsonProperty("$ref")
    @JsonPropertyDescription("")
    private String $ref;

    /**
     * Ref to event resource
     * A $ref pointing to the resource that triggered this event. If the resource was deleted, it may not exist anymore.
     * 
     * @return
     *     The $ref
     */
    @JsonProperty("$ref")
    public String get$ref() {
        return $ref;
    }

    /**
     * Ref to event resource
     * A $ref pointing to the resource that triggered this event. If the resource was deleted, it may not exist anymore.
     * 
     * @param $ref
     *     The $ref
     */
    @JsonProperty("$ref")
    public void set$ref(String $ref) {
        this.$ref = $ref;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy