CreateAuthKeyResponseBody.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Cloudauth\V20190307\Models;
  4. use AlibabaCloud\Tea\Model;
  5. class CreateAuthKeyResponseBody extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $authKey;
  11. /**
  12. * @var string
  13. */
  14. public $requestId;
  15. protected $_name = [
  16. 'authKey' => 'AuthKey',
  17. 'requestId' => 'RequestId',
  18. ];
  19. public function validate()
  20. {
  21. }
  22. public function toMap()
  23. {
  24. $res = [];
  25. if (null !== $this->authKey) {
  26. $res['AuthKey'] = $this->authKey;
  27. }
  28. if (null !== $this->requestId) {
  29. $res['RequestId'] = $this->requestId;
  30. }
  31. return $res;
  32. }
  33. /**
  34. * @param array $map
  35. *
  36. * @return CreateAuthKeyResponseBody
  37. */
  38. public static function fromMap($map = [])
  39. {
  40. $model = new self();
  41. if (isset($map['AuthKey'])) {
  42. $model->authKey = $map['AuthKey'];
  43. }
  44. if (isset($map['RequestId'])) {
  45. $model->requestId = $map['RequestId'];
  46. }
  47. return $model;
  48. }
  49. }