commonMain.sms.service.SMSRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of KSend Show documentation
Show all versions of KSend Show documentation
A description of what my library does.
package sms.service
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class SMSRequest(
@SerialName("To")
val to: String,
@SerialName("From")
val from: String,
@SerialName("Body")
val body: String
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy