2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.tankerkoenig.internal.dto;
16 * The {@link LittleStation} class is the representing java model for the station specific json result of the prices
17 * request. (LittleStation because it has nearly no other information than gas prices. Stripped down version of
20 * @author Dennis Dollinger - Initial contribution
22 public class LittleStation {
26 private String diesel;
27 private String status;
31 public String getE5() {
35 public void setE5(String e5) {
39 public String getE10() {
43 public void setE10(String e10) {
47 public String getDiesel() {
51 public void setDiesel(String diesel) {
55 public String getStatus() {
59 public void setStatus(String status) {
63 public String getID() {
67 public void setID(String id) {
71 public Boolean isOpen() {
75 public void setOpen(Boolean isOpen) {