ErxAuditEvent

public struct ErxAuditEvent : Identifiable, Hashable, Codable

Represents audit events related to Erx Tasks.

  • ErxAuditEvent default initializer

    Declaration

    Swift

    public init(
        identifier: String,
        locale: String? = nil,
        text: String? = nil,
        timestamp: String? = nil,
        taskId: String? = nil,
        title: String? = nil
    )
  • id

    Id of the audit event

    Declaration

    Swift

    public var id: String { get }
  • Identifier of the audit event

    Declaration

    Swift

    public let identifier: String
  • Locale of the audit event

    Declaration

    Swift

    public let locale: String?
  • Human-readable text of the audit event

    Declaration

    Swift

    public let text: String?
  • Timestamp of the audit event

    Declaration

    Swift

    public let timestamp: String?
  • Identifier of the referenced task in the audit event

    Declaration

    Swift

    public let taskId: String?
  • Title for the AuditEvent, typically ErxTask name

    Declaration

    Swift

    public let title: String?