initial commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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<ShippingMethodModel> paymentMethodsList;
|
||||
|
||||
public ArrayList<ShippingMethodModel> getPaymentMethodsList() {
|
||||
return paymentMethodsList;
|
||||
}
|
||||
|
||||
public void setPaymentMethodsList(ArrayList<ShippingMethodModel> paymentMethodsList) {
|
||||
this.paymentMethodsList = paymentMethodsList;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user