io.atlasmap.v2.AddSeconds Maven / Gradle / Ivy
package io.atlasmap.v2;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
public class AddSeconds extends Action implements Serializable {
private static final long serialVersionUID = 1L;
protected Integer seconds;
/**
* Gets the value of the seconds property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSeconds() {
return seconds;
}
/**
* Sets the value of the seconds property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
@JsonPropertyDescription("The number of seconds to add")
@AtlasActionProperty(title = "Seconds", type = FieldType.STRING)
public void setSeconds(Integer value) {
this.seconds = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy