| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved
- */
- /**
- * The QueriedLog is a log of the Aliyun_Log_Models_GetLogsResponse which obtained from the log.
- *
- * @author log service dev
- */
- class Aliyun_Log_Models_QueriedLog {
- /**
- * @var integer log timestamp
- */
- private $time;
- /**
- * @var string log source
- */
- private $source;
- /**
- * @var array log contents, content many key/value pair
- */
- private $contents;
-
-
- /**
- * Aliyun_Log_Models_QueriedLog constructor
- *
- * @param integer $time
- * log time stamp
- * @param string $source
- * log source
- * @param array $contents
- * log contents, content many key/value pair
- */
- public function __construct($time, $source, $contents) {
- $this->time = $time;
- $this->source = $source;
- $this->contents = $contents; // deep copy
- }
-
- /**
- * Get log source
- *
- * @return string log source
- */
- public function getSource() {
- return $this->source;
- }
-
- /**
- * Get log time
- *
- * @return integer log time
- */
- public function getTime() {
- return $this->time;
- }
-
- /**
- * Get log contents, content many key/value pair.
- *
- * @return array log contents
- */
- public function getContents() {
- return $this->contents;
- }
- }
|