PriceFilter¶
The PriceFilter object represents a price filter in the storefront.
classDiagram
direction LR
class PriceFilter{
string name
bool isActive
string priceFromUrlKey
string priceToUrlKey
?float priceFrom
?float priceTo
}
Properties¶
Attribute name | Type | Description |
---|---|---|
name | string |
The name of the price filter. |
isActive | bool |
Returns true if price filter is active. |
priceFromUrlKey | string |
Represents url key of 'price from' value. |
priceToUrlKey | string |
Represents url key of 'price to' value. |
priceFrom | float|null |
Represents 'price from' value. |
priceTo | float|null |
Represents 'price to' value. |