
# 查询可组合资产拥有某一集合下子资产数量
根据子资产集合名查询可组合资产拥有该集合下子资产的数量。
- 调用方法
  ```
  public long totalChildTokens(String collectionIndex, String tokenId,String childCollectionIndex) throws Exception
  ```
  
- 参数说明
  
  | 参数                   | 类型     | 说明                                                |
  |:---|:---|:---|
  | collectionIndex      | string | 必填参数，可组合资产的集合唯一标识符，不能重复。以字母开头，支持字母、数字。长度\[3-32\]。 |
  | tokenId              | string | 必填参数，可组合资产的数字资产编号。同一集合内不能重复，取值范围\[0,2\^64)。       |
  | childCollectionIndex | string | 必填参数，子资产的集合唯一标识符，不能重复。以字母开头，支持字母、数字。长度\[3-32\]。   |
     
  
- 返回值
  
  | 类型   | 说明           |
  |:---|:---|
  | long | 指定集合下子资产的数量。 |
     
  
 
