import type * as Square from "../index"; /** * Contains the name and abbreviation for standard measurement unit. */ export interface StandardUnitDescription { /** Identifies the measurement unit being described. */ unit?: Square.MeasurementUnit; /** UI display name of the measurement unit. For example, 'Pound'. */ name?: string | null; /** UI display abbreviation for the measurement unit. For example, 'lb'. */ abbreviation?: string | null; }