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

io.motown.ocpp.websocketjson.schema.generated.v15.Reservenow 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;


/**
 * ReserveNowRequest
 * 

* * */ @Generated("org.jsonschema2pojo") public class Reservenow { @Expose private Integer connectorId; @Expose private Date expiryDate; @Expose private String idTag; @Expose private String parentIdTag; @Expose private Integer reservationId; public Integer getConnectorId() { return connectorId; } public void setConnectorId(Integer connectorId) { this.connectorId = connectorId; } public Date getExpiryDate() { return expiryDate; } public void setExpiryDate(Date expiryDate) { this.expiryDate = expiryDate; } public String getIdTag() { return idTag; } public void setIdTag(String idTag) { this.idTag = idTag; } public String getParentIdTag() { return parentIdTag; } public void setParentIdTag(String parentIdTag) { this.parentIdTag = parentIdTag; } public Integer getReservationId() { return reservationId; } public void setReservationId(Integer reservationId) { this.reservationId = reservationId; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy