DnsRecordResponse

data class DnsRecordResponse(val name: String, val ttl: Int, val type: String, val value: String)

A class that represents a VerificationStatus record.

Constructors

Link copied to clipboard
constructor(name: String, ttl: Int, type: String, value: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Name of the DNS record.

Link copied to clipboard
val ttl: Int

Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.

Link copied to clipboard

Type of the DNS record. Example: TXT

Link copied to clipboard

Value of the DNS record.