io.motown.ocpp.websocketjson.schema.generated.v15.Datatransfer 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 javax.annotation.Generated;
import com.google.gson.annotations.Expose;
/**
* DataTransferRequest
*
*
*
*/
@Generated("org.jsonschema2pojo")
public class Datatransfer {
@Expose
private String vendorId;
@Expose
private String messageId;
@Expose
private String data;
public String getVendorId() {
return vendorId;
}
public void setVendorId(String vendorId) {
this.vendorId = vendorId;
}
public String getMessageId() {
return messageId;
}
public void setMessageId(String messageId) {
this.messageId = messageId;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy