Class: TencentCloud::Ess::V20201111::DescribeExtendedServiceAuthDetailRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeExtendedServiceAuthDetailRequest
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeExtendedServiceAuthDetail请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。如下所示:- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
-
#ExtendServiceType ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。如下所示:- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
-
#Limit ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。如下所示:- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
-
#Offset ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。如下所示:- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
-
#Operator ⇒ Object
注:
在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。如下所示:- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, extendservicetype = nil, agent = nil, limit = nil, offset = nil) ⇒ DescribeExtendedServiceAuthDetailRequest
constructor
A new instance of DescribeExtendedServiceAuthDetailRequest.
Constructor Details
#initialize(operator = nil, extendservicetype = nil, agent = nil, limit = nil, offset = nil) ⇒ DescribeExtendedServiceAuthDetailRequest
Returns a new instance of DescribeExtendedServiceAuthDetailRequest.
9971 9972 9973 9974 9975 9976 9977 |
# File 'lib/v20201111/models.rb', line 9971 def initialize(operator=nil, extendservicetype=nil, agent=nil, limit=nil, offset=nil) @Operator = operator @ExtendServiceType = extendservicetype @Agent = agent @Limit = limit @Offset = offset end |
Instance Attribute Details
#Agent ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
如下所示:
- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
9969 9970 9971 |
# File 'lib/v20201111/models.rb', line 9969 def Agent @Agent end |
#ExtendServiceType ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
如下所示:
- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
9969 9970 9971 |
# File 'lib/v20201111/models.rb', line 9969 def ExtendServiceType @ExtendServiceType end |
#Limit ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
如下所示:
- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
9969 9970 9971 |
# File 'lib/v20201111/models.rb', line 9969 def Limit @Limit end |
#Offset ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
如下所示:
- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
9969 9970 9971 |
# File 'lib/v20201111/models.rb', line 9969 def Offset @Offset end |
#Operator ⇒ Object
注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。
如下所示:
- OPEN_SERVER_SIGN:企业静默签署
- BATCH_SIGN:批量签署
9969 9970 9971 |
# File 'lib/v20201111/models.rb', line 9969 def Operator @Operator end |
Instance Method Details
#deserialize(params) ⇒ Object
9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 |
# File 'lib/v20201111/models.rb', line 9979 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end @ExtendServiceType = params['ExtendServiceType'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end @Limit = params['Limit'] @Offset = params['Offset'] end |