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

com.siftscience.model.OrderedFrom 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 OrderedFrom {
    @Expose @SerializedName("$store_address") private Address storeAddress;
    @Expose @SerializedName("$store_id") private String storeId;

    public Address getStoreAddress() {
        return storeAddress;
    }

    public OrderedFrom setStoreAddress(Address storeAddress) {
        this.storeAddress = storeAddress;
        return this;
    }

    public String getStoreId() {
        return storeId;
    }

    public OrderedFrom setStoreId(String storeId) {
        this.storeId = storeId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy