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, agentName: String? = nil, agentTelematikId: String? = nil ) -
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? -
The name of the agent performing this event
Declaration
Swift
public let agentName: String? -
TelematikId of the agent performing this event
Declaration
Swift
public let agentTelematikId: String?
View on GitHub
ErxAuditEvent Structure Reference