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

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

    @Expose @SerializedName("$item") private Item item;

    @Override
    public String getEventType() {
        return "$remove_item_from_cart";
    }

    public Item getItem() {
        return item;
    }

    public RemoveItemFromCartFieldSet setItem(Item item) {
        this.item = item;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy