Package-level declarations

Types

Link copied to clipboard
data class OngoingPhoneCallDataModel(val id: String, val startTimestamp: Instant, val phoneNumber: String)

A model representing an ongoing phone call.

Link copied to clipboard

A model representing a phone call event.

Link copied to clipboard
data class PhoneCallLogEntryDataModel(val id: String, val startTimestamp: Instant, val endTimestamp: Instant, val phoneNumber: String)

A model representing a phone call log entry, i.e. a single phone call made or received by the user.

Link copied to clipboard
data class PhoneCallMetadataDataModel(val id: String, val timesQueried: Int = 0)

A model representing metadata of a phone call. It contains information about the number of times the phone call has been queried.

Link copied to clipboard
data class ServerConfigurationDataModel(val host: String, val port: Int)

A model representing a server configuration. It contains information about the host and port.

Link copied to clipboard

A model representing the status of the server. It can be either Running or Stopped.