created new branch
This commit is contained in:
parent
ff568c0d43
commit
8ae1558df8
@ -3,9 +3,6 @@ package me.gilo.woodroid.data.callbacks;
|
||||
|
||||
import me.gilo.woodroid.models.Customer;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/13/2015.
|
||||
*/
|
||||
public class CustomerData {
|
||||
Customer customer;
|
||||
|
||||
|
||||
@ -1,9 +1,6 @@
|
||||
package me.gilo.woodroid.data.callbacks;
|
||||
import me.gilo.woodroid.models.Order;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/12/2015.
|
||||
*/
|
||||
public class Data {
|
||||
Order order;
|
||||
|
||||
|
||||
@ -5,9 +5,7 @@ import me.gilo.woodroid.models.Order;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
|
||||
public class OrderCallback {
|
||||
ArrayList<Order> orders = new ArrayList<>();
|
||||
|
||||
|
||||
@ -6,9 +6,6 @@ import me.gilo.woodroid.models.Product;
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
||||
/**
|
||||
* Created by Aron on 11/10/2015.
|
||||
*/
|
||||
public class ProductCallback {
|
||||
ArrayList<Product> products = new ArrayList<>();
|
||||
Product product;
|
||||
|
||||
@ -3,9 +3,6 @@ package me.gilo.woodroid.data.callbacks;
|
||||
|
||||
import me.gilo.woodroid.models.Product;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/14/2015.
|
||||
*/
|
||||
public class ProductData {
|
||||
private Product product;
|
||||
|
||||
|
||||
@ -7,9 +7,7 @@ import me.gilo.woodroid.models.ProductReview;
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
|
||||
public class ReviewsCallback {
|
||||
@SerializedName("product_reviews")
|
||||
ArrayList<ProductReview> productReviews;
|
||||
|
||||
@ -5,9 +5,7 @@ import me.gilo.woodroid.models.ProductReview;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/14/2015.
|
||||
*/
|
||||
|
||||
public class ReviewsData {
|
||||
ArrayList<ProductReview> productReviews;
|
||||
|
||||
|
||||
@ -3,9 +3,6 @@ package me.gilo.woodroid.data.callbacks;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import me.gilo.woodroid.models.Store;
|
||||
|
||||
/**
|
||||
* Created by Aron on 2/20/2016.
|
||||
*/
|
||||
public class StoreCallback {
|
||||
|
||||
@SerializedName("store")
|
||||
|
||||
@ -4,9 +4,7 @@ import android.os.Parcel;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Created by Aron on 11/26/2015.
|
||||
*/
|
||||
|
||||
public class AttributeTerm implements Serializable {
|
||||
int id;
|
||||
private String name;
|
||||
|
||||
@ -4,9 +4,6 @@ import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
public class BillingAddress implements Serializable{
|
||||
public int id;
|
||||
@SerializedName("first_name")
|
||||
|
||||
@ -2,9 +2,6 @@ package me.gilo.woodroid.models;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
public class Category implements Serializable{
|
||||
private int id;
|
||||
private String name;
|
||||
|
||||
@ -4,9 +4,6 @@ import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
|
||||
public class Customer implements Serializable{
|
||||
public int id;
|
||||
|
||||
@ -5,9 +5,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/11/2015.
|
||||
*/
|
||||
|
||||
public class CustomerPost implements Serializable{
|
||||
@SerializedName("data")
|
||||
ArrayList<Data> datas;
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/11/2015.
|
||||
*/
|
||||
public class Data {
|
||||
Customer customer;
|
||||
|
||||
|
||||
@ -4,9 +4,6 @@ import android.os.Parcel;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Created by Aron on 11/26/2015.
|
||||
*/
|
||||
public class DefaultAttribute implements Serializable {
|
||||
int id;
|
||||
String name;
|
||||
|
||||
@ -4,9 +4,7 @@ import android.os.Parcel;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Created by Aron on 11/10/2015.
|
||||
*/
|
||||
|
||||
public class Dimension implements Serializable {
|
||||
|
||||
private String length;
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
|
||||
public class FeeLine {
|
||||
}
|
||||
|
||||
@ -5,9 +5,6 @@ import android.os.Parcel;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* Created by Aron on 11/23/2015.
|
||||
*/
|
||||
public class Image implements Serializable{
|
||||
private int id;
|
||||
private String date_created;
|
||||
|
||||
@ -5,9 +5,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
|
||||
public class LineItem {
|
||||
@SerializedName("product_id")
|
||||
public int id;
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
public class Line_item {
|
||||
private int product_id;
|
||||
private int quantity;
|
||||
|
||||
@ -1,8 +1,6 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
|
||||
public class Metum {
|
||||
public String key;
|
||||
public String label;
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 11/26/2015.
|
||||
*/
|
||||
public class Option {
|
||||
private String[] size;
|
||||
|
||||
|
||||
@ -5,9 +5,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
|
||||
public class Order {
|
||||
public int id;
|
||||
@SerializedName("order_number")
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/12/2015.
|
||||
*/
|
||||
public class OrderData {
|
||||
Order order;
|
||||
|
||||
|
||||
@ -5,9 +5,7 @@ import com.google.gson.annotations.SerializedName;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
|
||||
public class OrderNote {
|
||||
int id;
|
||||
String author;
|
||||
|
||||
@ -2,9 +2,7 @@ package me.gilo.woodroid.models;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
|
||||
public class PaymentDetails {
|
||||
@SerializedName("method_id")
|
||||
public String methodId;
|
||||
|
||||
@ -3,9 +3,7 @@ package me.gilo.woodroid.models;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/9/2015.
|
||||
*/
|
||||
|
||||
public class ProductReview implements Serializable{
|
||||
private int id;
|
||||
private Date date_created;
|
||||
|
||||
@ -2,9 +2,6 @@ package me.gilo.woodroid.models;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
public class ShippingAddress {
|
||||
public int id;
|
||||
@SerializedName("first_name")
|
||||
|
||||
@ -2,9 +2,6 @@ package me.gilo.woodroid.models;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/7/2015.
|
||||
*/
|
||||
public class ShippingClass {
|
||||
public int id;
|
||||
String name;
|
||||
|
||||
@ -2,9 +2,7 @@ package me.gilo.woodroid.models;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
|
||||
public class ShippingLine {
|
||||
@SerializedName("method_id")
|
||||
private String id;
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
public class TaxClass {
|
||||
String slug;
|
||||
String name;
|
||||
|
||||
@ -1,8 +1,6 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
|
||||
public class TaxLine {
|
||||
private int id;
|
||||
private int rate_id;
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 12/8/2015.
|
||||
*/
|
||||
public class TaxRate {
|
||||
private int id;
|
||||
private String country;
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package me.gilo.woodroid.models;
|
||||
|
||||
/**
|
||||
* Created by Aron on 1/24/2016.
|
||||
*/
|
||||
public class TopSellers {
|
||||
private String title;
|
||||
private int product_id;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user