Class: TencentCloud::Ess::V20201111::BindEmployeeUserIdWithClientOpenIdRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::BindEmployeeUserIdWithClientOpenIdRequest
- Defined in:
- lib/v20201111/models.rb
Overview
BindEmployeeUserIdWithClientOpenId请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。. -
#OpenId ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。. -
#Operator ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。. -
#UserId ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, userid = nil, openid = nil, agent = nil) ⇒ BindEmployeeUserIdWithClientOpenIdRequest
constructor
A new instance of BindEmployeeUserIdWithClientOpenIdRequest.
Constructor Details
#initialize(operator = nil, userid = nil, openid = nil, agent = nil) ⇒ BindEmployeeUserIdWithClientOpenIdRequest
Returns a new instance of BindEmployeeUserIdWithClientOpenIdRequest.
955 956 957 958 959 960 |
# File 'lib/v20201111/models.rb', line 955 def initialize(operator=nil, userid=nil, openid=nil, agent=nil) @Operator = operator @UserId = userid @OpenId = openid @Agent = agent end |
Instance Attribute Details
#Agent ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
953 954 955 |
# File 'lib/v20201111/models.rb', line 953 def Agent @Agent end |
#OpenId ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
953 954 955 |
# File 'lib/v20201111/models.rb', line 953 def OpenId @OpenId end |
#Operator ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
953 954 955 |
# File 'lib/v20201111/models.rb', line 953 def Operator @Operator end |
#UserId ⇒ Object
通过DescribeIntegrationEmployees接口获取,也可登录腾讯电子签控制台查看
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
953 954 955 |
# File 'lib/v20201111/models.rb', line 953 def UserId @UserId end |
Instance Method Details
#deserialize(params) ⇒ Object
962 963 964 965 966 967 968 969 970 971 972 973 |
# File 'lib/v20201111/models.rb', line 962 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end @UserId = params['UserId'] @OpenId = params['OpenId'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end end |