]> git.basschouten.com Git - openhab-addons.git/blob
aaf843b0f31fb6ab36cb14f9cde6312a919f56cb
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2022 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.automower.internal.rest.api.automowerconnect.dto;
14
15 /**
16  * @author Marcin Czeczko - Initial contribution
17  */
18 public class CalendarTask {
19     /**
20      * Start time expressed in minutes after midnight.
21      */
22     private Integer start;
23
24     /**
25      * Duration time expressed in minutes
26      */
27     private Integer duration;
28     private Boolean monday;
29     private Boolean tuesday;
30     private Boolean wednesday;
31     private Boolean thursday;
32     private Boolean friday;
33     private Boolean saturday;
34     private Boolean sunday;
35
36     public Integer getStart() {
37         return start;
38     }
39
40     public Integer getDuration() {
41         return duration;
42     }
43
44     public Boolean getMonday() {
45         return monday;
46     }
47
48     public Boolean getTuesday() {
49         return tuesday;
50     }
51
52     public Boolean getWednesday() {
53         return wednesday;
54     }
55
56     public Boolean getThursday() {
57         return thursday;
58     }
59
60     public Boolean getFriday() {
61         return friday;
62     }
63
64     public Boolean getSaturday() {
65         return saturday;
66     }
67
68     public Boolean getSunday() {
69         return sunday;
70     }
71 }