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

twitter4jads.models.ads.TwitterRange Maven / Gradle / Ivy

The newest version!
package twitter4jads.models.ads;

import com.google.gson.annotations.SerializedName;

/**
 * @author akashMaurya
 * @Date 07/06/16.
 */
public class TwitterRange {

    @SerializedName("min")
    private long min;
    @SerializedName("max")
    private long max;

    public long getMin() {
        return min;
    }

    public void setMin(long min) {
        this.min = min;
    }

    public long getMax() {
        return max;
    }

    public void setMax(long max) {
        this.max = max;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy