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.mybmw.internal.dto.vehicle;
17 * derived from the API responses
19 * @author Martin Grassl - initial contribution
21 public class VehicleTireStates {
22 private VehicleTireState frontLeft = new VehicleTireState();
23 private VehicleTireState frontRight = new VehicleTireState();
24 private VehicleTireState rearLeft = new VehicleTireState();
25 private VehicleTireState rearRight = new VehicleTireState();
27 public VehicleTireState getFrontLeft() {
31 public void setFrontLeft(VehicleTireState frontLeft) {
32 this.frontLeft = frontLeft;
35 public VehicleTireState getFrontRight() {
39 public void setFrontRight(VehicleTireState frontRight) {
40 this.frontRight = frontRight;
43 public VehicleTireState getRearLeft() {
47 public void setRearLeft(VehicleTireState rearLeft) {
48 this.rearLeft = rearLeft;
51 public VehicleTireState getRearRight() {
55 public void setRearRight(VehicleTireState rearRight) {
56 this.rearRight = rearRight;
60 public String toString() {
61 return "VehicleTireStates [frontLeft=" + frontLeft + ", frontRight=" + frontRight + ", rearLeft=" + rearLeft
62 + ", rearRight=" + rearRight + "]";