You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
2.4 KiB
PHP
146 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved
|
|
*/
|
|
|
|
require_once realpath(dirname(__FILE__) . '/Request.php');
|
|
|
|
class Aliyun_Log_Models_GetShipperTasksRequest extends Aliyun_Log_Models_Request{
|
|
private $shipperName;
|
|
private $logStore;
|
|
|
|
private $startTime;
|
|
|
|
private $endTime;
|
|
/**
|
|
* @var support one of ['', 'fail', 'success', 'running'] , if the status_type = '' , return all kinds of status type
|
|
|
|
*/
|
|
private $statusType;
|
|
|
|
private $offset;
|
|
|
|
private $size;
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getStartTime()
|
|
{
|
|
return $this->startTime;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $startTime
|
|
*/
|
|
public function setStartTime($startTime)
|
|
{
|
|
$this->startTime = $startTime;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getEndTime()
|
|
{
|
|
return $this->endTime;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $endTime
|
|
*/
|
|
public function setEndTime($endTime)
|
|
{
|
|
$this->endTime = $endTime;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public function getStatusType()
|
|
{
|
|
return $this->statusType;
|
|
}
|
|
|
|
/**
|
|
* @param $statusType
|
|
*/
|
|
public function setStatusType($statusType)
|
|
{
|
|
$this->statusType = $statusType;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getOffset()
|
|
{
|
|
return $this->offset;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $offset
|
|
*/
|
|
public function setOffset($offset)
|
|
{
|
|
$this->offset = $offset;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getSize()
|
|
{
|
|
return $this->size;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $size
|
|
*/
|
|
public function setSize($size)
|
|
{
|
|
$this->size = $size;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getLogStore()
|
|
{
|
|
return $this->logStore;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $logStore
|
|
*/
|
|
public function setLogStore($logStore)
|
|
{
|
|
$this->logStore = $logStore;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getShipperName()
|
|
{
|
|
return $this->shipperName;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $shipperName
|
|
*/
|
|
public function setShipperName($shipperName)
|
|
{
|
|
$this->shipperName = $shipperName;
|
|
}
|
|
|
|
/**
|
|
* Aliyun_Log_Models_CreateShipperRequest Constructor
|
|
*
|
|
*/
|
|
public function __construct($project) {
|
|
parent::__construct ( $project );
|
|
}
|
|
} |