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