Aliyun/Log/Models/Response/GetShipperTasksResponse.php (47 lines of code) (raw):

<?php /** * Copyright (C) Alibaba Cloud Computing * All rights reserved */ require_once realpath(dirname(__FILE__) . '/Response.php'); class Aliyun_Log_Models_GetShipperTasksResponse extends Aliyun_Log_Models_Response { private $count; private $total; private $statistics; private $tasks; /** * Aliyun_Log_Models_GetShipperTasksResponse constructor * * @param array $resp * GetLogs HTTP response body * @param array $header * GetLogs HTTP response header */ public function __construct($resp, $header) { parent::__construct ( $header ); $this->total = $resp['total']; $this->count = $resp['count']; $this->statistics = $resp['statistics']; $this->tasks = $resp['tasks']; } /** * @return mixed */ public function getCount() { return $this->count; } /** * @param mixed $count */ public function setCount($count) { $this->count = $count; } /** * @return mixed */ public function getTotal() { return $this->total; } /** * @param mixed $total */ public function setTotal($total) { $this->total = $total; } /** * @return mixed */ public function getStatistics() { return $this->statistics; } /** * @param mixed $statistics */ public function setStatistics($statistics) { $this->statistics = $statistics; } /** * @return mixed */ public function getTasks() { return $this->tasks; } /** * @param mixed $tasks */ public function setTasks($tasks) { $this->tasks = $tasks; } }