import type * as Square from "../index"; /** * A parent Catalog Object model represents a set of Quick Amounts and the settings control the amounts. */ export interface CatalogQuickAmountsSettings { /** * Represents the option seller currently uses on Quick Amounts. * See [CatalogQuickAmountsSettingsOption](#type-catalogquickamountssettingsoption) for possible values */ option: Square.CatalogQuickAmountsSettingsOption; /** * Represents location's eligibility for auto amounts * The boolean should be consistent with whether there are AUTO amounts in the `amounts`. */ eligibleForAutoAmounts?: boolean | null; /** Represents a set of Quick Amounts at this location. */ amounts?: Square.CatalogQuickAmount[] | null; }