Aliyun/Log/Models/Response/GetShipperConfigResponse.php (37 lines of code) (raw):

<?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']; } }