Class: TencentCloud::Essbasic::V20210526::ArchiveDynamicFlowRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ArchiveDynamicFlowRequest
- Defined in:
- lib/v20210526/models.rb
Overview
ArchiveDynamicFlow请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
-
#FlowId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, flowid = nil) ⇒ ArchiveDynamicFlowRequest
constructor
A new instance of ArchiveDynamicFlowRequest.
Constructor Details
#initialize(agent = nil, flowid = nil) ⇒ ArchiveDynamicFlowRequest
Returns a new instance of ArchiveDynamicFlowRequest.
200 201 202 203 |
# File 'lib/v20210526/models.rb', line 200 def initialize(agent=nil, flowid=nil) @Agent = agent @FlowId = flowid end |
Instance Attribute Details
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
198 199 200 |
# File 'lib/v20210526/models.rb', line 198 def Agent @Agent end |
#FlowId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
198 199 200 |
# File 'lib/v20210526/models.rb', line 198 def FlowId @FlowId end |
Instance Method Details
#deserialize(params) ⇒ Object
205 206 207 208 209 210 211 |
# File 'lib/v20210526/models.rb', line 205 def deserialize(params) unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @FlowId = params['FlowId'] end |