io.motown.ocpp.websocketjson.schema.generated.v15.Value Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ocpp-websocket-json Show documentation
Show all versions of ocpp-websocket-json Show documentation
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.util.ArrayList;
import java.util.Date;
import java.util.List;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
@Generated("org.jsonschema2pojo")
public class Value {
@Expose
private Date timestamp;
@Expose
private List values = new ArrayList();
public Date getTimestamp() {
return timestamp;
}
public void setTimestamp(Date timestamp) {
this.timestamp = timestamp;
}
public List getValues() {
return values;
}
public void setValues(List values) {
this.values = values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy