Class: TencentCloud::Essbasic::V20210526::CreateLegalSealQrCodeRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::CreateLegalSealQrCodeRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20210526/models.rb
Overview
CreateLegalSealQrCode请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
-
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
-
#Organization ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, operator = nil, organization = nil) ⇒ CreateLegalSealQrCodeRequest
constructor
A new instance of CreateLegalSealQrCodeRequest.
Constructor Details
#initialize(agent = nil, operator = nil, organization = nil) ⇒ CreateLegalSealQrCodeRequest
Returns a new instance of CreateLegalSealQrCodeRequest.
6821 6822 6823 6824 6825 |
# File 'lib/v20210526/models.rb', line 6821 def initialize(agent=nil, operator=nil, organization=nil) @Agent = agent @Operator = operator @Organization = organization end |
Instance Attribute Details
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
6814 6815 6816 |
# File 'lib/v20210526/models.rb', line 6814 def Agent @Agent end |
#Operator ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
6814 6815 6816 |
# File 'lib/v20210526/models.rb', line 6814 def Operator @Operator end |
#Organization ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.ProxyOperator.OpenId
6814 6815 6816 |
# File 'lib/v20210526/models.rb', line 6814 def Organization @Organization end |
Instance Method Details
#deserialize(params) ⇒ Object
6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 |
# File 'lib/v20210526/models.rb', line 6827 def deserialize(params) unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end unless params['Organization'].nil? @Organization = OrganizationInfo.new @Organization.deserialize(params['Organization']) end end |