]> git.basschouten.com Git - openhab-addons.git/blob
dc99ad4d7392d85bcf7d0147b66642a8c91c7305
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.mybmw.internal.dto.status;
14
15 import org.openhab.binding.mybmw.internal.utils.Constants;
16
17 /**
18  * The {@link CCMMessage} Data Transfer Object
19  *
20  * @author Bernd Weymann - Initial contribution
21  */
22 public class CCMMessage {
23     public String criticalness;// ": "semiCritical",
24     public int iconId;// ": 60217,
25     public String state = Constants.NO_ENTRIES;// ": "Medium",
26     public String title = Constants.NO_ENTRIES;// ": "Battery discharged: Start engine"
27     public String id;// ": "229",
28     public String longDescription = Constants.NO_ENTRIES;// ": "Charge by driving for longer periods or use external
29                                                          // charger. Functions requiring battery will be switched off.
30 }