summaryrefslogtreecommitdiff
path: root/icclient/product.h
blob: 4d7f0c7b9558670a6a96cb18509fe60f0f5d99a6 (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_crosssell {
	size_t length;
	char *skus[];
};

struct icclient_product {
	char *sku;
	char *description;
	char *comment;
	char *thumb;
	char *image;
	double price;
	char *prodgroup;
	double weight;
	char *author;
	struct icclient_product_crosssell *crosssell;
};

#endif // ICCLIENT_PRODUCT_H