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

DatetimeRange

import type { DatetimeRange } from "https://aws-api.deno.dev/v0.3/services/licensemanager.ts?docs=full";

Describes a time range, in ISO8601-UTC format.

interface DatetimeRange {
Begin: string;
End?: string | null;
}

§Properties

§
Begin: string
[src]

Start of the time range.

§
End?: string | null
[src]

End of the time range.