PriceFilter¶
The PriceFilter object represents a price filter in the storefront.
classDiagram
direction LR
PriceFilter --> Url
class PriceFilter{
string name
bool isActive
string priceFromUrlKey
string priceToUrlKey
?float priceFrom
?float priceTo
?Url urlWithFilterValueRemoved
?Url urlWithSingleFilterValue
?Url urlWithFilterValueAdded
?Url urlWithPriceFromFilterValueRemoved
?Url urlWithPriceToFilterValueRemoved
}
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. |
urlWithFilterValueRemoved | null | Url |
Returns Url object that represents link with filter value removed. |
urlWithSingleFilterValue | null | Url |
Returns Url object that represents link with single filter value. |
urlWithFilterValueAdded | null | Url |
Returns Url object that represents link with filter value added. |
urlWithPriceFromFilterValueRemoved | null | Url |
Returns Url object that represents link with filter value without priceFrom param. |
urlWithPriceToFilterValueRemoved | null | Url |
Returns Url object that represents link with filter value without priceTo param. |