Class: TencentCloud::Ess::V20201111::CreateBatchCancelFlowUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateBatchCancelFlowUrlRequest
- Defined in:
- lib/v20201111/models.rb
Overview
CreateBatchCancelFlowUrl请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。 列表中的流程(合同)编号不要重复. -
#FlowIds ⇒ Object
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。 列表中的流程(合同)编号不要重复. -
#Operator ⇒ Object
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。 列表中的流程(合同)编号不要重复.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, flowids = nil, agent = nil) ⇒ CreateBatchCancelFlowUrlRequest
constructor
A new instance of CreateBatchCancelFlowUrlRequest.
Constructor Details
#initialize(operator = nil, flowids = nil, agent = nil) ⇒ CreateBatchCancelFlowUrlRequest
Returns a new instance of CreateBatchCancelFlowUrlRequest.
2044 2045 2046 2047 2048 |
# File 'lib/v20201111/models.rb', line 2044 def initialize(operator=nil, flowids=nil, agent=nil) @Operator = operator @FlowIds = flowids @Agent = agent end |
Instance Attribute Details
#Agent ⇒ Object
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
列表中的流程(合同)编号不要重复.
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
2042 2043 2044 |
# File 'lib/v20201111/models.rb', line 2042 def Agent @Agent end |
#FlowIds ⇒ Object
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
列表中的流程(合同)编号不要重复.
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
2042 2043 2044 |
# File 'lib/v20201111/models.rb', line 2042 def FlowIds @FlowIds end |
#Operator ⇒ Object
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
列表中的流程(合同)编号不要重复.
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
2042 2043 2044 |
# File 'lib/v20201111/models.rb', line 2042 def Operator @Operator end |
Instance Method Details
#deserialize(params) ⇒ Object
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 |
# File 'lib/v20201111/models.rb', line 2050 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end @FlowIds = params['FlowIds'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end end |