TTPriceRange

@interface TTPriceRange : NSObject

Object that contains price range information.

  • Price range value, between min/max values inclusive.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite) double value;

    Swift

    var value: Double { get set }
  • Label that describes the price range.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite)
        NSString *_Nullable label;

    Swift

    var label: String? { get set }
  • Min value of the price range.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite) double minValue;

    Swift

    var minValue: Double { get set }
  • Max value of the price range.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite) double maxValue;

    Swift

    var maxValue: Double { get set }