CreateACLResponse.php 752 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Copyright (C) Alibaba Cloud Computing
  4. * All rights reserved
  5. */
  6. require_once realpath(dirname(__FILE__) . '/Response.php');
  7. /**
  8. * The response of the GetLog API from log service.
  9. *
  10. * @author log service dev
  11. */
  12. class Aliyun_Log_Models_CreateACLResponse extends Aliyun_Log_Models_Response {
  13. private $aclId;
  14. /**
  15. * Aliyun_Log_Models_Response constructor
  16. *
  17. * @param array $resp
  18. * GetLogs HTTP response body
  19. * @param array $header
  20. * GetLogs HTTP response header
  21. */
  22. public function __construct($resp, $header) {
  23. parent::__construct ( $header );
  24. $this->aclId = $resp['aclId'];
  25. }
  26. public function getAclId(){
  27. return $this->aclId;
  28. }
  29. }