EventLog
public class EventLog : LinphoneObject
Base object of events.
-
Returns the call of a conference call event.
Declaration
Swift
public var call: Call? { get }
Return Value
The conference call.
-
Returns the chat message of a conference chat message event.
Declaration
Swift
public var chatMessage: ChatMessage? { get }
Return Value
The conference chat message.
-
Returns the creation time of a event log.
Declaration
Swift
public var creationTime: Int { get }
Return Value
The event creation time
-
Returns the device address of a conference participant device event.
Declaration
Swift
public var deviceAddress: Address? { get }
Return Value
The conference device address.
-
Returns the local address of a conference event.
Declaration
Swift
public var localAddress: Address? { get }
Return Value
The local address.
-
Returns the notify id of a conference notified event.
Declaration
Swift
public var notifyId: UInt { get }
Return Value
The conference notify id.
-
Returns the participant address of a conference participant event.
Declaration
Swift
public var participantAddress: Address? { get }
Return Value
The conference participant address.
-
Returns the peer address of a conference event.
Declaration
Swift
public var peerAddress: Address? { get }
Return Value
The peer address.
-
Returns the faulty device address of a conference security event.
Declaration
Swift
public var securityEventFaultyDeviceAddress: Address? { get }
Return Value
The address of the faulty device.
-
Returns the type of security event.
Declaration
Swift
public var securityEventType: SecurityEventType { get }
Return Value
The security event type.
-
Returns the subject of a conference subject event.
Declaration
Swift
public var subject: String { get }
Return Value
The conference subject.
-
Returns the type of a event log.
Declaration
Swift
public var type: EventLogType { get }
Return Value
The event type
-
Delete event log from database.
Declaration
Swift
public func deleteFromDatabase()