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

com.siftscience.model.Browser Maven / Gradle / Ivy

There is a newer version: 3.16.0
Show newest version
package com.siftscience.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Browser {
    @Expose @SerializedName("$user_agent") private String userAgent;
    @Expose @SerializedName("$accept_language") private String acceptLanguage;
    @Expose @SerializedName("$content_language") private String contentLanguage;

    public String getUserAgent() {
        return userAgent;
    }

    public Browser setUserAgent(String userAgent) {
        this.userAgent = userAgent;
        return this;
    }

    public String getAcceptLanguage() {
        return acceptLanguage;
    }

    public Browser setAcceptLanguage(String acceptLanguage) {
        this.acceptLanguage = acceptLanguage;
        return this;
    }

    public String getContentLanguage() {
        return contentLanguage;
    }

    public Browser setContentLanguage(String contentLanguage) {
        this.contentLanguage = contentLanguage;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy