ModifyDeviceInfoRequest.php 2.2 KB

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