DeliveryFilter¶
The DeliveryFilter object represents a delivery filter in the storefront.
classDiagram
  direction LR
  DeliveryFilter --> FilterValuesList
  class DeliveryFilter{
    string name
    bool isActive
    bool hasCounters
    bool isSingleChoiceOnly
    int limit
    FilterValuesList values
  }
  class FilterValuesList{
  }Properties¶
| Attribute name | Type | Description | 
|---|---|---|
| name | string | The name of the filter value. | 
| isActive | bool | Returns truewhen filter is active. | 
| hasCounters | bool | Returns truewhen filter has counter. | 
| isSingleChoiceOnly | bool | Returns truewhen filter is single choice. | 
| limit | number | Number of visible options in the filter. | 
| values | FilterValuesList | The FilterValuesList object that represents list of FilterValue object. |