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

twitter4j.models.ads.TwitterAppStore Maven / Gradle / Ivy

There is a newer version: 2.2
Show newest version
package twitter4j.models.ads;

import com.google.gson.annotations.SerializedName;

/**
 * User: abhishekanand
 * Date: 04/05/15 6:31 PM.
 */
public class TwitterAppStore extends TwitterEntity {

    public static final String NAME = "name";
    public static final String APP_STORE_TYPE = "os_type";
    public static final String TARGETING_TYPE = "targeting_type";
    public static final String TARGETING_VALUE = "targeting_value";

    @SerializedName(NAME)
    private String name;

    @SerializedName(APP_STORE_TYPE)
    private AppStoreType appStoreType;

    @SerializedName(TARGETING_TYPE)
    private TargetingType targetingType;

    @SerializedName(TARGETING_VALUE)
    private String targetingValue;


    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public AppStoreType getAppStoreType() {
        return appStoreType;
    }

    public void setAppStoreType(AppStoreType appStoreType) {
        this.appStoreType = appStoreType;
    }

    public TargetingType getTargetingType() {
        return targetingType;
    }

    public void setTargetingType(TargetingType targetingType) {
        this.targetingType = targetingType;
    }

    public String getTargetingValue() {
        return targetingValue;
    }

    public void setTargetingValue(String targetingValue) {
        this.targetingValue = targetingValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy