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.kostalinverter.internal.thirdgeneration;
16 * The {@link ThirdGenerationChannelMappingToWebApi}} is used to map the channel name to the web API commands
18 * @author René Stakemeier - Initial contribution
21 class ThirdGenerationChannelMappingToWebApi {
26 ThirdGenerationChannelDatatypes dataType;
29 * Constructor of {@link ThirdGenerationChannelMappingToWebApi}
31 * @param channelUID The channel UUID
32 * @param moduleId module id (as defined by the web api)
33 * @param processdataId process data id (as defined by the web api)
34 * @param dataType data type of this channel
36 ThirdGenerationChannelMappingToWebApi(String channelUID, String moduleId, String processdataId,
37 ThirdGenerationChannelDatatypes dataType) {
38 this.channelUID = channelUID;
39 this.moduleId = moduleId;
40 this.processdataId = processdataId;
41 this.dataType = dataType;