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

io.github.zanella.nomad.v1.jobs.models.JobSummary Maven / Gradle / Ivy

The newest version!
package io.github.zanella.nomad.v1.jobs.models;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@AllArgsConstructor(suppressConstructorProperties = true)
public class JobSummary {
    @JsonProperty("ID") protected String id;

    @JsonProperty("Name") protected String name;

    @JsonProperty("Type") protected String type;

    @JsonProperty("Priority") protected Integer priority;

    @JsonProperty("Status") protected String status;

    @JsonProperty("StatusDescription") protected String statusDescription;

    @JsonProperty("CreateIndex") protected Integer createIndex;

    @JsonProperty("ModifyIndex") protected Integer modifyIndex;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy