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

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

package com.github.krenfro.eztexting;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;


@JsonRootName(value = "Response")
class GroupResponse extends Response {
    
    @JsonProperty("Entry")
    private Group group;

    public Group getGroup(){
        return group;
    }

    public void setGroup(Group group){
        this.group = group;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy