Mayson Monorepo Documentation
    Preparing search index...
    interface AdjustableQuantity {
        enabled: boolean;
        maximum?: number;
        minimum?: number;
    }
    Index

    Properties

    enabled: boolean

    Set to true if the quantity can be adjusted to any non-negative integer.

    maximum?: number

    The maximum quantity of this item the customer can purchase. By default this value is 99. You can specify a value up to 999999.

    minimum?: number

    The minimum quantity of this item the customer must purchase, if they choose to purchase it. Because this item is optional, the customer will always be able to remove it from their order, even if the minimum configured here is greater than 0. By default this value is 0.