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

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


/**
 * StopTransactionRequest
 * 

* * */ @Generated("org.jsonschema2pojo") public class Stoptransaction { @Expose private Integer transactionId; @Expose private String idTag; @Expose private Date timestamp; @Expose private Integer meterStop; @Expose private List transactionData = new ArrayList(); public Integer getTransactionId() { return transactionId; } public void setTransactionId(Integer transactionId) { this.transactionId = transactionId; } 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 getMeterStop() { return meterStop; } public void setMeterStop(Integer meterStop) { this.meterStop = meterStop; } public List getTransactionData() { return transactionData; } public void setTransactionData(List transactionData) { this.transactionData = transactionData; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy