---
title: "TemplateStructureResponse"
slug: "common-vapidatatype-nestemplatestructurecontent"
updated: 2026-04-23T08:54:47Z
published: 2026-04-23T09:01:54Z
canonical: "api.ncloud-docs.com/common-vapidatatype-nestemplatestructurecontent"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# TemplateStructureResponse

<p class="platform-info type-classic-vpc">Classic/VPC 환경에서 이용 가능합니다.</p>

템플릿 구조 조회 내용입니다.

## 구문 <a name="구문"></a>
구문은 다음과 같습니다.

```Java
private Long sid;
private Long parentSid;
private NesDateTime createDate;
private String name;
private Boolean isCategory;
private Boolean isUse;
private List subCategoris;
private List templates;
```

## 필드 <a name="필드"></a>
필드에 대한 설명은 다음과 같습니다.

| 필드            | 타입 | 필수 여부                                    | 설명                                                                                                                             |
|-----------------|-----------|-----------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
| `sid`       | Long       | Required                                         | 템플릿 혹은 카테고리의 SID |
| `parentSid`     | Long        | Required         | 부모 카테고리의 SID <ul><li>-1인 경우 최상위 카테고리           |
| `createDate`    | [NesDateTime](/docs/common-vapidatatype-nesdatetime)   | Required    | 생성 시간     |
| `name`   | String        | Required                                            | 템플릿 혹은 카테고리의 이름           |
| `isCategory`    | Boolean        | Required | 카테고리 여부 <ul><li>`true` \| `false`<ul><li>`true`: 카테고리<li>`false`: 템플릿</li></ul>         |
| `isUse`     | Boolean       | Required        | 사용 여부  <ul><li>`true` \| `false`</li></ul> |
| `subCategoris`     | List&lt;[TemplateStructureResponse](/docs/common-vapidatatype-nestemplatestructurecontent)&gt;       | Optional         | 하위 카테고리      |
| `templates`        | List&lt;[TemplateStructureResponse](/docs/common-vapidatatype-nestemplatestructurecontent)&gt;         | Optional    | 하위 템플릿    |
