1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_Dfareporting_ReportSchedule extends Google_Collection
19{
20  protected $collection_key = 'repeatsOnWeekDays';
21  public $active;
22  public $every;
23  public $expirationDate;
24  public $repeats;
25  public $repeatsOnWeekDays;
26  public $runsOnDayOfMonth;
27  public $startDate;
28
29  public function setActive($active)
30  {
31    $this->active = $active;
32  }
33  public function getActive()
34  {
35    return $this->active;
36  }
37  public function setEvery($every)
38  {
39    $this->every = $every;
40  }
41  public function getEvery()
42  {
43    return $this->every;
44  }
45  public function setExpirationDate($expirationDate)
46  {
47    $this->expirationDate = $expirationDate;
48  }
49  public function getExpirationDate()
50  {
51    return $this->expirationDate;
52  }
53  public function setRepeats($repeats)
54  {
55    $this->repeats = $repeats;
56  }
57  public function getRepeats()
58  {
59    return $this->repeats;
60  }
61  public function setRepeatsOnWeekDays($repeatsOnWeekDays)
62  {
63    $this->repeatsOnWeekDays = $repeatsOnWeekDays;
64  }
65  public function getRepeatsOnWeekDays()
66  {
67    return $this->repeatsOnWeekDays;
68  }
69  public function setRunsOnDayOfMonth($runsOnDayOfMonth)
70  {
71    $this->runsOnDayOfMonth = $runsOnDayOfMonth;
72  }
73  public function getRunsOnDayOfMonth()
74  {
75    return $this->runsOnDayOfMonth;
76  }
77  public function setStartDate($startDate)
78  {
79    $this->startDate = $startDate;
80  }
81  public function getStartDate()
82  {
83    return $this->startDate;
84  }
85}
86