Class: TencentCloud::Essbasic::V20210526::ChannelCreateBatchCancelFlowUrlRequest

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

Overview

ChannelCreateBatchCancelFlowUrl请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ChannelCreateBatchCancelFlowUrlRequest.



1033
1034
1035
1036
1037
# File 'lib/v20210526/models.rb', line 1033

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
第三方平台子客企业和员工必须已经过实名认证

Parameters:

  • FlowIds:

    要撤销的合同流程ID列表,最多100个,超过100不处理

  • Operator:

    暂未开放



1028
1029
1030
# File 'lib/v20210526/models.rb', line 1028

def Agent
  @Agent
end

#FlowIdsObject

此接口下面信息必填。

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

Parameters:

  • FlowIds:

    要撤销的合同流程ID列表,最多100个,超过100不处理

  • Operator:

    暂未开放



1028
1029
1030
# File 'lib/v20210526/models.rb', line 1028

def FlowIds
  @FlowIds
end

#OperatorObject

此接口下面信息必填。

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

Parameters:

  • FlowIds:

    要撤销的合同流程ID列表,最多100个,超过100不处理

  • Operator:

    暂未开放



1028
1029
1030
# File 'lib/v20210526/models.rb', line 1028

def Operator
  @Operator
end

Instance Method Details

#deserialize(params) ⇒ Object



1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
# File 'lib/v20210526/models.rb', line 1039

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