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

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

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

import com.google.gson.annotations.SerializedName;

/**
 * User: abhishek.chatrath
 * Date: 15/06/16.
 * Time: 8:07 PM
 */
public class TwitterCreativePreview {

    @SerializedName("platform")
    private String platform;

    @SerializedName("preview")
    private String preview;

    public String getPlatform() {
        return platform;
    }

    public void setPlatform(String platform) {
        this.platform = platform;
    }

    public String getPreview() {
        return preview;
    }

    public void setPreview(String preview) {
        this.preview = preview;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy