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

USD

import type { USD } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Represents an amount of money in United States dollars.

interface USD {
Cents?: number | null;
Dollars?: number | null;
TenthFractionsOfACent?: number | null;
}

§Properties

§
Cents?: number | null
[src]

The fractional portion, in cents, of the amount.

§
Dollars?: number | null
[src]

The whole number of dollars in the amount.

§
TenthFractionsOfACent?: number | null
[src]

Fractions of a cent, in tenths.