com.siftscience.model.UpdateProfileFieldSet Maven / Gradle / Ivy
The newest version!
package com.siftscience.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class UpdateProfileFieldSet extends UpdateContentFieldSet {
public static UpdateProfileFieldSet fromJson(String json) {
return gson.fromJson(json, UpdateProfileFieldSet.class);
}
@Expose @SerializedName("$profile") private Profile profile;
public Profile getProfile() {
return profile;
}
public UpdateProfileFieldSet setProfile(Profile profile) {
this.profile = profile;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy