com.capitalone.dashboard.request.GitRequestCreateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.request;
import com.capitalone.dashboard.model.SCM;
public class GitRequestCreateRequest extends SCM {
private String hygieiaId;
private long timestamp;
private String clientReference;
public String getClientReference() { return clientReference; }
public void setClientReference(String clientReference) { this.clientReference = clientReference; }
public String getHygieiaId() {
return hygieiaId;
}
public void setHygieiaId(String hygieiaId) {
this.hygieiaId = hygieiaId;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy