io.motown.ocpp.websocketjson.schema.generated.v15.GetconfigurationResponse 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.List;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
/**
* GetConfigurationResponse
*
*
*
*/
@Generated("org.jsonschema2pojo")
public class GetconfigurationResponse {
@Expose
private List configurationKey = new ArrayList();
@Expose
private List unknownKey = new ArrayList();
public List getConfigurationKey() {
return configurationKey;
}
public void setConfigurationKey(List configurationKey) {
this.configurationKey = configurationKey;
}
public List getUnknownKey() {
return unknownKey;
}
public void setUnknownKey(List unknownKey) {
this.unknownKey = unknownKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy