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 the customer can purchase. By default this value is 99. You can specify a value up to 999999.

    minimum?: number

    The minimum quantity the customer can purchase. By default this value is 0. If there is only one item in the cart then that item's quantity cannot go down to 0.