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.
94 lines
1.6 KiB
PHTML
94 lines
1.6 KiB
PHTML
5 years ago
|
<?php
|
||
|
/**
|
||
|
* Copyright (C) Alibaba Cloud Computing
|
||
|
* All rights reserved
|
||
|
*/
|
||
|
|
||
|
require_once realpath(dirname(__FILE__) . '/Request.php');
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @author log service dev
|
||
|
*/
|
||
|
class Aliyun_Log_Models_CreateShipperRequest extends Aliyun_Log_Models_Request {
|
||
|
private $shipperName;
|
||
|
|
||
|
private $targetType;
|
||
|
|
||
|
private $targetConfigration;
|
||
|
|
||
|
private $logStore;
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getLogStore()
|
||
|
{
|
||
|
return $this->logStore;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param mixed $logStore
|
||
|
*/
|
||
|
public function setLogStore($logStore)
|
||
|
{
|
||
|
$this->logStore = $logStore;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Aliyun_Log_Models_CreateShipperRequest Constructor
|
||
|
*
|
||
|
*/
|
||
|
public function __construct($project) {
|
||
|
parent::__construct ( $project );
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getShipperName()
|
||
|
{
|
||
|
return $this->shipperName;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param mixed $shipperName
|
||
|
*/
|
||
|
public function setShipperName($shipperName)
|
||
|
{
|
||
|
$this->shipperName = $shipperName;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getTargetType()
|
||
|
{
|
||
|
return $this->targetType;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param mixed $targetType
|
||
|
*/
|
||
|
public function setTargetType($targetType)
|
||
|
{
|
||
|
$this->targetType = $targetType;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getTargetConfigration()
|
||
|
{
|
||
|
return $this->targetConfigration;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param mixed $targetConfigration
|
||
|
*/
|
||
|
public function setTargetConfigration($targetConfigration)
|
||
|
{
|
||
|
$this->targetConfigration = $targetConfigration;
|
||
|
}
|
||
|
}
|