import type * as Square from "../index"; /** * A rounding adjustment of the money being returned. Commonly used to apply cash rounding * when the minimum unit of the account is smaller than the lowest physical denomination of the currency. */ export interface OrderRoundingAdjustment { /** A unique ID that identifies the rounding adjustment only within this order. */ uid?: string | null; /** The name of the rounding adjustment from the original sale order. */ name?: string | null; /** The actual rounding adjustment amount. */ amountMoney?: Square.Money; }