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

Money

import type { Money } from "https://googleapis.deno.dev/v1/walletobjects:v1.ts";
interface Money {
currencyCode?: string;
kind?: string;
micros?: bigint;
}

§Properties

§
currencyCode?: string
[src]

The currency code, such as "USD" or "EUR."

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "walletobjects#money".

§
micros?: bigint
[src]

The unit of money amount in micros. For example, $1 USD would be represented as 1000000 micros.