Class: TencentCloud::Tms::V20201229::CreateFinancialLLMTaskRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20201229/models.rb

Overview

CreateFinancialLLMTask请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#BizTypeObject

文本限制:Base64解码后的文本长度不超过10000字



39
40
41
# File 'lib/v20201229/models.rb', line 39

def BizType
  @BizType
end

#ContentObject

文本限制:Base64解码后的文本长度不超过10000字



39
40
41
# File 'lib/v20201229/models.rb', line 39

def Content
  @Content
end

#ContentTypeObject

文本限制:Base64解码后的文本长度不超过10000字



39
40
41
# File 'lib/v20201229/models.rb', line 39

def ContentType
  @ContentType
end

#FileTypeObject

文本限制: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