Class: TencentCloud::Essbasic::V20210526::ChannelCreateFlowGroupByFilesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelCreateFlowGroupByFilesRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelCreateFlowGroupByFiles请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- VerifyCheck:人脸识别(默认)
- MobileCheck:手机号验证
-
#ApproverVerifyType ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- VerifyCheck:人脸识别(默认)
- MobileCheck:手机号验证
-
#FlowFileInfos ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- VerifyCheck:人脸识别(默认)
- MobileCheck:手机号验证
-
#FlowGroupName ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- VerifyCheck:人脸识别(默认)
- MobileCheck:手机号验证
-
#FlowGroupOptions ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- VerifyCheck:人脸识别(默认)
- MobileCheck:手机号验证
-
#Operator ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- VerifyCheck:人脸识别(默认)
- MobileCheck:手机号验证
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowfileinfos = nil, flowgroupname = nil, agent = nil, approververifytype = nil, flowgroupoptions = nil, operator = nil) ⇒ ChannelCreateFlowGroupByFilesRequest
constructor
A new instance of ChannelCreateFlowGroupByFilesRequest.
Constructor Details
#initialize(flowfileinfos = nil, flowgroupname = nil, agent = nil, approververifytype = nil, flowgroupoptions = nil, operator = nil) ⇒ ChannelCreateFlowGroupByFilesRequest
Returns a new instance of ChannelCreateFlowGroupByFilesRequest.
2057 2058 2059 2060 2061 2062 2063 2064 |
# File 'lib/v20210526/models.rb', line 2057 def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, =nil, operator=nil) @FlowFileInfos = flowfileinfos @FlowGroupName = flowgroupname @Agent = agent @ApproverVerifyType = approververifytype @FlowGroupOptions = @Operator = operator end |
Instance Attribute Details
#Agent ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- **VerifyCheck**:人脸识别(默认)
- **MobileCheck**:手机号验证
2052 2053 2054 |
# File 'lib/v20210526/models.rb', line 2052 def Agent @Agent end |
#ApproverVerifyType ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- **VerifyCheck**:人脸识别(默认)
- **MobileCheck**:手机号验证
2052 2053 2054 |
# File 'lib/v20210526/models.rb', line 2052 def ApproverVerifyType @ApproverVerifyType end |
#FlowFileInfos ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- **VerifyCheck**:人脸识别(默认)
- **MobileCheck**:手机号验证
2052 2053 2054 |
# File 'lib/v20210526/models.rb', line 2052 def FlowFileInfos @FlowFileInfos end |
#FlowGroupName ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- **VerifyCheck**:人脸识别(默认)
- **MobileCheck**:手机号验证
2052 2053 2054 |
# File 'lib/v20210526/models.rb', line 2052 def FlowGroupName @FlowGroupName end |
#FlowGroupOptions ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- **VerifyCheck**:人脸识别(默认)
- **MobileCheck**:手机号验证
2052 2053 2054 |
# File 'lib/v20210526/models.rb', line 2052 def FlowGroupOptions @FlowGroupOptions end |
#Operator ⇒ Object
合同的发起企业和发起人必需已经完成实名,并加入企业
- **VerifyCheck**:人脸识别(默认)
- **MobileCheck**:手机号验证
2052 2053 2054 |
# File 'lib/v20210526/models.rb', line 2052 def Operator @Operator end |
Instance Method Details
#deserialize(params) ⇒ Object
2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 |
# File 'lib/v20210526/models.rb', line 2066 def deserialize(params) unless params['FlowFileInfos'].nil? @FlowFileInfos = [] params['FlowFileInfos'].each do |i| flowfileinfo_tmp = FlowFileInfo.new flowfileinfo_tmp.deserialize(i) @FlowFileInfos << flowfileinfo_tmp end end @FlowGroupName = params['FlowGroupName'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @ApproverVerifyType = params['ApproverVerifyType'] unless params['FlowGroupOptions'].nil? @FlowGroupOptions = FlowGroupOptions.new @FlowGroupOptions.deserialize(params['FlowGroupOptions']) end unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end end |