Skip to content

//sms/dev.atick.sms.models/SMSMessage

SMSMessage

data class SMSMessage(val id: Long, val address: String, val body: String, val date: Long, val type: Int)

Data class that represents an SMS message.

Parameters

androidJvm

id The unique identifier of the SMS message.
address The address of the sender or recipient of the SMS message.
body The body of the SMS message.
date The date and time the SMS message was sent or received.
type The type of the SMS message.

Constructors

SMSMessage [androidJvm]
constructor(id: Long, address: String, body: String, date: Long, type: Int)

Properties

Name Summary
address [androidJvm]
val address: String
body [androidJvm]
val body: String
date [androidJvm]
val date: Long
id [androidJvm]
val id: Long
type [androidJvm]
val type: Int