ContrastFaceVerifyRequest.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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 ContrastFaceVerifyRequest extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $certName;
  11. /**
  12. * @var string
  13. */
  14. public $certNo;
  15. /**
  16. * @var string
  17. */
  18. public $certType;
  19. /**
  20. * @var string
  21. */
  22. public $certifyId;
  23. /**
  24. * @var string
  25. */
  26. public $crop;
  27. /**
  28. * @var string
  29. */
  30. public $deviceToken;
  31. /**
  32. * @var string
  33. */
  34. public $encryptType;
  35. /**
  36. * @var string
  37. */
  38. public $faceContrastFile;
  39. /**
  40. * @var string
  41. */
  42. public $faceContrastPicture;
  43. /**
  44. * @var string
  45. */
  46. public $faceContrastPictureUrl;
  47. /**
  48. * @var string
  49. */
  50. public $ip;
  51. /**
  52. * @var string
  53. */
  54. public $mobile;
  55. /**
  56. * @var string
  57. */
  58. public $model;
  59. /**
  60. * @var string
  61. */
  62. public $ossBucketName;
  63. /**
  64. * @var string
  65. */
  66. public $ossObjectName;
  67. /**
  68. * @var string
  69. */
  70. public $outerOrderNo;
  71. /**
  72. * @var string
  73. */
  74. public $productCode;
  75. /**
  76. * @var int
  77. */
  78. public $sceneId;
  79. /**
  80. * @var string
  81. */
  82. public $userId;
  83. protected $_name = [
  84. 'certName' => 'CertName',
  85. 'certNo' => 'CertNo',
  86. 'certType' => 'CertType',
  87. 'certifyId' => 'CertifyId',
  88. 'crop' => 'Crop',
  89. 'deviceToken' => 'DeviceToken',
  90. 'encryptType' => 'EncryptType',
  91. 'faceContrastFile' => 'FaceContrastFile',
  92. 'faceContrastPicture' => 'FaceContrastPicture',
  93. 'faceContrastPictureUrl' => 'FaceContrastPictureUrl',
  94. 'ip' => 'Ip',
  95. 'mobile' => 'Mobile',
  96. 'model' => 'Model',
  97. 'ossBucketName' => 'OssBucketName',
  98. 'ossObjectName' => 'OssObjectName',
  99. 'outerOrderNo' => 'OuterOrderNo',
  100. 'productCode' => 'ProductCode',
  101. 'sceneId' => 'SceneId',
  102. 'userId' => 'UserId',
  103. ];
  104. public function validate()
  105. {
  106. }
  107. public function toMap()
  108. {
  109. $res = [];
  110. if (null !== $this->certName) {
  111. $res['CertName'] = $this->certName;
  112. }
  113. if (null !== $this->certNo) {
  114. $res['CertNo'] = $this->certNo;
  115. }
  116. if (null !== $this->certType) {
  117. $res['CertType'] = $this->certType;
  118. }
  119. if (null !== $this->certifyId) {
  120. $res['CertifyId'] = $this->certifyId;
  121. }
  122. if (null !== $this->crop) {
  123. $res['Crop'] = $this->crop;
  124. }
  125. if (null !== $this->deviceToken) {
  126. $res['DeviceToken'] = $this->deviceToken;
  127. }
  128. if (null !== $this->encryptType) {
  129. $res['EncryptType'] = $this->encryptType;
  130. }
  131. if (null !== $this->faceContrastFile) {
  132. $res['FaceContrastFile'] = $this->faceContrastFile;
  133. }
  134. if (null !== $this->faceContrastPicture) {
  135. $res['FaceContrastPicture'] = $this->faceContrastPicture;
  136. }
  137. if (null !== $this->faceContrastPictureUrl) {
  138. $res['FaceContrastPictureUrl'] = $this->faceContrastPictureUrl;
  139. }
  140. if (null !== $this->ip) {
  141. $res['Ip'] = $this->ip;
  142. }
  143. if (null !== $this->mobile) {
  144. $res['Mobile'] = $this->mobile;
  145. }
  146. if (null !== $this->model) {
  147. $res['Model'] = $this->model;
  148. }
  149. if (null !== $this->ossBucketName) {
  150. $res['OssBucketName'] = $this->ossBucketName;
  151. }
  152. if (null !== $this->ossObjectName) {
  153. $res['OssObjectName'] = $this->ossObjectName;
  154. }
  155. if (null !== $this->outerOrderNo) {
  156. $res['OuterOrderNo'] = $this->outerOrderNo;
  157. }
  158. if (null !== $this->productCode) {
  159. $res['ProductCode'] = $this->productCode;
  160. }
  161. if (null !== $this->sceneId) {
  162. $res['SceneId'] = $this->sceneId;
  163. }
  164. if (null !== $this->userId) {
  165. $res['UserId'] = $this->userId;
  166. }
  167. return $res;
  168. }
  169. /**
  170. * @param array $map
  171. *
  172. * @return ContrastFaceVerifyRequest
  173. */
  174. public static function fromMap($map = [])
  175. {
  176. $model = new self();
  177. if (isset($map['CertName'])) {
  178. $model->certName = $map['CertName'];
  179. }
  180. if (isset($map['CertNo'])) {
  181. $model->certNo = $map['CertNo'];
  182. }
  183. if (isset($map['CertType'])) {
  184. $model->certType = $map['CertType'];
  185. }
  186. if (isset($map['CertifyId'])) {
  187. $model->certifyId = $map['CertifyId'];
  188. }
  189. if (isset($map['Crop'])) {
  190. $model->crop = $map['Crop'];
  191. }
  192. if (isset($map['DeviceToken'])) {
  193. $model->deviceToken = $map['DeviceToken'];
  194. }
  195. if (isset($map['EncryptType'])) {
  196. $model->encryptType = $map['EncryptType'];
  197. }
  198. if (isset($map['FaceContrastFile'])) {
  199. $model->faceContrastFile = $map['FaceContrastFile'];
  200. }
  201. if (isset($map['FaceContrastPicture'])) {
  202. $model->faceContrastPicture = $map['FaceContrastPicture'];
  203. }
  204. if (isset($map['FaceContrastPictureUrl'])) {
  205. $model->faceContrastPictureUrl = $map['FaceContrastPictureUrl'];
  206. }
  207. if (isset($map['Ip'])) {
  208. $model->ip = $map['Ip'];
  209. }
  210. if (isset($map['Mobile'])) {
  211. $model->mobile = $map['Mobile'];
  212. }
  213. if (isset($map['Model'])) {
  214. $model->model = $map['Model'];
  215. }
  216. if (isset($map['OssBucketName'])) {
  217. $model->ossBucketName = $map['OssBucketName'];
  218. }
  219. if (isset($map['OssObjectName'])) {
  220. $model->ossObjectName = $map['OssObjectName'];
  221. }
  222. if (isset($map['OuterOrderNo'])) {
  223. $model->outerOrderNo = $map['OuterOrderNo'];
  224. }
  225. if (isset($map['ProductCode'])) {
  226. $model->productCode = $map['ProductCode'];
  227. }
  228. if (isset($map['SceneId'])) {
  229. $model->sceneId = $map['SceneId'];
  230. }
  231. if (isset($map['UserId'])) {
  232. $model->userId = $map['UserId'];
  233. }
  234. return $model;
  235. }
  236. }