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

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

    @Expose @SerializedName("$listing") private Listing listing;

    public Listing getListing() {
        return listing;
    }

    public CreateListingFieldSet setListing(Listing listing) {
        this.listing = listing;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy