Class: TencentCloud::Essbasic::V20210526::ChannelCreateBatchCancelFlowUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelCreateBatchCancelFlowUrlRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelCreateBatchCancelFlowUrl请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
-
#FlowIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
-
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, flowids = nil, operator = nil) ⇒ ChannelCreateBatchCancelFlowUrlRequest
constructor
A new instance of ChannelCreateBatchCancelFlowUrlRequest.
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
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
1028 1029 1030 |
# File 'lib/v20210526/models.rb', line 1028 def Agent @Agent end |
#FlowIds ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
1028 1029 1030 |
# File 'lib/v20210526/models.rb', line 1028 def FlowIds @FlowIds end |
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
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 |