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

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

    @Expose @SerializedName("$profile") private Profile profile;

    public Profile getProfile() {
        return profile;
    }

    public CreateProfileFieldSet setProfile(Profile profile) {
        this.profile = profile;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy