CreateVerifySettingRequest.php 2.4 KB

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