Class: TencentCloud::Tms::V20201229::CreateFinancialLLMTaskRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tms::V20201229::CreateFinancialLLMTaskRequest
- Defined in:
- lib/v20201229/models.rb
Overview
CreateFinancialLLMTask请求参数结构体
Instance Attribute Summary collapse
-
#BizType ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字.
-
#Content ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字.
-
#ContentType ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字.
-
#FileType ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(biztype = nil, filetype = nil, contenttype = nil, content = nil) ⇒ CreateFinancialLLMTaskRequest
constructor
A new instance of CreateFinancialLLMTaskRequest.
Constructor Details
#initialize(biztype = nil, filetype = nil, contenttype = nil, content = nil) ⇒ CreateFinancialLLMTaskRequest
Returns a new instance of CreateFinancialLLMTaskRequest.
41 42 43 44 45 46 |
# File 'lib/v20201229/models.rb', line 41 def initialize(biztype=nil, filetype=nil, contenttype=nil, content=nil) @BizType = biztype @FileType = filetype @ContentType = contenttype @Content = content end |
Instance Attribute Details
#BizType ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字
39 40 41 |
# File 'lib/v20201229/models.rb', line 39 def BizType @BizType end |
#Content ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字
39 40 41 |
# File 'lib/v20201229/models.rb', line 39 def Content @Content end |
#ContentType ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字
39 40 41 |
# File 'lib/v20201229/models.rb', line 39 def ContentType @ContentType end |
#FileType ⇒ Object
文本限制:Base64解码后的文本长度不超过10000字
39 40 41 |
# File 'lib/v20201229/models.rb', line 39 def FileType @FileType end |
Instance Method Details
#deserialize(params) ⇒ Object
48 49 50 51 52 53 |
# File 'lib/v20201229/models.rb', line 48 def deserialize(params) @BizType = params['BizType'] @FileType = params['FileType'] @ContentType = params['ContentType'] @Content = params['Content'] end |