--- title: "DomainResponse" slug: "common-vapidatatype-domainresponse" updated: 2026-07-23T09:04:11Z published: 2026-07-23T09:04:11Z canonical: "api.ncloud-docs.com/common-vapidatatype-domainresponse" --- > ## 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. # DomainResponse Classic/VPC 환경에서 이용 가능합니다. 도메인 정보입니다. ## 구문 구문은 다음과 같습니다. ``` public class DomainResponse { private Long id; private String name; private boolean completeYn; private String status; } ``` ## 필드 필드에 대한 설명은 다음과 같습니다. | 필드 | 타입 | 필수 여부 | 설명 | | --- | --- | --- | --- | | `id` | Long | - | 도메인 ID | | `name` | String | - | 도메인 이름 | | `completeYn` | Boolean | - | 도메인 적용 완료 여부 - `true` \| `false` | | `status` | String | - | 도메인 상태 - `PROCESS` \| `FAIL` \| `SUCCESS` - `PROCESS`: 진행 - `FAIL`: 미완료 - `SUCCESS`: 완료 |