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

io.motown.ocpp.websocketjson.schema.generated.v15.Getdiagnostics Maven / Gradle / Ivy

Go to download

Open Charge Point Protocol (OCPP). Provides a JSON web socket endpoint based on OCPP 1.5.

The newest version!

package io.motown.ocpp.websocketjson.schema.generated.v15;

import java.net.URI;
import java.util.Date;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;


/**
 * GetDiagnosticsRequest
 * 

* * */ @Generated("org.jsonschema2pojo") public class Getdiagnostics { @Expose private URI location; @Expose private Date startTime; @Expose private Date stopTime; @Expose private Integer retries; @Expose private Integer retryInterval; public URI getLocation() { return location; } public void setLocation(URI location) { this.location = location; } public Date getStartTime() { return startTime; } public void setStartTime(Date startTime) { this.startTime = startTime; } public Date getStopTime() { return stopTime; } public void setStopTime(Date stopTime) { this.stopTime = stopTime; } public Integer getRetries() { return retries; } public void setRetries(Integer retries) { this.retries = retries; } public Integer getRetryInterval() { return retryInterval; } public void setRetryInterval(Integer retryInterval) { this.retryInterval = retryInterval; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy