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.
29 lines
674 B
PHP
29 lines
674 B
PHP
<?php
|
|
/**
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved
|
|
*/
|
|
|
|
require_once realpath(dirname(__FILE__) . '/Response.php');
|
|
|
|
/**
|
|
* The response of the UpdateLogstore API from log service.
|
|
*
|
|
* @author log service dev
|
|
*/
|
|
class Aliyun_Log_Models_UpdateLogstoreResponse extends Aliyun_Log_Models_Response {
|
|
|
|
/**
|
|
* Aliyun_Log_Models_UpdateLogstoreResponse constructor
|
|
*
|
|
* @param array $resp
|
|
* UpdateLogstore HTTP response body
|
|
* @param array $header
|
|
* UpdateLogstore HTTP response header
|
|
*/
|
|
public function __construct($resp, $header) {
|
|
parent::__construct ( $header );
|
|
}
|
|
|
|
}
|