Aliyun/Log/Models/Response/GetLogsResponse.php [20:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private $count;

    /**
     * @var string logs query status(Complete or InComplete)
     */
    private $progress;

    /**
     * @var array Aliyun_Log_Models_QueriedLog array, all log data
     */
    private $logs;

    /**
     * @var rows proccesed in this request
     */
    private $processedRows;

    /**
     * @var execution latency in milliseconds
     */
    private $elapsedMilli;

    /**
     * @var used cpu sec for this request
     */
    private $cpuSec;

    /**
     * @var used cpu core number for this request
     */
    private $cpuCores;
    
    
    /**
     * Aliyun_Log_Models_GetLogsResponse constructor
     *
     * @param array $resp
     *            GetLogs HTTP response body
     * @param array $header
     *            GetLogs HTTP response header
     */
    public function __construct($resp, $header) {
        parent::__construct ( $header );
        $this->count = $header['x-log-count'];
        $this->progress = $header ['x-log-progress'];
        $this->processedRows = $header['x-log-processed-rows'];
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Aliyun/Log/Models/Response/ProjectSqlResponse.php [20:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private $count;

    /**
     * @var string logs query status(Complete or InComplete)
     */
    private $progress;

    /**
     * @var array Aliyun_Log_Models_QueriedLog array, all log data
     */
    private $logs;

    /**
     * @var rows proccesed in this request
     */
    private $processedRows;

    /**
     * @var execution latency in milliseconds
     */
    private $elapsedMilli;

    /**
     * @var used cpu sec for this request
     */
    private $cpuSec;

    /**
     * @var used cpu core number for this request
     */
    private $cpuCores;
    
    
    /**
     * Aliyun_Log_Models_GetLogsResponse constructor
     *
     * @param array $resp
     *            GetLogs HTTP response body
     * @param array $header
     *            GetLogs HTTP response header
     */
    public function __construct($resp, $header) {
        parent::__construct ( $header );
        $this->count = $header['x-log-count'];
        $this->progress = $header ['x-log-progress'];
        $this->processedRows = $header['x-log-processed-rows'];
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



