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

com.youcruit.billogram.objects.response.common.SearchResponse Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.youcruit.billogram.objects.response.common;

import java.util.ArrayList;
import java.util.List;

import com.google.gson.annotations.Expose;

public class SearchResponse {

    @Expose
    private List data = new ArrayList<>();
    @Expose
    private TotalCountMeta meta = new TotalCountMeta();

    public List getData() {
	return data;
    }

    public void setData(List data) {
	this.data = data;
    }

    public TotalCountMeta getMeta() {
	return meta;
    }

    public void setMeta(TotalCountMeta meta) {
	this.meta = meta;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy