DeleteACLResponse.php 635 B

123456789101112131415161718192021222324252627282930
  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_DeleteACLResponse extends Aliyun_Log_Models_Response {
  13. /**
  14. * Aliyun_Log_Models_DeleteACLResponse constructor
  15. *
  16. * @param array $resp
  17. * GetLogs HTTP response body
  18. * @param array $header
  19. * GetLogs HTTP response header
  20. */
  21. public function __construct($header) {
  22. parent::__construct ( $header );
  23. }
  24. }