package ch.pizzacucia.android.model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.ArrayList; /** * Created by cimenmus on 21.10.2017. */ public class ShippingMethodsResponseModel { @Expose @SerializedName("shipping_methods") private ArrayList paymentMethodsList; public ArrayList getPaymentMethodsList() { return paymentMethodsList; } public void setPaymentMethodsList(ArrayList paymentMethodsList) { this.paymentMethodsList = paymentMethodsList; } }