AuditItem

public class AuditItem : Item

TBD

  • The date related to an Item.

    Declaration

    Swift

    @objc
    dynamic var date: Date?
  • The content of an Item.

    Declaration

    Swift

    @objc
    dynamic var content: String?
  • Some action that can be taken by some Item.

    Declaration

    Swift

    @objc
    dynamic var action: String?
  • The Item this Item applies to.

    Declaration

    Swift

    var appliesTo: [Item]? { get }
  • Undocumented

    Declaration

    Swift

    public required convenience init(from decoder: Decoder) throws
  • Declaration

    Swift

    override var computedTitle: String { get }
  • Undocumented

    Declaration

    Swift

    convenience init(
        date: Date? = nil,
        contents: String? = nil,
        action: String? = nil,
        appliesTo: [Item]? = nil
    ) throws