VarioqubEventData

public struct VarioqubEventData

The struct that represents event data after the config was changed.

  • The date and time when the config was fetched.

    This property can be nil if you upgrade from Varioqub-0.5.0 or older.

    Declaration

    Swift

    public var fetchDate: Date?
  • The old config version.

    Declaration

    Swift

    public var oldVersion: String?
  • The new config version.

    Declaration

    Swift

    public var newVersion: String
  • Initializes the structure.

    Declaration

    Swift

    public init(fetchDate: Date? = nil, oldVersion: String? = nil, newVersion: String)

    Parameters

    fetchData

    The date and time when the new config was fetched.

    oldVersion

    The old config version.

    newVersion

    The new config version.