Class: TencentCloud::Ess::V20201111::CreateDocumentResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateDocumentResponse
- Defined in:
- lib/v20201111/models.rb
Overview
CreateDocument返回参数结构体
Instance Attribute Summary collapse
-
#Approvers ⇒ Object
注:
1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。. -
#DocumentId ⇒ Object
注:
1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。. -
#PreviewFileUrl ⇒ Object
注:
1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。. -
#RequestId ⇒ Object
注:
1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(documentid = nil, previewfileurl = nil, approvers = nil, requestid = nil) ⇒ CreateDocumentResponse
constructor
A new instance of CreateDocumentResponse.
Constructor Details
#initialize(documentid = nil, previewfileurl = nil, approvers = nil, requestid = nil) ⇒ CreateDocumentResponse
Returns a new instance of CreateDocumentResponse.
3312 3313 3314 3315 3316 3317 |
# File 'lib/v20201111/models.rb', line 3312 def initialize(documentid=nil, previewfileurl=nil, approvers=nil, requestid=nil) @DocumentId = documentid @PreviewFileUrl = previewfileurl @Approvers = approvers @RequestId = requestid end |
Instance Attribute Details
#Approvers ⇒ Object
注: 1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。
3310 3311 3312 |
# File 'lib/v20201111/models.rb', line 3310 def Approvers @Approvers end |
#DocumentId ⇒ Object
注: 1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。
3310 3311 3312 |
# File 'lib/v20201111/models.rb', line 3310 def DocumentId @DocumentId end |
#PreviewFileUrl ⇒ Object
注: 1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。
3310 3311 3312 |
# File 'lib/v20201111/models.rb', line 3310 def PreviewFileUrl @PreviewFileUrl end |
#RequestId ⇒ Object
注: 1.如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
`2.当使用的模板中存在动态表格控件时,预览结果中没有动态表格的填写内容,完整的预览链接需通过合同文档合成完成回调获取。
3310 3311 3312 |
# File 'lib/v20201111/models.rb', line 3310 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 |
# File 'lib/v20201111/models.rb', line 3319 def deserialize(params) @DocumentId = params['DocumentId'] @PreviewFileUrl = params['PreviewFileUrl'] unless params['Approvers'].nil? @Approvers = [] params['Approvers'].each do |i| approveritem_tmp = ApproverItem.new approveritem_tmp.deserialize(i) @Approvers << approveritem_tmp end end @RequestId = params['RequestId'] end |