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

com.siftscience.model.CreatePostFieldSet 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 CreatePostFieldSet extends CreateContentFieldSet {
    public static CreatePostFieldSet fromJson(String json) {
        return gson.fromJson(json, CreatePostFieldSet.class);
    }

    @Expose @SerializedName("$post") private Post post;

    public Post getPost() {
        return post;
    }

    public CreatePostFieldSet setPost(Post post) {
        this.post = post;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy