CurrencyVelocity

public struct CurrencyVelocity : Equatable

Representation of a Currency Velocity

Properties

  • The type of currency

    Declaration

    Swift

    public var currency: String
  • The velocity of the currency

    Declaration

    Swift

    public var velocity: [String]

Lifecycle

  • Initialises an instance of CurrencyVelocity.

    Declaration

    Swift

    public init(
        currency: String,
        velocity: [String]
    )