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

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

package com.github.krenfro.eztexting;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
import java.util.List;


@JsonRootName(value = "Response")
class ContactsResponse extends Response {
    
    @JsonProperty("Entries")
    private List contacts;

    public List getContacts(){
        return contacts;
    }

    public void setContacts(List contacts){
        this.contacts = contacts;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy