Class: TencentCloud::Essbasic::V20210526::ChannelCreateFlowRemindsRequest

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

Overview

ChannelCreateFlowReminds请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, flowids = nil) ⇒ ChannelCreateFlowRemindsRequest

Returns a new instance of ChannelCreateFlowRemindsRequest.



2242
2243
2244
2245
# File 'lib/v20210526/models.rb', line 2242

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

Instance Attribute Details

#AgentObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证

Parameters:

  • FlowIds:

    需执行催办的合同流程ID数组,最多支持100个。



2240
2241
2242
# File 'lib/v20210526/models.rb', line 2240

def Agent
  @Agent
end

#FlowIdsObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证

Parameters:

  • FlowIds:

    需执行催办的合同流程ID数组,最多支持100个。



2240
2241
2242
# File 'lib/v20210526/models.rb', line 2240

def FlowIds
  @FlowIds
end

Instance Method Details

#deserialize(params) ⇒ Object



2247
2248
2249
2250
2251
2252
2253
# File 'lib/v20210526/models.rb', line 2247

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