UserDefaults

extension UserDefaults
  • Stores the identifier of the selected ShipmentInfo

    Declaration

    Swift

    public static let kSelectedShipmentInfoId: String
  • Stores for the selected ShipmentInfo identifier

    Declaration

    Swift

    @objc
    public var selectedShipmentInfoId: UUID? { get set }
  • Name of the server environment to use. Only usable in non production builds

    Declaration

    Swift

    public static let kServerEnvironmentConfiguration: String
  • Base URL Key (UserDefaults)

    Declaration

    Swift

    public static let kBaseURL: String
  • VAU URL Key for UserDefaults

    Declaration

    Swift

    public static let kVauURL: String
  • DiscoveryDocument URL Key for UserDefaults

    Declaration

    Swift

    public static let kDiscoveryURL: String
  • Key for storing if app-install event has been sent to tracking server in UserDefaults

    Declaration

    Swift

    public static let kAppInstallSent: String
  • Key for storing failedAppAuthentications

    Declaration

    Swift

    public static let kFailedAppAuthentications: String
  • Key for storing the selectedProfileId

    Declaration

    Swift

    public static let kSelectedProfileId: String
  • Key for latest compatible core data model version

    Declaration

    Swift

    public static let kLatestCompatibleCoreDataModelVersion: String
  • Kex for storing the app start count

    Declaration

    Swift

    public static let kAppStartCounter: String
  • Declaration

    Swift

    public static let kHideWelcomeDrawer: String
  • Store if app-install event has been sent to tracking server

    Declaration

    Swift

    @objc
    public var appInstallSent: Bool { get set }
  • Store number of failure app authentications

    Declaration

    Swift

    @objc
    public var failedAppAuthentications: Int { get set }
  • Store for the selected profile identifier

    Declaration

    Swift

    @objc
    public var selectedProfileId: UUID? { get set }
  • Store number of failure app authentications

    Declaration

    Swift

    @objc
    public var latestCompatibleCoreDataModelVersion: Int { get set }
  • Store every app start in this counter

    Declaration

    Swift

    @objc
    public var appStartCounter: Int { get set }
  • Declaration

    Swift

    @objc
    public var hideWelcomeDrawer: Bool { get set }