Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AcmeTxtRecord

import type { AcmeTxtRecord } from "https://googleapis.deno.dev/v1/acmedns:v1.ts";

The TXT record message that represents an ACME DNS-01 challenge.

interface AcmeTxtRecord {
digest?: string;
fqdn?: string;
readonly updateTime?: Date;
}

§Properties

§
digest?: string
[src]

Holds the ACME challenge data put in the TXT record. This will be checked to be a valid TXT record data entry.

§
fqdn?: string
[src]

The domain/subdomain for the record. In a request, this MAY be Unicode or Punycode. In a response, this will be in Unicode. The fqdn MUST contain the root_domain field on the request.

§
readonly updateTime?: Date
[src]

Output only. The time when this record was last updated. This will be in UTC time.