com.afkl.generic.mashery.model.MasheryScheduledMaintenanceEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mashery-sdk Show documentation
Show all versions of mashery-sdk Show documentation
SDK built on top of Intel-Mashery's V3 API.
package com.afkl.generic.mashery.model;
import java.util.List;
import com.afkl.generic.mashery.MasheryResource;
public class MasheryScheduledMaintenanceEvent implements MasheryResource {
private static final String PATH = "/v3/rest/scheduledMaintenanceEvents";
private String name;
private String startDateTime;
private String endDateTime;
// TODO listed as 'ScheduledMaintenanceEventEndpoint' but no docs
private List endpoints;
public String getName() {
return name;
}
public String getStartDateTime() {
return startDateTime;
}
public String getEndDateTime() {
return endDateTime;
}
public List getEndpoints() {
return endpoints;
}
public String getResourcePath() {
return PATH;
}
}