Class: TencentCloud::Ess::V20201111::CreateOrganizationInfoChangeUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateOrganizationInfoChangeUrlRequest
- Defined in:
- lib/v20201111/models.rb
Overview
CreateOrganizationInfoChangeUrl请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。- 1:企业超管变更
- 2:企业基础信息变更
-
#ChangeType ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。- 1:企业超管变更
- 2:企业基础信息变更
-
#Operator ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。- 1:企业超管变更
- 2:企业基础信息变更
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, changetype = nil, agent = nil) ⇒ CreateOrganizationInfoChangeUrlRequest
constructor
A new instance of CreateOrganizationInfoChangeUrlRequest.
Constructor Details
#initialize(operator = nil, changetype = nil, agent = nil) ⇒ CreateOrganizationInfoChangeUrlRequest
Returns a new instance of CreateOrganizationInfoChangeUrlRequest.
6633 6634 6635 6636 6637 |
# File 'lib/v20201111/models.rb', line 6633 def initialize(operator=nil, changetype=nil, agent=nil) @Operator = operator @ChangeType = changetype @Agent = agent end |
Instance Attribute Details
#Agent ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
- **1**:企业超管变更
- **2**:企业基础信息变更
6631 6632 6633 |
# File 'lib/v20201111/models.rb', line 6631 def Agent @Agent end |
#ChangeType ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
- **1**:企业超管变更
- **2**:企业基础信息变更
6631 6632 6633 |
# File 'lib/v20201111/models.rb', line 6631 def ChangeType @ChangeType end |
#Operator ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
- **1**:企业超管变更
- **2**:企业基础信息变更
6631 6632 6633 |
# File 'lib/v20201111/models.rb', line 6631 def Operator @Operator end |
Instance Method Details
#deserialize(params) ⇒ Object
6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 |
# File 'lib/v20201111/models.rb', line 6639 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end @ChangeType = params['ChangeType'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end end |