DescribeSdkUrlRequest.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 DescribeSdkUrlRequest extends Model
  6. {
  7. /**
  8. * @var int
  9. */
  10. public $id;
  11. /**
  12. * @var bool
  13. */
  14. public $debug;
  15. protected $_name = [
  16. 'id' => 'Id',
  17. 'debug' => 'Debug',
  18. ];
  19. public function validate()
  20. {
  21. Model::validateRequired('id', $this->id, true);
  22. }
  23. public function toMap()
  24. {
  25. $res = [];
  26. if (null !== $this->id) {
  27. $res['Id'] = $this->id;
  28. }
  29. if (null !== $this->debug) {
  30. $res['Debug'] = $this->debug;
  31. }
  32. return $res;
  33. }
  34. /**
  35. * @param array $map
  36. *
  37. * @return DescribeSdkUrlRequest
  38. */
  39. public static function fromMap($map = [])
  40. {
  41. $model = new self();
  42. if (isset($map['Id'])) {
  43. $model->id = $map['Id'];
  44. }
  45. if (isset($map['Debug'])) {
  46. $model->debug = $map['Debug'];
  47. }
  48. return $model;
  49. }
  50. }