Status

public enum Status : Int, Codable

The set of available library status types.

case none = -1
case inProgress = 0
case planning = 2
case completed = 3
case onHold = 4
case dropped = 1
  • Tag: KKL-Status

Cases

Properties

  • all

    An array containing all library status types.

    Declaration

    Swift

    public static let all: [Status]
  • The string value of a library status type.

    Declaration

    Swift

    public var stringValue: String { get }
  • The section value string of a library status type.

    Declaration

    Swift

    public var sectionValue: String { get }