DomainDetailResponse
- Print
- PDF
DomainDetailResponse
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in Classic
These are domain details.
Syntax
The syntax is as follows.
public class DomainDetailResponse {
private Long id;
private String name;
private boolean completeYn;
private String status;
private Long createdDate;
private Long modifiedDate;
private Long recordCount;
private SOA soa;
}
public class SOA {
private String domainName;
private String nameServers;
private Long serial;
private Long refresh;
private Long retry;
private Long expire;
private Long ttl;
}
Field
The following describes the fields.
Field | Type | Required | Description |
---|---|---|---|
id | Long | - | Domain ID |
name | String | - | Domain name |
completeYn | Boolean | - | Domain completion status
|
status | String | - | Domain status
|
createdDate | Long | - | Creation date and time (timestamp) |
modifiedDate | Long | - | Modification date and time (timestamp) |
recordCount | Long | - | Number of records |
soa | Object | - | SOA information |
soa.domainName | String | - | Domain name |
soa.nameServers | String | - | Name server |
soa.serial | Long | - | Serial number |
soa.refresh | Long | - | Refresh |
soa.retry | Long | - | Retry |
soa.expire | Long | - | Expire |
soa.ttl | Long | - | TTL |
Was this article helpful?