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

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

There is a newer version: 1.4.0
Show newest version
package twitter4jads.models.ads;

import com.google.gson.annotations.SerializedName;

import java.util.Map;

/**
 *
 * Date: 29/01/14
 * Time: 11:52 AM
 */
public class RequestParameters {

    @SerializedName("params")
    private Map params;

    @SerializedName("total_count")
    private Long totalCount;

    @SerializedName("operation_type")
    private String operationType;

    public Map getParams() {
        return params;
    }

    public void setParams(Map params) {
        this.params = params;
    }

    public Long getTotalCount() {
        return totalCount;
    }

    public void setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
    }

    public String getOperationType() {
        return operationType;
    }

    public void setOperationType(String operationType) {
        this.operationType = operationType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy