interface DomainAvailability {
    availableActions: DomainAvailabilityAction[];
    canCreateHosting: boolean;
    name: string;
    price?: Money;
    status: DomainAvailabilityStatus;
    zoneName: string;
}

Properties

availableActions: DomainAvailabilityAction[]

A list of actions that can be performed on the domain.

canCreateHosting: boolean

Whether a hosting can be created for this domain.

name: string

Fully qualified domain name (FQDN).

price?: Money

Price for registering the domain.

Availability status of the domain.

zoneName: string

DNS zone associated with the domain.