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 Station} class is the representing java model for the station specific json result of the tankerkoenig.de
20 * @author Dennis Dollinger - Initial contribution
22 public class Station {
29 private String diesel;
32 private String street;
34 private String postCode;
37 public String getId() {
41 public void setId(String id) {
45 public String getName() {
49 public void setName(String name) {
53 public String getE5() {
57 public void setE5(String e5) {
61 public String getE10() {
65 public void setE10(String e10) {
69 public String getDiesel() {
73 public void setDiesel(String diesel) {
77 public String getBrand() {
81 public void setBrand(String brand) {
85 public String getStreet() {
89 public void setStreet(String street) {
93 public String getPlace() {
97 public void setPlace(String place) {
101 public String getPostCode() {
105 public void setPostCode(String postCode) {
106 this.postCode = postCode;
109 public Boolean isOpen() {
113 public void setOpen(Boolean isOpen) {