created new branch

This commit is contained in:
Gilbert Kimutai 2019-02-17 05:41:15 +03:00
parent ff568c0d43
commit 8ae1558df8
34 changed files with 15 additions and 102 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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<>();

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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")

View File

@ -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;

View File

@ -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")

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -1,8 +1,5 @@
package me.gilo.woodroid.models;
/**
* Created by Aron on 12/11/2015.
*/
public class Data {
Customer customer;

View File

@ -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;

View File

@ -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;

View File

@ -1,7 +1,5 @@
package me.gilo.woodroid.models;
/**
* Created by Aron on 12/8/2015.
*/
public class FeeLine {
}

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -1,8 +1,5 @@
package me.gilo.woodroid.models;
/**
* Created by Aron on 11/26/2015.
*/
public class Option {
private String[] size;

View File

@ -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")

View File

@ -1,8 +1,5 @@
package me.gilo.woodroid.models;
/**
* Created by Aron on 12/12/2015.
*/
public class OrderData {
Order order;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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")

View File

@ -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;

View File

@ -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;

View File

@ -1,8 +1,5 @@
package me.gilo.woodroid.models;
/**
* Created by Aron on 12/8/2015.
*/
public class TaxClass {
String slug;
String name;

View File

@ -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;

View File

@ -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;

View File

@ -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;