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.bticinosmarther.internal.util;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
17 import com.google.gson.FieldNamingPolicy;
18 import com.google.gson.Gson;
19 import com.google.gson.GsonBuilder;
22 * The {@code ModelUtil} utility class to get the {@code Gson} instance to parse the Smarther API data with.
24 * @author Fabio Possieri - Initial contribution
27 public final class ModelUtil {
29 private static final Gson GSON = new GsonBuilder()
30 .setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES).create();
37 * Returns the {@code Gson} instance to parse the Smarther API data with.
39 * @return the {@code Gson} instance
41 public static Gson gsonInstance() {