summaryrefslogtreecommitdiff
path: root/icclient/product.h
blob: 51efa46a552b3733c23df77f45a7c6f1f4555de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef ICCLIENT_PRODUCT_H
#define ICCLIENT_PRODUCT_H

struct icclient_product_cross_sell {
	size_t length;
	char *skus[];
};

struct icclient_product {
	char *sku;
	char *description;
	char *comment;
	char *thumb;
	char *image;
	double price;
	char *prod_group;
	double weight;
	char *author;
	struct icclient_product_cross_sell *cross_sell;
};

#endif // ICCLIENT_PRODUCT_H