import type * as Square from "../index"; export interface V1Money { /** * Amount in the lowest denominated value of this Currency. E.g. in USD * these are cents, in JPY they are Yen (which do not have a 'cent' concept). */ amount?: number | null; /** * See [Currency](#type-currency) for possible values */ currencyCode?: Square.Currency; }