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

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

    @Expose @SerializedName("$message") private Message message;

    public Message getMessage() {
        return message;
    }

    public UpdateMessageFieldSet setMessage(Message message) {
        this.message = message;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy