| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved
- */
- require_once realpath(dirname(__FILE__) . '/Request.php');
- /**
- *
- *
- * @author log service dev
- */
- class Aliyun_Log_Models_UpdateConfigRequest extends Aliyun_Log_Models_Request {
- private $config;
- /**
- * Aliyun_Log_Models_UpdateConfigRequest Constructor
- *
- */
- public function __construct($config) {
- $this->config = $config;
- }
- public function getConfig(){
- return $this->config;
- }
- public function setConfig($config){
- $this->config = $config;
- }
-
- }
|