123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- /*
- * Copyright 2014 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
- class Google_Service_CloudTasks_Task extends Google_Model
- {
- protected $appEngineHttpRequestType = 'Google_Service_CloudTasks_AppEngineHttpRequest';
- protected $appEngineHttpRequestDataType = '';
- public $createTime;
- public $name;
- protected $pullMessageType = 'Google_Service_CloudTasks_PullMessage';
- protected $pullMessageDataType = '';
- public $scheduleTime;
- protected $statusType = 'Google_Service_CloudTasks_TaskStatus';
- protected $statusDataType = '';
- public $view;
-
- /**
- * @param Google_Service_CloudTasks_AppEngineHttpRequest
- */
- public function setAppEngineHttpRequest(Google_Service_CloudTasks_AppEngineHttpRequest $appEngineHttpRequest)
- {
- $this->appEngineHttpRequest = $appEngineHttpRequest;
- }
- /**
- * @return Google_Service_CloudTasks_AppEngineHttpRequest
- */
- public function getAppEngineHttpRequest()
- {
- return $this->appEngineHttpRequest;
- }
- public function setCreateTime($createTime)
- {
- $this->createTime = $createTime;
- }
- public function getCreateTime()
- {
- return $this->createTime;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function getName()
- {
- return $this->name;
- }
- /**
- * @param Google_Service_CloudTasks_PullMessage
- */
- public function setPullMessage(Google_Service_CloudTasks_PullMessage $pullMessage)
- {
- $this->pullMessage = $pullMessage;
- }
- /**
- * @return Google_Service_CloudTasks_PullMessage
- */
- public function getPullMessage()
- {
- return $this->pullMessage;
- }
- public function setScheduleTime($scheduleTime)
- {
- $this->scheduleTime = $scheduleTime;
- }
- public function getScheduleTime()
- {
- return $this->scheduleTime;
- }
- /**
- * @param Google_Service_CloudTasks_TaskStatus
- */
- public function setStatus(Google_Service_CloudTasks_TaskStatus $status)
- {
- $this->status = $status;
- }
- /**
- * @return Google_Service_CloudTasks_TaskStatus
- */
- public function getStatus()
- {
- return $this->status;
- }
- public function setView($view)
- {
- $this->view = $view;
- }
- public function getView()
- {
- return $this->view;
- }
- }
|