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

io.motown.ocpp.websocketjson.schema.generated.v15.Starttransaction 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.util.Date;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;


/**
 * StartTransactionRequest
 * 

* * */ @Generated("org.jsonschema2pojo") public class Starttransaction { @Expose private Integer connectorId; @Expose private String idTag; @Expose private Date timestamp; @Expose private Integer meterStart; @Expose private Integer reservationId; public Integer getConnectorId() { return connectorId; } public void setConnectorId(Integer connectorId) { this.connectorId = connectorId; } public String getIdTag() { return idTag; } public void setIdTag(String idTag) { this.idTag = idTag; } public Date getTimestamp() { return timestamp; } public void setTimestamp(Date timestamp) { this.timestamp = timestamp; } public Integer getMeterStart() { return meterStart; } public void setMeterStart(Integer meterStart) { this.meterStart = meterStart; } public Integer getReservationId() { return reservationId; } public void setReservationId(Integer reservationId) { this.reservationId = reservationId; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy