---
title: "RecordResponse"
slug: "common-apidatatype-recordresponse"
updated: 2026-04-23T08:55:30Z
published: 2026-04-23T09:02:14Z
---

> ## 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.

# RecordResponse

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

레코드 정보입니다.

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

```Java
public class RecordResponse { 
	private Long id;
	private String name;
	private String host;
	private String type;
	private String content;
	private Long ttl;
	private Long aliasId;
	private Long lbId;
	private String domainName;
	private Long createdDate;
	private Long modifiedDate;
	private boolean defaultYn;
	private boolean applyYn;
	private boolean aliasYn;
	private String lbPlatform;
	private boolean lbYn;
	private boolean delYn;
}

```

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

| 필드                                      | 타입    | 필수 여부 | 설명                                |
| ------------------------------ | ------- | ------ | ----------------------------------------------- |
| `id` | Long   | - | 레코드 ID |
| `name` | String  | - | 레코드 이름|
| `host` | String  | - | 호스트  |
| `type` | String | - | 레코드 유형 |
| `content` | String | - | 레코드 정보 |
| `ttl` | Long| - | TTL |
| `aliasId` | Long | - | 참조하는 레코드 ID |
| `lbId` | Long | - | 참조하는 로드 밸런서 레코드 ID |
| `domainName` | String | - | 도메인 이름|
| `createdDate` | Long | - | 생성 일시(Timestamp) |
| `modifiedDate` | Long | - | 수정 일시(Timestamp) |
| `defaultYn` | Boolean | - | 기본 레코드 타입 여부<ul><li>`true` \| `false`</li></ul> |
| `applyYn` | Boolean | - | 레코드 적용 여부<ul><li>`true` \| `false`</li></ul> |
| `aliasYn` | Boolean | - | 레코드 참조 여부 <ul><li>`true` \| `false`</li></ul>|
| `lbPlatform` | String | - | 로드 밸런서 레코드 플랫폼 구분<ul><li>`VPC` \| `CLASSIC`</li></ul> |
| `lbYn` | Boolean | - | 로드 밸런서 레코드 참조 여부<ul><li>`true` \| `false`</li></ul> |
| `delYn` | Boolean | - | 로드 밸런서 레코드 삭제 여부<ul><li>`true` \| `false`</li></ul>|
