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.
81 lines
1.6 KiB
PHTML
81 lines
1.6 KiB
PHTML
5 years ago
|
<?php
|
||
|
/**
|
||
|
* Copyright (C) Alibaba Cloud Computing
|
||
|
* All rights reserved
|
||
|
*/
|
||
|
|
||
|
require_once realpath(dirname(__FILE__) . '/Response.php');
|
||
|
|
||
|
|
||
|
class Aliyun_Log_Models_GetShipperConfigResponse extends Aliyun_Log_Models_Response {
|
||
|
private $shipperName;
|
||
|
|
||
|
private $targetType;
|
||
|
|
||
|
private $targetConfigration;
|
||
|
|
||
|
/**
|
||
|
* @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;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Aliyun_Log_Models_GetShipperConfigResponse constructor
|
||
|
*
|
||
|
* @param array $resp
|
||
|
* GetLogs HTTP response body
|
||
|
* @param array $header
|
||
|
* GetLogs HTTP response header
|
||
|
*/
|
||
|
public function __construct($resp, $header) {
|
||
|
parent::__construct ( $header );
|
||
|
$this->shipperName = $resp['shipperName'];
|
||
|
$this->targetConfigration = $resp['targetConfiguration'];
|
||
|
$this->targetType = $resp['targetType'];
|
||
|
}
|
||
|
}
|