Class: TencentCloud::Essbasic::V20210526::ChannelVerifyPdfRequest

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

Overview

ChannelVerifyPdf请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#AgentObject

此接口下面信息必填。

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

Parameters:

  • Operator:

    暂未开放



5001
5002
5003
# File 'lib/v20210526/models.rb', line 5001

def Agent
  @Agent
end

#FlowIdObject

此接口下面信息必填。

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

Parameters:

  • Operator:

    暂未开放



5001
5002
5003
# File 'lib/v20210526/models.rb', line 5001

def FlowId
  @FlowId
end

#OperatorObject

此接口下面信息必填。

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

Parameters:

  • Operator:

    暂未开放



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