Class: TencentCloud::Essbasic::V20210526::DescribeExtendedServiceAuthDetailRequest

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

Overview

DescribeExtendedServiceAuthDetail请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent = nil, extendservicetype = nil, limit = nil, offset = nil) ⇒ DescribeExtendedServiceAuthDetailRequest

Returns a new instance of DescribeExtendedServiceAuthDetailRequest.



8065
8066
8067
8068
8069
8070
# File 'lib/v20210526/models.rb', line 8065

def initialize(agent=nil, extendservicetype=nil, limit=nil, offset=nil)
  @Agent = agent
  @ExtendServiceType = extendservicetype
  @Limit = limit
  @Offset = offset
end

Instance Attribute Details

#AgentObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 如下所示:
  • AUTO_SIGN:企业静默签署
  • BATCH_SIGN:批量签署

Parameters:

  • ExtendServiceType:

    要查询的扩展服务类型。

  • Limit:

    指定每页返回的数据条数,和Offset参数配合使用。 注:1.默认值为20,单页做大值为200。

  • Offset:

    查询结果分页返回,指定从第几页返回数据,和Limit参数配合使用。 注:1.offset从0开始,即第一页为0。 2.默认从第一页返回。



8063
8064
8065
# File 'lib/v20210526/models.rb', line 8063

def Agent
  @Agent
end

#ExtendServiceTypeObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 如下所示:
  • AUTO_SIGN:企业静默签署
  • BATCH_SIGN:批量签署

Parameters:

  • ExtendServiceType:

    要查询的扩展服务类型。

  • Limit:

    指定每页返回的数据条数,和Offset参数配合使用。 注:1.默认值为20,单页做大值为200。

  • Offset:

    查询结果分页返回,指定从第几页返回数据,和Limit参数配合使用。 注:1.offset从0开始,即第一页为0。 2.默认从第一页返回。



8063
8064
8065
# File 'lib/v20210526/models.rb', line 8063

def ExtendServiceType
  @ExtendServiceType
end

#LimitObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 如下所示:
  • AUTO_SIGN:企业静默签署
  • BATCH_SIGN:批量签署

Parameters:

  • ExtendServiceType:

    要查询的扩展服务类型。

  • Limit:

    指定每页返回的数据条数,和Offset参数配合使用。 注:1.默认值为20,单页做大值为200。

  • Offset:

    查询结果分页返回,指定从第几页返回数据,和Limit参数配合使用。 注:1.offset从0开始,即第一页为0。 2.默认从第一页返回。



8063
8064
8065
# File 'lib/v20210526/models.rb', line 8063

def Limit
  @Limit
end

#OffsetObject

此接口下面信息必填。

  • 渠道应用标识: Agent.AppId
  • 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
  • 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
第三方平台子客企业和员工必须已经经过实名认证 如下所示:
  • AUTO_SIGN:企业静默签署
  • BATCH_SIGN:批量签署

Parameters:

  • ExtendServiceType:

    要查询的扩展服务类型。

  • Limit:

    指定每页返回的数据条数,和Offset参数配合使用。 注:1.默认值为20,单页做大值为200。

  • Offset:

    查询结果分页返回,指定从第几页返回数据,和Limit参数配合使用。 注:1.offset从0开始,即第一页为0。 2.默认从第一页返回。



8063
8064
8065
# File 'lib/v20210526/models.rb', line 8063

def Offset
  @Offset
end

Instance Method Details

#deserialize(params) ⇒ Object



8072
8073
8074
8075
8076
8077
8078
8079
8080
# File 'lib/v20210526/models.rb', line 8072

def deserialize(params)
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @ExtendServiceType = params['ExtendServiceType']
  @Limit = params['Limit']
  @Offset = params['Offset']
end