DeprecationStatus
public enum DeprecationStatus
Deprecation status type for flags and commands
- notDeprecated: not deprecated, this is the default
- deprecated: the flag/command is deprecated
-
not deprecated, this is the default
Declaration
Swift
case notDeprecated
-
the flag/command is deprecated
Declaration
Swift
case deprecated(String)
-
Is it deprecated
Declaration
Swift
public var isDeprecated: Bool { get }
-
The deprication message
Declaration
Swift
public var deprecationMessage: String? { get }