Class: TencentCloud::Essbasic::V20210526::ChannelVerifyPdfRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelVerifyPdfRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelVerifyPdf请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#FlowId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowid = nil, agent = nil, operator = nil) ⇒ ChannelVerifyPdfRequest
constructor
A new instance of ChannelVerifyPdfRequest.
Constructor Details
#initialize(flowid = nil, agent = nil, operator = nil) ⇒ ChannelVerifyPdfRequest
Returns a new instance of ChannelVerifyPdfRequest.
5006 5007 5008 5009 5010 |
# File 'lib/v20210526/models.rb', line 5006 def initialize(flowid=nil, agent=nil, operator=nil) @FlowId = flowid @Agent = agent @Operator = operator end |
Instance Attribute Details
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
5001 5002 5003 |
# File 'lib/v20210526/models.rb', line 5001 def Agent @Agent end |
#FlowId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
5001 5002 5003 |
# File 'lib/v20210526/models.rb', line 5001 def FlowId @FlowId end |
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
5001 5002 5003 |
# File 'lib/v20210526/models.rb', line 5001 def Operator @Operator end |
Instance Method Details
#deserialize(params) ⇒ Object
5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 |
# File 'lib/v20210526/models.rb', line 5012 def deserialize(params) @FlowId = params['FlowId'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end end |