//
//  SliderParameters.swift

//  AUTO-GENERATED from data/components.json
//  DO NOT EDIT MANUALLY - Changes will be overwritten
//  Schema version: 1.0.0

import Foundation

/// Parameters for Slider component
/// Slider control for numeric input
public struct SliderParameters: ComponentParameters {
  /// Label for minimum value
  public let minimumLabel: String?

  /// Label for maximum value
  public let maximumLabel: String?

  /// Minimum slider value
  public let minimumValue: Double?

  /// Maximum slider value
  public let maximumValue: Double?

  /// Initial slider value
  public let defaultValue: Double?
}
