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
String
which represents the flag in the ledger fileDeclaration
Swift
public var description: String { get }