Class: TencentCloud::Essbasic::V20210526::CreateEmployeeChangeUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::CreateEmployeeChangeUrlRequest
- Defined in:
- lib/v20210526/models.rb
Overview
CreateEmployeeChangeUrl请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#NewMobile ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
-
#OpenId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agent = nil, openid = nil, newmobile = nil) ⇒ CreateEmployeeChangeUrlRequest
constructor
A new instance of CreateEmployeeChangeUrlRequest.
Constructor Details
#initialize(agent = nil, openid = nil, newmobile = nil) ⇒ CreateEmployeeChangeUrlRequest
Returns a new instance of CreateEmployeeChangeUrlRequest.
6185 6186 6187 6188 6189 |
# File 'lib/v20210526/models.rb', line 6185 def initialize(agent=nil, openid=nil, newmobile=nil) @Agent = agent @OpenId = openid @NewMobile = newmobile end |
Instance Attribute Details
#Agent ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
6183 6184 6185 |
# File 'lib/v20210526/models.rb', line 6183 def Agent @Agent end |
#NewMobile ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
6183 6184 6185 |
# File 'lib/v20210526/models.rb', line 6183 def NewMobile @NewMobile end |
#OpenId ⇒ Object
此接口下面信息必填。
- 渠道应用标识: Agent.AppId
- 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
- 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
6183 6184 6185 |
# File 'lib/v20210526/models.rb', line 6183 def OpenId @OpenId end |
Instance Method Details
#deserialize(params) ⇒ Object
6191 6192 6193 6194 6195 6196 6197 6198 |
# File 'lib/v20210526/models.rb', line 6191 def deserialize(params) unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @OpenId = params['OpenId'] @NewMobile = params['NewMobile'] end |