PersonExDescriptionInfo.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /*
  3. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace TencentCloud\Iai\V20180301\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * 需要修改的人员描述字段内容,key-value
  21. *
  22. * @method integer getPersonExDescriptionIndex() 获取人员描述字段Index,从0开始
  23. 注意:此字段可能返回 null,表示取不到有效值。
  24. * @method void setPersonExDescriptionIndex(integer $PersonExDescriptionIndex) 设置人员描述字段Index,从0开始
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method string getPersonExDescription() 获取需要更新的人员描述字段内容
  27. * @method void setPersonExDescription(string $PersonExDescription) 设置需要更新的人员描述字段内容
  28. */
  29. class PersonExDescriptionInfo extends AbstractModel
  30. {
  31. /**
  32. * @var integer 人员描述字段Index,从0开始
  33. 注意:此字段可能返回 null,表示取不到有效值。
  34. */
  35. public $PersonExDescriptionIndex;
  36. /**
  37. * @var string 需要更新的人员描述字段内容
  38. */
  39. public $PersonExDescription;
  40. /**
  41. * @param integer $PersonExDescriptionIndex 人员描述字段Index,从0开始
  42. 注意:此字段可能返回 null,表示取不到有效值。
  43. * @param string $PersonExDescription 需要更新的人员描述字段内容
  44. */
  45. function __construct()
  46. {
  47. }
  48. /**
  49. * For internal only. DO NOT USE IT.
  50. */
  51. public function deserialize($param)
  52. {
  53. if ($param === null) {
  54. return;
  55. }
  56. if (array_key_exists("PersonExDescriptionIndex",$param) and $param["PersonExDescriptionIndex"] !== null) {
  57. $this->PersonExDescriptionIndex = $param["PersonExDescriptionIndex"];
  58. }
  59. if (array_key_exists("PersonExDescription",$param) and $param["PersonExDescription"] !== null) {
  60. $this->PersonExDescription = $param["PersonExDescription"];
  61. }
  62. }
  63. }