1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace TencentCloud\Iai\V20180301\Models;
- use TencentCloud\Common\AbstractModel;
- class GetPersonGroupInfoRequest extends AbstractModel
- {
-
- public $PersonId;
-
- public $Offset;
-
- public $Limit;
-
- function __construct()
- {
- }
-
- public function deserialize($param)
- {
- if ($param === null) {
- return;
- }
- if (array_key_exists("PersonId",$param) and $param["PersonId"] !== null) {
- $this->PersonId = $param["PersonId"];
- }
- if (array_key_exists("Offset",$param) and $param["Offset"] !== null) {
- $this->Offset = $param["Offset"];
- }
- if (array_key_exists("Limit",$param) and $param["Limit"] !== null) {
- $this->Limit = $param["Limit"];
- }
- }
- }
|