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

mn.foreman.api.model.Commands Maven / Gradle / Ivy

There is a newer version: 1.78.0
Show newest version
package mn.foreman.api.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/** The commands to run. */
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Commands {

    /** The commands to run. */
    @JsonProperty("commands")
    public List commands;

    /** How long to wait before polling for commands again. */
    @JsonProperty("delay")
    public int delay;

    /** How long to wait before polling for commands again. */
    @JsonProperty("delaySeconds")
    public int delaySeconds;

    /** How long to wait before polling for commands again (units). */
    @JsonProperty("delayUnits")
    public String delayUnits;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy