Class: TencentCloud::Essbasic::V20210526::ChannelDescribeFlowComponentsRequest

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

Overview

ChannelDescribeFlowComponents请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, flowid = nil) ⇒ ChannelDescribeFlowComponentsRequest

Returns a new instance of ChannelDescribeFlowComponentsRequest.



4125
4126
4127
4128
# File 'lib/v20210526/models.rb', line 4125

def initialize(agent=nil, flowid=nil)
  @Agent = agent
  @FlowId = flowid
end

Instance Attribute Details

#AgentObject

此接口下面信息必填。

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

Parameters:

  • 需要获取填写控件填写内容的合同流程ID



4123
4124
4125
# File 'lib/v20210526/models.rb', line 4123

def Agent
  @Agent
end

#FlowIdObject

此接口下面信息必填。

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

Parameters:

  • 需要获取填写控件填写内容的合同流程ID



4123
4124
4125
# File 'lib/v20210526/models.rb', line 4123

def FlowId
  @FlowId
end

Instance Method Details

#deserialize(params) ⇒ Object



4130
4131
4132
4133
4134
4135
4136
# File 'lib/v20210526/models.rb', line 4130

def deserialize(params)
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @FlowId = params['FlowId']
end