]> git.basschouten.com Git - openhab-addons.git/blob
1bed83f366da15a4afc1fb16db6fdfbd9f017a24
[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.hydrawise.internal.api.local.dto;
14
15 import com.google.gson.annotations.SerializedName;
16
17 /**
18  * The {@link PlanArray} class models am account plan.
19  *
20  * @author Dan Cunningham - Initial contribution
21  */
22 public class PlanArray {
23
24     public String id;
25
26     public Object sku;
27
28     public String discount;
29
30     public String cost;
31
32     public String costUs;
33
34     public String costAu;
35
36     public String costEu;
37
38     public String costCa;
39
40     public String costUk;
41
42     public String active;
43
44     public String controllerQty;
45
46     public String rainfall;
47
48     public String smsQty;
49
50     public String scheduledReports;
51
52     public String emailAlerts;
53
54     public String defineSensor;
55
56     public String addUser;
57
58     public String contractor;
59
60     public String description;
61
62     public String sensorPack;
63
64     public String filelimit;
65
66     public String filetypeall;
67
68     @SerializedName(value = "plan_type")
69     public String planType;
70
71     public String pushNotification;
72
73     public String weatherQty;
74
75     public String weatherFreeQty;
76
77     public String reportingDays;
78
79     public String weatherHourlyUpdates;
80
81     public String freeEnthusiastPlans;
82
83     public String visible;
84
85     public String contractorPurchasable;
86
87     public String boc;
88
89     public String expiry;
90
91     public String start;
92
93     public String customerplanId;
94 }