Flag
public enum Flag : String
extension Flag: CustomStringConvertible
A Flag represents the state of a Transaction
-
complete to mark that the transaction was checked
Declaration
Swift
case complete = "*" -
incomplete to mark that the transaction requires further attantion
Declaration
Swift
case incomplete = "!" -
Retuns the
Stringwhich represents the flag in the ledger fileDeclaration
Swift
public var description: String { get }
View on GitHub
Install in Dash
Flag Enumeration Reference