Class: TencentCloud::Essbasic::V20210526::ChannelCancelMultiFlowSignQRCodeRequest

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

Overview

ChannelCancelMultiFlowSignQRCode请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, qrcodeid = nil, operator = nil) ⇒ ChannelCancelMultiFlowSignQRCodeRequest

Returns a new instance of ChannelCancelMultiFlowSignQRCodeRequest.



922
923
924
925
926
# File 'lib/v20210526/models.rb', line 922

def initialize(agent=nil, qrcodeid=nil, operator=nil)
  @Agent = agent
  @QrCodeId = qrcodeid
  @Operator = operator
end

Instance Attribute Details

#AgentObject

此接口下面信息必填。

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

Parameters:



917
918
919
# File 'lib/v20210526/models.rb', line 917

def Agent
  @Agent
end

#OperatorObject

此接口下面信息必填。

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

Parameters:



917
918
919
# File 'lib/v20210526/models.rb', line 917

def Operator
  @Operator
end

#QrCodeIdObject

此接口下面信息必填。

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

Parameters:



917
918
919
# File 'lib/v20210526/models.rb', line 917

def QrCodeId
  @QrCodeId
end

Instance Method Details

#deserialize(params) ⇒ Object



928
929
930
931
932
933
934
935
936
937
938
# File 'lib/v20210526/models.rb', line 928

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