
com.github.krenfro.eztexting.MessageResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eztexting-java Show documentation
Show all versions of eztexting-java Show documentation
A Java client for the EZ Texting SMS text messaging API
The newest version!
package com.github.krenfro.eztexting;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
@JsonRootName(value = "Response")
class MessageResponse extends Response {
@JsonProperty("Entry")
private MessageReceipt receipt;
public MessageReceipt getReceipt(){
return receipt;
}
public void setReceipt(MessageReceipt receipt){
this.receipt = receipt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy