PhoneCallLogEntryDataModel
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.
Functions
Link copied to clipboard
internal fun PhoneCallLogEntryDataModel.toDomainModel(metadata: PhoneCallMetadataDataModel, contactName: String?): PhoneCallLogEntryDomainModel
Maps a PhoneCallLogEntryDataModel instance to a PhoneCallLogEntryDomainModel instance with the given metadata and contactName.