summaryrefslogtreecommitdiff
path: root/icclient/product.h
blob: a324eef4928ff597fc6d860387530cbd2be5a2bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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 *image;
	double price;
	char *prod_group;
	double weight;
	char *author;
	struct icclient_product_cross_sell *cross_sell;
};

#endif // ICCLIENT_PRODUCT_H