All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.afkl.generic.mashery.model.MasheryScheduledMaintenanceEvent Maven / Gradle / Ivy

The newest version!
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy