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

com.github.krenfro.eztexting.GroupsResponse 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 GroupsResponse extends Response {
    
    @JsonProperty("Entries")
    private List groups;

    public List getGroups(){
        return groups;
    }

    public void setGroups(List groups){
        this.groups = groups;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy