All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.krenfro.eztexting.MessageResponse Maven / Gradle / Ivy

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