]> git.basschouten.com Git - openhab-addons.git/blob
592427ce820c03eea65a5d67baa0aaeaa6e2bc46
[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 java.util.List;
16
17 /**
18  * The {@link Features} class models an accounts features.
19  *
20  * @author Dan Cunningham - Initial contribution
21  */
22 public class Features {
23
24     public List<PlanArray> planArray = null;
25
26     public Object id;
27
28     public String planType2;
29
30     public String planType2Key;
31
32     public Object sku;
33
34     public String discount;
35
36     public String cost;
37
38     public String costUs;
39
40     public String costAu;
41
42     public String costEu;
43
44     public String costCa;
45
46     public String costUk;
47
48     public String active;
49
50     public String controllerQty;
51
52     public String rainfall;
53
54     public String smsQty;
55
56     public String scheduledReports;
57
58     public String emailAlerts;
59
60     public String defineSensor;
61
62     public String addUser;
63
64     public String contractor;
65
66     public Object description;
67
68     public String sensorPack;
69
70     public String filelimit;
71
72     public String filetypeall;
73
74     public String planType;
75
76     public String pushNotification;
77
78     public String weatherQty;
79
80     public String weatherFreeQty;
81
82     public String reportingDays;
83
84     public String weatherHourlyUpdates;
85
86     public String freeEnthusiastPlans;
87
88     public String visible;
89
90     public Object contractorPurchasable;
91
92     public Integer boc;
93
94     public Object expiry;
95
96     public Object start;
97
98     public String customerplanId;
99
100     public Integer smsUsed;
101 }