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\Storagetransfer;
19
20class TransferOperation extends \Google\Collection
21{
22  protected $collection_key = 'errorBreakdowns';
23  protected $countersType = TransferCounters::class;
24  protected $countersDataType = '';
25  /**
26   * @var string
27   */
28  public $endTime;
29  protected $errorBreakdownsType = ErrorSummary::class;
30  protected $errorBreakdownsDataType = 'array';
31  /**
32   * @var string
33   */
34  public $name;
35  protected $notificationConfigType = NotificationConfig::class;
36  protected $notificationConfigDataType = '';
37  /**
38   * @var string
39   */
40  public $projectId;
41  /**
42   * @var string
43   */
44  public $startTime;
45  /**
46   * @var string
47   */
48  public $status;
49  /**
50   * @var string
51   */
52  public $transferJobName;
53  protected $transferSpecType = TransferSpec::class;
54  protected $transferSpecDataType = '';
55
56  /**
57   * @param TransferCounters
58   */
59  public function setCounters(TransferCounters $counters)
60  {
61    $this->counters = $counters;
62  }
63  /**
64   * @return TransferCounters
65   */
66  public function getCounters()
67  {
68    return $this->counters;
69  }
70  /**
71   * @param string
72   */
73  public function setEndTime($endTime)
74  {
75    $this->endTime = $endTime;
76  }
77  /**
78   * @return string
79   */
80  public function getEndTime()
81  {
82    return $this->endTime;
83  }
84  /**
85   * @param ErrorSummary[]
86   */
87  public function setErrorBreakdowns($errorBreakdowns)
88  {
89    $this->errorBreakdowns = $errorBreakdowns;
90  }
91  /**
92   * @return ErrorSummary[]
93   */
94  public function getErrorBreakdowns()
95  {
96    return $this->errorBreakdowns;
97  }
98  /**
99   * @param string
100   */
101  public function setName($name)
102  {
103    $this->name = $name;
104  }
105  /**
106   * @return string
107   */
108  public function getName()
109  {
110    return $this->name;
111  }
112  /**
113   * @param NotificationConfig
114   */
115  public function setNotificationConfig(NotificationConfig $notificationConfig)
116  {
117    $this->notificationConfig = $notificationConfig;
118  }
119  /**
120   * @return NotificationConfig
121   */
122  public function getNotificationConfig()
123  {
124    return $this->notificationConfig;
125  }
126  /**
127   * @param string
128   */
129  public function setProjectId($projectId)
130  {
131    $this->projectId = $projectId;
132  }
133  /**
134   * @return string
135   */
136  public function getProjectId()
137  {
138    return $this->projectId;
139  }
140  /**
141   * @param string
142   */
143  public function setStartTime($startTime)
144  {
145    $this->startTime = $startTime;
146  }
147  /**
148   * @return string
149   */
150  public function getStartTime()
151  {
152    return $this->startTime;
153  }
154  /**
155   * @param string
156   */
157  public function setStatus($status)
158  {
159    $this->status = $status;
160  }
161  /**
162   * @return string
163   */
164  public function getStatus()
165  {
166    return $this->status;
167  }
168  /**
169   * @param string
170   */
171  public function setTransferJobName($transferJobName)
172  {
173    $this->transferJobName = $transferJobName;
174  }
175  /**
176   * @return string
177   */
178  public function getTransferJobName()
179  {
180    return $this->transferJobName;
181  }
182  /**
183   * @param TransferSpec
184   */
185  public function setTransferSpec(TransferSpec $transferSpec)
186  {
187    $this->transferSpec = $transferSpec;
188  }
189  /**
190   * @return TransferSpec
191   */
192  public function getTransferSpec()
193  {
194    return $this->transferSpec;
195  }
196}
197
198// Adding a class alias for backwards compatibility with the previous class name.
199class_alias(TransferOperation::class, 'Google_Service_Storagetransfer_TransferOperation');
200