
com.capitalone.dashboard.request.CloudInstanceListRefreshRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.request;
import javax.validation.constraints.NotNull;
import java.util.Date;
import java.util.List;
public class CloudInstanceListRefreshRequest {
@NotNull
private String accountNumber;
@NotNull
private List instanceIds;
private Date refreshDate;
public String getAccountNumber() {
return accountNumber;
}
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
public List getInstanceIds() {
return instanceIds;
}
public void setInstanceIds(List instanceIds) {
this.instanceIds = instanceIds;
}
public Date getRefreshDate() {
return refreshDate;
}
public void setRefreshDate(Date refreshDate) {
this.refreshDate = refreshDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy