CreateVerifySettingRequest.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 CreateVerifySettingRequest extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $bizName;
  11. /**
  12. * @var string
  13. */
  14. public $bizType;
  15. /**
  16. * @var bool
  17. */
  18. public $guideStep;
  19. /**
  20. * @var bool
  21. */
  22. public $privacyStep;
  23. /**
  24. * @var bool
  25. */
  26. public $resultStep;
  27. /**
  28. * @var string
  29. */
  30. public $solution;
  31. protected $_name = [
  32. 'bizName' => 'BizName',
  33. 'bizType' => 'BizType',
  34. 'guideStep' => 'GuideStep',
  35. 'privacyStep' => 'PrivacyStep',
  36. 'resultStep' => 'ResultStep',
  37. 'solution' => 'Solution',
  38. ];
  39. public function validate()
  40. {
  41. }
  42. public function toMap()
  43. {
  44. $res = [];
  45. if (null !== $this->bizName) {
  46. $res['BizName'] = $this->bizName;
  47. }
  48. if (null !== $this->bizType) {
  49. $res['BizType'] = $this->bizType;
  50. }
  51. if (null !== $this->guideStep) {
  52. $res['GuideStep'] = $this->guideStep;
  53. }
  54. if (null !== $this->privacyStep) {
  55. $res['PrivacyStep'] = $this->privacyStep;
  56. }
  57. if (null !== $this->resultStep) {
  58. $res['ResultStep'] = $this->resultStep;
  59. }
  60. if (null !== $this->solution) {
  61. $res['Solution'] = $this->solution;
  62. }
  63. return $res;
  64. }
  65. /**
  66. * @param array $map
  67. *
  68. * @return CreateVerifySettingRequest
  69. */
  70. public static function fromMap($map = [])
  71. {
  72. $model = new self();
  73. if (isset($map['BizName'])) {
  74. $model->bizName = $map['BizName'];
  75. }
  76. if (isset($map['BizType'])) {
  77. $model->bizType = $map['BizType'];
  78. }
  79. if (isset($map['GuideStep'])) {
  80. $model->guideStep = $map['GuideStep'];
  81. }
  82. if (isset($map['PrivacyStep'])) {
  83. $model->privacyStep = $map['PrivacyStep'];
  84. }
  85. if (isset($map['ResultStep'])) {
  86. $model->resultStep = $map['ResultStep'];
  87. }
  88. if (isset($map['Solution'])) {
  89. $model->solution = $map['Solution'];
  90. }
  91. return $model;
  92. }
  93. }