com.hextremelabs.sms.smssender.infobip.dto.SmsServiceRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sms-sender Show documentation
Show all versions of sms-sender Show documentation
A simple sms sender with automatic failover
The newest version!
package com.hextremelabs.sms.smssender.infobip.dto
import javax.xml.bind.annotation.XmlElement
import javax.xml.bind.annotation.XmlRootElement
/**
* Created by oladeji on 11/4/16.
*/
@XmlRootElement
class SmsServiceRequest(
@get:XmlElement var from: String? = null,
@get:XmlElement var to: String? = null,
@get:XmlElement var text: String? = null
)