'AppId', 'data' => 'Data', 'groupId' => 'GroupId', 'operatorUserId' => 'OperatorUserId', 'type' => 'Type', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->appId) { $res['AppId'] = $this->appId; } if (null !== $this->data) { $res['Data'] = $this->data; } if (null !== $this->groupId) { $res['GroupId'] = $this->groupId; } if (null !== $this->operatorUserId) { $res['OperatorUserId'] = $this->operatorUserId; } if (null !== $this->type) { $res['Type'] = $this->type; } return $res; } /** * @param array $map * * @return SendMessageToGroupRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['AppId'])) { $model->appId = $map['AppId']; } if (isset($map['Data'])) { $model->data = $map['Data']; } if (isset($map['GroupId'])) { $model->groupId = $map['GroupId']; } if (isset($map['OperatorUserId'])) { $model->operatorUserId = $map['OperatorUserId']; } if (isset($map['Type'])) { $model->type = $map['Type']; } return $model; } }