com.cx.restclient.sast.dto.LastScanResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-client-common Show documentation
Show all versions of cx-client-common Show documentation
Web client for interaction with Checkmarx SAST, SCA and OSA products
package com.cx.restclient.sast.dto;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Created by Galn on 4/11/2018.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class LastScanResponse {
private long id;
private CxNameObj status;
private DateAndTime dateAndTime;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public CxNameObj getStatus() {
return status;
}
public void setStatus(CxNameObj status) {
this.status = status;
}
public DateAndTime getDateAndTime() {
return dateAndTime;
}
public void setDateAndTime(DateAndTime dateAndTime) {
this.dateAndTime = dateAndTime;
}
}