Class: TencentCloud::Ess::V20201111::DeleteExtendedServiceAuthInfosRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20201111/models.rb

Overview

DeleteExtendedServiceAuthInfos请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#AgentObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。

  • OPEN_SERVER_SIGN:企业自动签
  • BATCH_SIGN:批量签署
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

Parameters:

  • Operator:

    执行本接口操作的员工信息。

  • UserIds:

    本企业员工的id,需要已实名,正常在职员工

  • ExtendServiceType:

    取值如下所示:

  • Agent:

    代理企业和员工的信息。



8532
8533
8534
# File 'lib/v20201111/models.rb', line 8532

def Agent
  @Agent
end

#ExtendServiceTypeObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。

  • OPEN_SERVER_SIGN:企业自动签
  • BATCH_SIGN:批量签署
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

Parameters:

  • Operator:

    执行本接口操作的员工信息。

  • UserIds:

    本企业员工的id,需要已实名,正常在职员工

  • ExtendServiceType:

    取值如下所示:

  • Agent:

    代理企业和员工的信息。



8532
8533
8534
# File 'lib/v20201111/models.rb', line 8532

def ExtendServiceType
  @ExtendServiceType
end

#OperatorObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。

  • OPEN_SERVER_SIGN:企业自动签
  • BATCH_SIGN:批量签署
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

Parameters:

  • Operator:

    执行本接口操作的员工信息。

  • UserIds:

    本企业员工的id,需要已实名,正常在职员工

  • ExtendServiceType:

    取值如下所示:

  • Agent:

    代理企业和员工的信息。



8532
8533
8534
# File 'lib/v20201111/models.rb', line 8532

def Operator
  @Operator
end

#UserIdsObject

注: 在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。

  • OPEN_SERVER_SIGN:企业自动签
  • BATCH_SIGN:批量签署
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。

Parameters:

  • Operator:

    执行本接口操作的员工信息。

  • UserIds:

    本企业员工的id,需要已实名,正常在职员工

  • ExtendServiceType:

    取值如下所示:

  • Agent:

    代理企业和员工的信息。



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