Class: TencentCloud::Ess::V20201111::DeleteExtendedServiceAuthInfosRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DeleteExtendedServiceAuthInfosRequest
- Defined in:
- lib/v20201111/models.rb
Overview
DeleteExtendedServiceAuthInfos请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
-
#ExtendServiceType ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
-
#Operator ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
-
#UserIds ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, userids = nil, extendservicetype = nil, agent = nil) ⇒ DeleteExtendedServiceAuthInfosRequest
constructor
A new instance of DeleteExtendedServiceAuthInfosRequest.
Constructor Details
#initialize(operator = nil, userids = nil, extendservicetype = nil, agent = nil) ⇒ DeleteExtendedServiceAuthInfosRequest
Returns a new instance of DeleteExtendedServiceAuthInfosRequest.
8534 8535 8536 8537 8538 8539 |
# File 'lib/v20201111/models.rb', line 8534 def initialize(operator=nil, userids=nil, extendservicetype=nil, agent=nil) @Operator = operator @UserIds = userids @ExtendServiceType = extendservicetype @Agent = agent end |
Instance Attribute Details
#Agent ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
8532 8533 8534 |
# File 'lib/v20201111/models.rb', line 8532 def Agent @Agent end |
#ExtendServiceType ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
8532 8533 8534 |
# File 'lib/v20201111/models.rb', line 8532 def ExtendServiceType @ExtendServiceType end |
#Operator ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
8532 8533 8534 |
# File 'lib/v20201111/models.rb', line 8532 def Operator @Operator end |
#UserIds ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
- OPEN_SERVER_SIGN:企业自动签
- BATCH_SIGN:批量签署
8532 8533 8534 |
# File 'lib/v20201111/models.rb', line 8532 def UserIds @UserIds end |
Instance Method Details
#deserialize(params) ⇒ Object
8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 |
# File 'lib/v20201111/models.rb', line 8541 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end @UserIds = params['UserIds'] @ExtendServiceType = params['ExtendServiceType'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end end |