code
stringlengths
15
9.96M
docstring
stringlengths
1
10.1k
func_name
stringlengths
1
124
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
6
186
url
stringlengths
50
236
license
stringclasses
4 values
function __construct() { }
@param string $FileType 文件类型。支持的文件类型:PDF、DOC、DOCX、PPT、PPTX、MD、TXT、XLS、XLSX、CSV、PNG、JPG、JPEG、BMP、GIF、WEBP、HEIC、EPS、ICNS、IM、PCX、PPM、TIFF、XBM、HEIF、JP2。 @param string $FileBase64 文件的 Base64 值。支持的文件大小:所下载文件经Base64编码后不超过 8M。文件下载时间不超过 3 秒。支持的图片像素:单边介于20-10000px之间。文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。 @param string $FileUrl <p>文件的Url地址。文件下载时间不超过15秒。支持的图片像素:单边介于20-10000px之间。文件存储于腾讯云的Url可保障更高的下载速度和稳定性,建议文件存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。所下载文件经 Base64 编码后不超过支持的文件大小:</p><table> <tbody> <tr> <td>文件类型</td> <td>支持的文件大小</td> </tr> <tr> <td>PDF</td> <td>200M</td> </tr> <tr> <td>DOC</td> <td>200M</td> </tr> <tr> <td>DOCX</td> <td>200M</td> </tr> <tr> <td>PPT</td> <td>200M</td> </tr> <tr> <td>PPTX</td> <td>200M</td> </tr> <tr> <td>MD</td> <td>10M</td> </tr> <tr> <td>TXT</td> <td>10M</td> </tr> <tr> <td>XLS</td> <td>20M</td> </tr> <tr> <td>XLSX</td> <td>20M</td> </tr> <tr> <td>CSV</td> <td>20M</td> </tr> <tr> <td>PNG</td> <td>20M</td> </tr> <tr> <td>JPG</td> <td>20M</td> </tr> <tr> <td>JPEG</td> <td>20M</td> </tr> <tr> <td>BMP</td> <td>20M</td> </tr> <tr> <td>GIF</td> <td>20M</td> </tr> <tr> <td>WEBP</td> <td>20M</td> </tr> <tr> <td>HEIC</td> <td>20M</td> </tr> <tr> <td>EPS</td> <td>20M</td> </tr> <tr> <td>ICNS</td> <td>20M</td> </tr> <tr> <td>IM</td> <td>20M</td> </tr> <tr> <td>PCX</td> <td>20M</td> </tr> <tr> <td>PPM</td> <td>20M</td> </tr> <tr> <td>TIFF</td> <td>20M</td> </tr> <tr> <td>XBM</td> <td>20M</td> </tr> <tr> <td>HEIF</td> <td>20M</td> </tr> <tr> <td>JP2</td> <td>20M</td> </tr> </tbody> <colgroup> <col> <col> </colgroup></table> @param integer $FileStartPageNumber 当传入文件类型为PDF、DOC、DOCX、PPT、PPTX,用来指定文件识别的起始页码,识别的页码包含当前值。默认为1,表示从文件的第1页开始识别。 @param integer $FileEndPageNumber 当传入文件类型为PDF、DOC、DOCX、PPT、PPTX,用来指定文件识别的结束页码,识别的页码包含当前值。默认为100,表示识别到文件的第100页。单次调用最多支持识别1000页内容,即FileEndPageNumber-FileStartPageNumber需要不大于1000。 @param CreateReconstructDocumentFlowConfig $Config 创建文档解析任务配置信息。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateReconstructDocumentFlowRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateReconstructDocumentFlowRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("FileType",$param) and $param["FileType"] !== null) { $this->FileType = $param["FileType"]; } if (array_key_exists("FileBase64",$param) and $param["FileBase64"] !== null) { $this->FileBase64 = $param["FileBase64"]; } if (array_key_exists("FileUrl",$param) and $param["FileUrl"] !== null) { $this->FileUrl = $param["FileUrl"]; } if (array_key_exists("FileStartPageNumber",$param) and $param["FileStartPageNumber"] !== null) { $this->FileStartPageNumber = $param["FileStartPageNumber"]; } if (array_key_exists("FileEndPageNumber",$param) and $param["FileEndPageNumber"] !== null) { $this->FileEndPageNumber = $param["FileEndPageNumber"]; } if (array_key_exists("Config",$param) and $param["Config"] !== null) { $this->Config = new CreateReconstructDocumentFlowConfig(); $this->Config->deserialize($param["Config"]); } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateReconstructDocumentFlowRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateReconstructDocumentFlowRequest.php
Apache-2.0
function __construct() { }
@param string $Total 总数 @param array $List 拒答问题列表 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionResponse.php
Apache-2.0
function __construct() { }
@param string $QaBizId QA业务ID @param string $Question 问题 @param string $Answer 答案 @param string $CustomParam 自定义参数 @param integer $Source 来源 1-文档生成问答对 2-批量导入问答对 3-单条手动录入问答对 @param string $SourceDesc 来源描述 @param string $UpdateTime 更新时间 @param integer $Status 状态 <br>1-未校验 2-未发布 3-发布中 4-已发布 5-发布失败 6-不采纳 7-审核中 8-审核失败 9-审核失败申诉后人工审核中 11-审核失败申诉后人工审核不通过 12-已过期 13-超量失效 14-超量失效恢复 19-学习中 20-学习失败 @param string $StatusDesc 状态描述 @param string $CateBizId 分类ID @param boolean $IsAllowAccept 是否允许校验 @param boolean $IsAllowDelete 是否允许删除 @param boolean $IsAllowEdit 是否允许编辑 @param string $DocBizId 文档id @param string $FileName 文档名称 @param string $FileType 文档类型 @param string $SegmentBizId 分片ID @param string $PageContent 分片内容 @param array $Highlights 分片高亮内容 @param string $OrgData 分片内容 @param integer $AttrRange 标签适用范围 @param array $AttrLabels 标签 @param string $ExpireStart 有效开始时间,unix时间戳 @param string $ExpireEnd 有效结束时间,unix时间戳,0代表永久有效 @param array $SimilarQuestions 相似问列表信息 @param integer $QaAuditStatus 问题和答案文本审核状态 1审核失败 @param integer $PicAuditStatus 答案中的图片审核状态 1审核失败 @param integer $VideoAuditStatus 答案中的视频审核状态 1审核失败 @param string $QuestionDesc 问题描述 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeQAResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeQAResponse.php
Apache-2.0
function __construct() { }
@param string $CorpBizId 企业ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateCorpResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateCorpResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("CorpBizId",$param) and $param["CorpBizId"] !== null) { $this->CorpBizId = $param["CorpBizId"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateCorpResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateCorpResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeKnowledgeUsageRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeKnowledgeUsageRequest.php
Apache-2.0
function __construct() { }
@param string $FileBase64 文件的 Base64 值。 支持的文件格式:PNG、JPG、JPEG、PDF。 支持的文件大小:所下载文件经Base64编码后不超过 8M。文件下载时间不超过 3 秒。 支持的图片像素:单边介于20-10000px之间。 文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。 @param string $FileUrl 文件的 Url 地址。 支持的文件格式:PNG、JPG、JPEG、PDF。 支持的文件大小:所下载文件经 Base64 编码后不超过 8M。文件下载时间不超过 3 秒。 支持的图片像素:单边介于20-10000px之间。 文件存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议文件存储于腾讯云。 非腾讯云存储的 Url 速度和稳定性可能受一定影响。 @param integer $FileStartPageNumber 当传入文件是PDF类型时,用来指定pdf识别的起始页码,识别的页码包含当前值。默认为1,表示从pdf文件的第1页开始识别。 @param integer $FileEndPageNumber 当传入文件是PDF类型时,用来指定pdf识别的结束页码,识别的页码包含当前值。默认为10,表示识别到pdf文件的第10页。单次调用最多支持识别10页内容,即FileEndPageNumber-FileStartPageNumber需要不大于10。 @param ReconstructDocumentConfig $Config 配置选项,支持配置是否在生成的Markdown中是否嵌入图片
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("FileBase64",$param) and $param["FileBase64"] !== null) { $this->FileBase64 = $param["FileBase64"]; } if (array_key_exists("FileUrl",$param) and $param["FileUrl"] !== null) { $this->FileUrl = $param["FileUrl"]; } if (array_key_exists("FileStartPageNumber",$param) and $param["FileStartPageNumber"] !== null) { $this->FileStartPageNumber = $param["FileStartPageNumber"]; } if (array_key_exists("FileEndPageNumber",$param) and $param["FileEndPageNumber"] !== null) { $this->FileEndPageNumber = $param["FileEndPageNumber"]; } if (array_key_exists("Config",$param) and $param["Config"] !== null) { $this->Config = new ReconstructDocumentConfig(); $this->Config->deserialize($param["Config"]); } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Name",$param) and $param["Name"] !== null) { $this->Name = $param["Name"]; } if (array_key_exists("Value",$param) and $param["Value"] !== null) { $this->Value = $param["Value"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/StrValue.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/StrValue.php
Apache-2.0
function __construct() { }
@param string $ReleaseBizId 发布ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateReleaseResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateReleaseResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("ReleaseBizId",$param) and $param["ReleaseBizId"] !== null) { $this->ReleaseBizId = $param["ReleaseBizId"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateReleaseResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateReleaseResponse.php
Apache-2.0
function __construct() { }
@param string $ModelName 模型标识 @param string $StartTime 开始时间 @param string $EndTime 结束时间 @param integer $PageNumber 页码 @param integer $PageSize 分页数量 @param array $UinAccount uin列表 @param array $AppBizIds 应用ID列表 @param string $CallType 调用类型列表 @param array $SubScenes 筛选子场景
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListUsageCallDetailRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListUsageCallDetailRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("ModelName",$param) and $param["ModelName"] !== null) { $this->ModelName = $param["ModelName"]; } if (array_key_exists("StartTime",$param) and $param["StartTime"] !== null) { $this->StartTime = $param["StartTime"]; } if (array_key_exists("EndTime",$param) and $param["EndTime"] !== null) { $this->EndTime = $param["EndTime"]; } if (array_key_exists("PageNumber",$param) and $param["PageNumber"] !== null) { $this->PageNumber = $param["PageNumber"]; } if (array_key_exists("PageSize",$param) and $param["PageSize"] !== null) { $this->PageSize = $param["PageSize"]; } if (array_key_exists("UinAccount",$param) and $param["UinAccount"] !== null) { $this->UinAccount = $param["UinAccount"]; } if (array_key_exists("AppBizIds",$param) and $param["AppBizIds"] !== null) { $this->AppBizIds = $param["AppBizIds"]; } if (array_key_exists("CallType",$param) and $param["CallType"] !== null) { $this->CallType = $param["CallType"]; } if (array_key_exists("SubScenes",$param) and $param["SubScenes"] !== null) { $this->SubScenes = $param["SubScenes"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListUsageCallDetailRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListUsageCallDetailRequest.php
Apache-2.0
function __construct() { }
@param string $VarId 变量ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateVarResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateVarResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("VarId",$param) and $param["VarId"] !== null) { $this->VarId = $param["VarId"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateVarResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateVarResponse.php
Apache-2.0
function __construct() { }
@param array $DocBizIds 文档业务ID列表 @param string $BotBizId 应用ID
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteDocRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteDocRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("DocBizIds",$param) and $param["DocBizIds"] !== null) { $this->DocBizIds = $param["DocBizIds"]; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteDocRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteDocRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("TaskFlowId",$param) and $param["TaskFlowId"] !== null) { $this->TaskFlowId = $param["TaskFlowId"]; } if (array_key_exists("TaskFlowName",$param) and $param["TaskFlowName"] !== null) { $this->TaskFlowName = $param["TaskFlowName"]; } if (array_key_exists("QueryRewrite",$param) and $param["QueryRewrite"] !== null) { $this->QueryRewrite = $param["QueryRewrite"]; } if (array_key_exists("HitIntent",$param) and $param["HitIntent"] !== null) { $this->HitIntent = $param["HitIntent"]; } if (array_key_exists("Type",$param) and $param["Type"] !== null) { $this->Type = $param["Type"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/TaskFlowInfo.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/TaskFlowInfo.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID,参数非必填不代表不需要填写,下面不同的参数组合会获取到不同的权限,具体请参考 https://cloud.tencent.com/document/product/1759/116238 @param string $FileType 文件类型,正常的文件名类型后缀,例如 xlsx、pdf、 docx、png 等 @param boolean $IsPublic IsPublic用于上传文件或图片时选择场景,当上传对话端图片时IsPublic为true,上传文件(包括文档库文件/图片等和对话端文件)时IsPublic为false @param string $TypeKey 存储类型: offline:离线文件,realtime:实时文件;为空默认为offline
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeStorageCredentialRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeStorageCredentialRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("FileType",$param) and $param["FileType"] !== null) { $this->FileType = $param["FileType"]; } if (array_key_exists("IsPublic",$param) and $param["IsPublic"] !== null) { $this->IsPublic = $param["IsPublic"]; } if (array_key_exists("TypeKey",$param) and $param["TypeKey"] !== null) { $this->TypeKey = $param["TypeKey"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeStorageCredentialRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeStorageCredentialRequest.php
Apache-2.0
function __construct() { }
@param array $List 引用列表 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeReferResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeReferResponse.php
Apache-2.0
function __construct() { }
@param string $Query 检索,属性或标签名称
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/AttributeFilters.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/AttributeFilters.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Query",$param) and $param["Query"] !== null) { $this->Query = $param["Query"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/AttributeFilters.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/AttributeFilters.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param string $LoginUin 登录用户主账号(集成商模式必填) @param string $LoginSubAccountUin 登录用户子账号(集成商模式必填) @param array $AttributeBizIds 属性ID @param AttributeFilters $Filters 根据筛选数据导出
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ExportAttributeLabelRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ExportAttributeLabelRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) { $this->LoginUin = $param["LoginUin"]; } if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) { $this->LoginSubAccountUin = $param["LoginSubAccountUin"]; } if (array_key_exists("AttributeBizIds",$param) and $param["AttributeBizIds"] !== null) { $this->AttributeBizIds = $param["AttributeBizIds"]; } if (array_key_exists("Filters",$param) and $param["Filters"] !== null) { $this->Filters = new AttributeFilters(); $this->Filters->deserialize($param["Filters"]); } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ExportAttributeLabelRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ExportAttributeLabelRequest.php
Apache-2.0
function __construct() { }
@param string $Model 模型名称 @param array $Inputs 需要 embedding 的文本, 单条文本最大长度500个字符, 总条数最大7条 @param boolean $Online 是否在线, 后台异步任务使用离线, 实时任务使用在线, 默认值: false
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetEmbeddingRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetEmbeddingRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Model",$param) and $param["Model"] !== null) { $this->Model = $param["Model"]; } if (array_key_exists("Inputs",$param) and $param["Inputs"] !== null) { $this->Inputs = $param["Inputs"]; } if (array_key_exists("Online",$param) and $param["Online"] !== null) { $this->Online = $param["Online"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetEmbeddingRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetEmbeddingRequest.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用业务ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeRobotBizIDByAppKeyResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeRobotBizIDByAppKeyResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeRobotBizIDByAppKeyResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeRobotBizIDByAppKeyResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Id",$param) and $param["Id"] !== null) { $this->Id = $param["Id"]; } if (array_key_exists("CallTime",$param) and $param["CallTime"] !== null) { $this->CallTime = $param["CallTime"]; } if (array_key_exists("TotalTokenUsage",$param) and $param["TotalTokenUsage"] !== null) { $this->TotalTokenUsage = $param["TotalTokenUsage"]; } if (array_key_exists("InputTokenUsage",$param) and $param["InputTokenUsage"] !== null) { $this->InputTokenUsage = $param["InputTokenUsage"]; } if (array_key_exists("OutputTokenUsage",$param) and $param["OutputTokenUsage"] !== null) { $this->OutputTokenUsage = $param["OutputTokenUsage"]; } if (array_key_exists("SearchUsage",$param) and $param["SearchUsage"] !== null) { $this->SearchUsage = $param["SearchUsage"]; } if (array_key_exists("ModelName",$param) and $param["ModelName"] !== null) { $this->ModelName = $param["ModelName"]; } if (array_key_exists("CallType",$param) and $param["CallType"] !== null) { $this->CallType = $param["CallType"]; } if (array_key_exists("UinAccount",$param) and $param["UinAccount"] !== null) { $this->UinAccount = $param["UinAccount"]; } if (array_key_exists("AppName",$param) and $param["AppName"] !== null) { $this->AppName = $param["AppName"]; } if (array_key_exists("PageUsage",$param) and $param["PageUsage"] !== null) { $this->PageUsage = $param["PageUsage"]; } if (array_key_exists("SubScene",$param) and $param["SubScene"] !== null) { $this->SubScene = $param["SubScene"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CallDetail.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CallDetail.php
Apache-2.0
function __construct() { }
@param string $Total 文档数量 @param array $List 文档列表 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListReleaseQAPreviewResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListReleaseQAPreviewResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Name",$param) and $param["Name"] !== null) { $this->Name = $param["Name"]; } if (array_key_exists("Desc",$param) and $param["Desc"] !== null) { $this->Desc = $param["Desc"]; } if (array_key_exists("ContextLimit",$param) and $param["ContextLimit"] !== null) { $this->ContextLimit = $param["ContextLimit"]; } if (array_key_exists("AliasName",$param) and $param["AliasName"] !== null) { $this->AliasName = $param["AliasName"]; } if (array_key_exists("TokenBalance",$param) and $param["TokenBalance"] !== null) { $this->TokenBalance = $param["TokenBalance"]; } if (array_key_exists("IsUseContext",$param) and $param["IsUseContext"] !== null) { $this->IsUseContext = $param["IsUseContext"]; } if (array_key_exists("HistoryLimit",$param) and $param["HistoryLimit"] !== null) { $this->HistoryLimit = $param["HistoryLimit"]; } if (array_key_exists("UsageType",$param) and $param["UsageType"] !== null) { $this->UsageType = $param["UsageType"]; } if (array_key_exists("Temperature",$param) and $param["Temperature"] !== null) { $this->Temperature = $param["Temperature"]; } if (array_key_exists("TopP",$param) and $param["TopP"] !== null) { $this->TopP = $param["TopP"]; } if (array_key_exists("ResourceStatus",$param) and $param["ResourceStatus"] !== null) { $this->ResourceStatus = $param["ResourceStatus"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/AppModel.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/AppModel.php
Apache-2.0
function __construct() { }
@param integer $PageNumber 页码 @param integer $PageSize 页面大小 @param array $AppBizIds 应用ID列表
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListAppKnowledgeDetailRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListAppKnowledgeDetailRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("PageNumber",$param) and $param["PageNumber"] !== null) { $this->PageNumber = $param["PageNumber"]; } if (array_key_exists("PageSize",$param) and $param["PageSize"] !== null) { $this->PageSize = $param["PageSize"]; } if (array_key_exists("AppBizIds",$param) and $param["AppBizIds"] !== null) { $this->AppBizIds = $param["AppBizIds"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListAppKnowledgeDetailRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListAppKnowledgeDetailRequest.php
Apache-2.0
function __construct() { }
@param string $Total 问答数量 @param string $WaitVerifyTotal 待校验问答数量 @param string $NotAcceptedTotal 未采纳问答数量 @param string $AcceptedTotal 已采纳问答数量 @param integer $PageNumber 页码 @param array $List 问答详情 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListQAResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListQAResponse.php
Apache-2.0
function __construct() { }
@param string $AppBizId 应用ID
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetAppSecretRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetAppSecretRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("AppBizId",$param) and $param["AppBizId"] !== null) { $this->AppBizId = $param["AppBizId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetAppSecretRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetAppSecretRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("PageNumber",$param) and $param["PageNumber"] !== null) { $this->PageNumber = $param["PageNumber"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentFailedPage.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentFailedPage.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("EChartsInfo",$param) and $param["EChartsInfo"] !== null) { $this->EChartsInfo = $param["EChartsInfo"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ExtraInfo.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ExtraInfo.php
Apache-2.0
function __construct() { }
@param string $DocBizId 文档ID @param string $ErrorMsg 导入错误信息 @param string $ErrorLink 错误链接 @param string $ErrorLinkText 错误链接文本 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/SaveDocResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/SaveDocResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("DocBizId",$param) and $param["DocBizId"] !== null) { $this->DocBizId = $param["DocBizId"]; } if (array_key_exists("ErrorMsg",$param) and $param["ErrorMsg"] !== null) { $this->ErrorMsg = $param["ErrorMsg"]; } if (array_key_exists("ErrorLink",$param) and $param["ErrorLink"] !== null) { $this->ErrorLink = $param["ErrorLink"]; } if (array_key_exists("ErrorLinkText",$param) and $param["ErrorLinkText"] !== null) { $this->ErrorLinkText = $param["ErrorLinkText"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/SaveDocResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/SaveDocResponse.php
Apache-2.0
function __construct() { }
@param boolean $CanAdd 是否可新增 @param boolean $CanEdit 是否可编辑 @param boolean $CanDelete 是否可删除 @param string $CateBizId 分类业务ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateQACateResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateQACateResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("CanAdd",$param) and $param["CanAdd"] !== null) { $this->CanAdd = $param["CanAdd"]; } if (array_key_exists("CanEdit",$param) and $param["CanEdit"] !== null) { $this->CanEdit = $param["CanEdit"]; } if (array_key_exists("CanDelete",$param) and $param["CanDelete"] !== null) { $this->CanDelete = $param["CanDelete"]; } if (array_key_exists("CateBizId",$param) and $param["CateBizId"] !== null) { $this->CateBizId = $param["CateBizId"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateQACateResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateQACateResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("CosPath",$param) and $param["CosPath"] !== null) { $this->CosPath = $param["CosPath"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/TaskParams.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/TaskParams.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Type",$param) and $param["Type"] !== null) { $this->Type = $param["Type"]; } if (array_key_exists("Content",$param) and $param["Content"] !== null) { $this->Content = $param["Content"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/KnowledgeSummary.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/KnowledgeSummary.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param string $Name 分类名称 @param string $CateBizId 分类业务ID
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ModifyQACateRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ModifyQACateRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("Name",$param) and $param["Name"] !== null) { $this->Name = $param["Name"]; } if (array_key_exists("CateBizId",$param) and $param["CateBizId"] !== null) { $this->CateBizId = $param["CateBizId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ModifyQACateRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ModifyQACateRequest.php
Apache-2.0
function __construct() { }
@param boolean $IsRefer 是否引用 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelReferResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelReferResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("IsRefer",$param) and $param["IsRefer"] !== null) { $this->IsRefer = $param["IsRefer"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelReferResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CheckAttributeLabelReferResponse.php
Apache-2.0
function __construct() { }
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/VerifyQAResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/VerifyQAResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/VerifyQAResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/VerifyQAResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Text",$param) and $param["Text"] !== null) { $this->Text = $param["Text"]; } if (array_key_exists("Value",$param) and $param["Value"] !== null) { $this->Value = $param["Value"]; } if (array_key_exists("Logo",$param) and $param["Logo"] !== null) { $this->Logo = $param["Logo"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListAppCategoryRspOption.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListAppCategoryRspOption.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param string $QaBizId 问答ID @param string $Question 问题 @param string $Answer 答案 @param string $CustomParam 自定义参数 @param integer $AttrRange 标签适用范围 1:全部,2:按条件 @param array $AttrLabels 标签引用 @param string $DocBizId 文档ID @param string $CateBizId 分类ID @param string $ExpireStart 有效开始时间,unix时间戳 @param string $ExpireEnd 有效结束时间,unix时间戳,0代表永久有效 @param SimilarQuestionModify $SimilarQuestionModify 相似问修改信息(相似问没有修改则不传) @param string $QuestionDesc 问题描述
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ModifyQARequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ModifyQARequest.php
Apache-2.0
function __construct() { }
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ModifyDocCateResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ModifyDocCateResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ModifyDocCateResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ModifyDocCateResponse.php
Apache-2.0
function __construct() { }
@param boolean $EnableInsetImage 生成的Markdown中是否嵌入图片
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentConfig.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentConfig.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("EnableInsetImage",$param) and $param["EnableInsetImage"] !== null) { $this->EnableInsetImage = $param["EnableInsetImage"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentConfig.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ReconstructDocumentConfig.php
Apache-2.0
function __construct() { }
@param string $FullName 企业全称 @param string $ContactName 联系人名称 @param string $Email 联系人邮箱 @param string $Telephone 联系人手机号
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateCorpRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateCorpRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("FullName",$param) and $param["FullName"] !== null) { $this->FullName = $param["FullName"]; } if (array_key_exists("ContactName",$param) and $param["ContactName"] !== null) { $this->ContactName = $param["ContactName"]; } if (array_key_exists("Email",$param) and $param["Email"] !== null) { $this->Email = $param["Email"]; } if (array_key_exists("Telephone",$param) and $param["Telephone"] !== null) { $this->Telephone = $param["Telephone"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateCorpRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateCorpRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Text",$param) and $param["Text"] !== null) { $this->Text = $param["Text"]; } if (array_key_exists("Value",$param) and $param["Value"] !== null) { $this->Value = $param["Value"]; } if (array_key_exists("CharSize",$param) and $param["CharSize"] !== null) { $this->CharSize = $param["CharSize"]; } if (array_key_exists("FileType",$param) and $param["FileType"] !== null) { $this->FileType = $param["FileType"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/Option.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/Option.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param string $FileName 文件名 @param string $CosUrl cos路径 @param string $CosHash x-cos-hash-crc64ecma 头部中的 CRC64编码进行校验上传到云端的文件和本地文件的一致性 @param string $Size 文件大小 @param string $LoginUin 登录用户主账号(集成商模式必填) @param string $LoginSubAccountUin 登录用户子账号(集成商模式必填)
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/UploadAttributeLabelRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/UploadAttributeLabelRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("FileName",$param) and $param["FileName"] !== null) { $this->FileName = $param["FileName"]; } if (array_key_exists("CosUrl",$param) and $param["CosUrl"] !== null) { $this->CosUrl = $param["CosUrl"]; } if (array_key_exists("CosHash",$param) and $param["CosHash"] !== null) { $this->CosHash = $param["CosHash"]; } if (array_key_exists("Size",$param) and $param["Size"] !== null) { $this->Size = $param["Size"]; } if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) { $this->LoginUin = $param["LoginUin"]; } if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) { $this->LoginSubAccountUin = $param["LoginSubAccountUin"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/UploadAttributeLabelRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/UploadAttributeLabelRequest.php
Apache-2.0
function __construct() { }
@param string $Name 意图达成方式,qa:问答回复、doc:文档回复、workflow:工作流回复,llm:大模型回复 @param string $Desc 意图达成方式描述
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/IntentAchievement.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/IntentAchievement.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Name",$param) and $param["Name"] !== null) { $this->Name = $param["Name"]; } if (array_key_exists("Desc",$param) and $param["Desc"] !== null) { $this->Desc = $param["Desc"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/IntentAchievement.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/IntentAchievement.php
Apache-2.0
function __construct() { }
@param integer $StartTime 开始日期 @param integer $EndTime 结束日期 @param array $AppBizId 应用id @param integer $Type 消息来源(1、分享用户端 2、对话API 3、对话测试 4、应用评测) @param string $LoginUin 登录用户主账号(集成商模式必填) @param string $LoginSubAccountUin 登录用户子账号(集成商模式必填)
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetAnswerTypeDataCountRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetAnswerTypeDataCountRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("StartTime",$param) and $param["StartTime"] !== null) { $this->StartTime = $param["StartTime"]; } if (array_key_exists("EndTime",$param) and $param["EndTime"] !== null) { $this->EndTime = $param["EndTime"]; } if (array_key_exists("AppBizId",$param) and $param["AppBizId"] !== null) { $this->AppBizId = $param["AppBizId"]; } if (array_key_exists("Type",$param) and $param["Type"] !== null) { $this->Type = $param["Type"]; } if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) { $this->LoginUin = $param["LoginUin"]; } if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) { $this->LoginSubAccountUin = $param["LoginSubAccountUin"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetAnswerTypeDataCountRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetAnswerTypeDataCountRequest.php
Apache-2.0
function __construct() { }
@param string $BotBizId 机器人ID @param integer $PageNumber 页码 @param integer $PageSize 每页数量
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListReleaseRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListReleaseRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("PageNumber",$param) and $param["PageNumber"] !== null) { $this->PageNumber = $param["PageNumber"]; } if (array_key_exists("PageSize",$param) and $param["PageSize"] !== null) { $this->PageSize = $param["PageSize"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListReleaseRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListReleaseRequest.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param string $ParentBizId 父级业务ID,创建顶级分类时传字符串"0" @param string $Name 分类名称
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateQACateRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateQACateRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("ParentBizId",$param) and $param["ParentBizId"] !== null) { $this->ParentBizId = $param["ParentBizId"]; } if (array_key_exists("Name",$param) and $param["Name"] !== null) { $this->Name = $param["Name"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateQACateRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateQACateRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("RejectedBizId",$param) and $param["RejectedBizId"] !== null) { $this->RejectedBizId = $param["RejectedBizId"]; } if (array_key_exists("Question",$param) and $param["Question"] !== null) { $this->Question = $param["Question"]; } if (array_key_exists("Status",$param) and $param["Status"] !== null) { $this->Status = $param["Status"]; } if (array_key_exists("StatusDesc",$param) and $param["StatusDesc"] !== null) { $this->StatusDesc = $param["StatusDesc"]; } if (array_key_exists("UpdateTime",$param) and $param["UpdateTime"] !== null) { $this->UpdateTime = $param["UpdateTime"]; } if (array_key_exists("IsAllowEdit",$param) and $param["IsAllowEdit"] !== null) { $this->IsAllowEdit = $param["IsAllowEdit"]; } if (array_key_exists("IsAllowDelete",$param) and $param["IsAllowDelete"] !== null) { $this->IsAllowDelete = $param["IsAllowDelete"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/RejectedQuestion.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/RejectedQuestion.php
Apache-2.0
function __construct() { }
@param string $DocBizId 文档ID @param string $FileName 文件名称 @param string $FileType 文件类型 @param string $CosUrl cos路径 @param string $UpdateTime 更新时间 @param integer $Status 文档状态: 1-未生成 2-生成中 3-生成成功 4-生成失败 5-删除中 6-删除成功 7-审核中 8-审核失败 9-审核成功 10-待发布 11-发布中 12-已发布 13-学习中 14-学习失败 15-更新中 16-更新失败 17-解析中 18-解析失败 19-导入失败 20-已过期 21-超量失效 22-超量失效恢复 @param string $StatusDesc 文档状态描述 @param string $Reason 生成失败原因 @param boolean $IsRefer 答案中是否引用 @param integer $QaNum 问答对数量 @param boolean $IsDeleted 是否删除 @param integer $Source 文档来源 @param string $SourceDesc 文档来源描述 @param boolean $IsAllowRestart 是否允许重新生成 @param boolean $IsDeletedQa qa是否已删除 @param boolean $IsCreatingQa 问答是否生成中 @param boolean $IsAllowDelete 是否允许删除 @param boolean $IsAllowRefer 是否允许操作引用开关 @param boolean $IsCreatedQa 是否生成过问答 @param string $DocCharSize 文档字符量 @param boolean $IsAllowEdit 是否允许编辑 @param integer $AttrRange 标签适用范围 1:全部,2:按条件范围 @param array $AttrLabels 标签 @param string $CateBizId 分类ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeDocResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeDocResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("FileName",$param) and $param["FileName"] !== null) { $this->FileName = $param["FileName"]; } if (array_key_exists("FileSize",$param) and $param["FileSize"] !== null) { $this->FileSize = $param["FileSize"]; } if (array_key_exists("FileUrl",$param) and $param["FileUrl"] !== null) { $this->FileUrl = $param["FileUrl"]; } if (array_key_exists("FileType",$param) and $param["FileType"] !== null) { $this->FileType = $param["FileType"]; } if (array_key_exists("DocId",$param) and $param["DocId"] !== null) { $this->DocId = $param["DocId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/FileInfo.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/FileInfo.php
Apache-2.0
function __construct() { }
@param string $QaBizId 问答ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateQAResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateQAResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("QaBizId",$param) and $param["QaBizId"] !== null) { $this->QaBizId = $param["QaBizId"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateQAResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateQAResponse.php
Apache-2.0
function __construct() { }
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteRejectedQuestionResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteRejectedQuestionResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteRejectedQuestionResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteRejectedQuestionResponse.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param array $QaBizIds 问答ID
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteQARequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteQARequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("QaBizIds",$param) and $param["QaBizIds"] !== null) { $this->QaBizIds = $param["QaBizIds"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteQARequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteQARequest.php
Apache-2.0
function __construct() { }
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/RetryDocParseResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/RetryDocParseResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/RetryDocParseResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/RetryDocParseResponse.php
Apache-2.0
function __construct() { }
@param string $TaskId 任务唯一Id。[CreateReconstructDocumentFlow](https://cloud.tencent.com/document/product/1759/107506) 返回的TaskId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetReconstructDocumentResultRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetReconstructDocumentResultRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("TaskId",$param) and $param["TaskId"] !== null) { $this->TaskId = $param["TaskId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/GetReconstructDocumentResultRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/GetReconstructDocumentResultRequest.php
Apache-2.0
function __construct() { }
@param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteDocCateResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteDocCateResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DeleteDocCateResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DeleteDocCateResponse.php
Apache-2.0
function __construct() { }
@param string $Total 文档数量 @param array $List 文档列表 @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionPreviewResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionPreviewResponse.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param string $AttributeBizId 属性ID @param integer $Limit 每次加载的数量 @param string $LoginUin 登录用户主账号(集成商模式必填) @param string $LoginSubAccountUin 登录用户子账号(集成商模式必填) @param string $Query 查询标签或相似标签 @param string $LastLabelBizId 滚动加载游标的标签ID
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeAttributeLabelRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeAttributeLabelRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("AttributeBizId",$param) and $param["AttributeBizId"] !== null) { $this->AttributeBizId = $param["AttributeBizId"]; } if (array_key_exists("Limit",$param) and $param["Limit"] !== null) { $this->Limit = $param["Limit"]; } if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) { $this->LoginUin = $param["LoginUin"]; } if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) { $this->LoginSubAccountUin = $param["LoginSubAccountUin"]; } if (array_key_exists("Query",$param) and $param["Query"] !== null) { $this->Query = $param["Query"]; } if (array_key_exists("LastLabelBizId",$param) and $param["LastLabelBizId"] !== null) { $this->LastLabelBizId = $param["LastLabelBizId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/DescribeAttributeLabelRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/DescribeAttributeLabelRequest.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param integer $PageNumber 页码 @param integer $PageSize 每页数量 @param string $Query 查询内容
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("PageNumber",$param) and $param["PageNumber"] !== null) { $this->PageNumber = $param["PageNumber"]; } if (array_key_exists("PageSize",$param) and $param["PageSize"] !== null) { $this->PageSize = $param["PageSize"]; } if (array_key_exists("Query",$param) and $param["Query"] !== null) { $this->Query = $param["Query"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListRejectedQuestionRequest.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param integer $PageNumber 页码 @param integer $PageSize 每页数量 @param string $Query 查询内容 @param array $Status 文档状态: 1-未生成 2-生成中 3-生成成功 4-生成失败 5-删除中 6-删除成功 7-审核中 8-审核失败 9-审核成功 10-待发布 11-发布中 12-已发布 13-学习中 14-学习失败 15-更新中 16-更新失败 17-解析中 18-解析失败 19-导入失败 20-已过期 21-超量失效 22-超量失效恢复 @param string $QueryType 查询类型 filename 文档、 attribute 标签 @param string $CateBizId 分类ID @param array $FileTypes 文件类型分类筛选 @param array $FilterFlag 文档列表筛选标识位
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/ListDocRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/ListDocRequest.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param array $ReplyBizIds 不满意回复ID @param string $LoginUin 登录用户主账号(集成商模式必填) @param string $LoginSubAccountUin 登录用户子账号(集成商模式必填)
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/IgnoreUnsatisfiedReplyRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/IgnoreUnsatisfiedReplyRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("ReplyBizIds",$param) and $param["ReplyBizIds"] !== null) { $this->ReplyBizIds = $param["ReplyBizIds"]; } if (array_key_exists("LoginUin",$param) and $param["LoginUin"] !== null) { $this->LoginUin = $param["LoginUin"]; } if (array_key_exists("LoginSubAccountUin",$param) and $param["LoginSubAccountUin"] !== null) { $this->LoginSubAccountUin = $param["LoginSubAccountUin"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/IgnoreUnsatisfiedReplyRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/IgnoreUnsatisfiedReplyRequest.php
Apache-2.0
function __construct() { }
@param string $AttrBizId 标签ID @param string $RequestId 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateAttributeLabelResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateAttributeLabelResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("AttrBizId",$param) and $param["AttrBizId"] !== null) { $this->AttrBizId = $param["AttrBizId"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/CreateAttributeLabelResponse.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/CreateAttributeLabelResponse.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Name",$param) and $param["Name"] !== null) { $this->Name = $param["Name"]; } if (array_key_exists("Title",$param) and $param["Title"] !== null) { $this->Title = $param["Title"]; } if (array_key_exists("Status",$param) and $param["Status"] !== null) { $this->Status = $param["Status"]; } if (array_key_exists("Count",$param) and $param["Count"] !== null) { $this->Count = $param["Count"]; } if (array_key_exists("Debugging",$param) and $param["Debugging"] !== null) { $this->Debugging = new ProcedureDebugging(); $this->Debugging->deserialize($param["Debugging"]); } if (array_key_exists("ResourceStatus",$param) and $param["ResourceStatus"] !== null) { $this->ResourceStatus = $param["ResourceStatus"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/Procedure.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/Procedure.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("Model",$param) and $param["Model"] !== null) { $this->Model = new AppModel(); $this->Model->deserialize($param["Model"]); } if (array_key_exists("Output",$param) and $param["Output"] !== null) { $this->Output = new SummaryOutput(); $this->Output->deserialize($param["Output"]); } if (array_key_exists("Greeting",$param) and $param["Greeting"] !== null) { $this->Greeting = $param["Greeting"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/SummaryConfig.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/SummaryConfig.php
Apache-2.0
function __construct() { }
@param string $BotBizId 应用ID @param string $DocBizId 文档ID
__construct
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/RetryDocAuditRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/RetryDocAuditRequest.php
Apache-2.0
public function deserialize($param) { if ($param === null) { return; } if (array_key_exists("BotBizId",$param) and $param["BotBizId"] !== null) { $this->BotBizId = $param["BotBizId"]; } if (array_key_exists("DocBizId",$param) and $param["DocBizId"] !== null) { $this->DocBizId = $param["DocBizId"]; } }
For internal only. DO NOT USE IT.
deserialize
php
TencentCloud/tencentcloud-sdk-php
src/TencentCloud/Lke/V20231130/Models/RetryDocAuditRequest.php
https://github.com/TencentCloud/tencentcloud-sdk-php/blob/master/src/TencentCloud/Lke/V20231130/Models/RetryDocAuditRequest.php
Apache-2.0