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
18namespace Google\Service\Dns;
19
20class Change extends \Google\Collection
21{
22  protected $collection_key = 'deletions';
23  protected $additionsType = ResourceRecordSet::class;
24  protected $additionsDataType = 'array';
25  protected $deletionsType = ResourceRecordSet::class;
26  protected $deletionsDataType = 'array';
27  /**
28   * @var string
29   */
30  public $id;
31  /**
32   * @var bool
33   */
34  public $isServing;
35  /**
36   * @var string
37   */
38  public $kind;
39  /**
40   * @var string
41   */
42  public $startTime;
43  /**
44   * @var string
45   */
46  public $status;
47
48  /**
49   * @param ResourceRecordSet[]
50   */
51  public function setAdditions($additions)
52  {
53    $this->additions = $additions;
54  }
55  /**
56   * @return ResourceRecordSet[]
57   */
58  public function getAdditions()
59  {
60    return $this->additions;
61  }
62  /**
63   * @param ResourceRecordSet[]
64   */
65  public function setDeletions($deletions)
66  {
67    $this->deletions = $deletions;
68  }
69  /**
70   * @return ResourceRecordSet[]
71   */
72  public function getDeletions()
73  {
74    return $this->deletions;
75  }
76  /**
77   * @param string
78   */
79  public function setId($id)
80  {
81    $this->id = $id;
82  }
83  /**
84   * @return string
85   */
86  public function getId()
87  {
88    return $this->id;
89  }
90  /**
91   * @param bool
92   */
93  public function setIsServing($isServing)
94  {
95    $this->isServing = $isServing;
96  }
97  /**
98   * @return bool
99   */
100  public function getIsServing()
101  {
102    return $this->isServing;
103  }
104  /**
105   * @param string
106   */
107  public function setKind($kind)
108  {
109    $this->kind = $kind;
110  }
111  /**
112   * @return string
113   */
114  public function getKind()
115  {
116    return $this->kind;
117  }
118  /**
119   * @param string
120   */
121  public function setStartTime($startTime)
122  {
123    $this->startTime = $startTime;
124  }
125  /**
126   * @return string
127   */
128  public function getStartTime()
129  {
130    return $this->startTime;
131  }
132  /**
133   * @param string
134   */
135  public function setStatus($status)
136  {
137    $this->status = $status;
138  }
139  /**
140   * @return string
141   */
142  public function getStatus()
143  {
144    return $this->status;
145  }
146}
147
148// Adding a class alias for backwards compatibility with the previous class name.
149class_alias(Change::class, 'Google_Service_Dns_Change');
150