Class: TencentCloud::Essbasic::V20210526::ChannelCreateBoundFlowsRequest

Inherits:
Common::AbstractModel
  • Object
show all
Extended by:
Gem::Deprecate
Defined in:
lib/v20210526/models.rb

Overview

ChannelCreateBoundFlows请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, flowids = nil, operator = nil) ⇒ ChannelCreateBoundFlowsRequest

Returns a new instance of ChannelCreateBoundFlowsRequest.



1453
1454
1455
1456
1457
# File 'lib/v20210526/models.rb', line 1453

def initialize(agent=nil, flowids=nil, operator=nil)
  @Agent = agent
  @FlowIds = flowids
  @Operator = operator
end

Instance Attribute Details

#AgentObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证, 合同会领取给对应的Agent.ProxyOperator.OpenId指定的员工来处理

Parameters:

  • FlowIds:

    需要领取的合同流程的ID列表

  • Operator:

    暂未开放



1448
1449
1450
# File 'lib/v20210526/models.rb', line 1448

def Agent
  @Agent
end

#FlowIdsObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证, 合同会领取给对应的Agent.ProxyOperator.OpenId指定的员工来处理

Parameters:

  • FlowIds:

    需要领取的合同流程的ID列表

  • Operator:

    暂未开放



1448
1449
1450
# File 'lib/v20210526/models.rb', line 1448

def FlowIds
  @FlowIds
end

#OperatorObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证, 合同会领取给对应的Agent.ProxyOperator.OpenId指定的员工来处理

Parameters:

  • FlowIds:

    需要领取的合同流程的ID列表

  • Operator:

    暂未开放



1448
1449
1450
# File 'lib/v20210526/models.rb', line 1448

def Operator
  @Operator
end

Instance Method Details

#deserialize(params) ⇒ Object



1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
# File 'lib/v20210526/models.rb', line 1459

def deserialize(params)
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @FlowIds = params['FlowIds']
  unless params['Operator'].nil?
    @Operator = UserInfo.new
    @Operator.deserialize(params['Operator'])
  end
end