com.capitalone.dashboard.request.GitRequestRequest Maven / Gradle / Ivy
package com.capitalone.dashboard.request;
import org.bson.types.ObjectId;
import javax.validation.constraints.NotNull;
public class GitRequestRequest extends BaseRequest {
@NotNull
private ObjectId componentId;
private Integer numberOfDays;
public ObjectId getComponentId() {
return componentId;
}
public void setComponentId(ObjectId componentId) {
this.componentId = componentId;
}
public Integer getNumberOfDays() {
return numberOfDays;
}
public void setNumberOfDays(Integer numberOfDays) {
this.numberOfDays = numberOfDays;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy