-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.go
49 lines (47 loc) · 1.7 KB
/
product.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//********************************************************************************************************************//
//
// Copyright (C) 2018 - 2022 J&J Ideenschmiede GmbH <[email protected]>
//
// This file is part of gocheck24.
// All code may be used. Feel free and maybe code something better.
//
// Author: Jonas Kwiedor (aka gowizzard)
//
//********************************************************************************************************************//
package gocheck24
// ProductsBody is to structure the body data for the csv file
type ProductsBody struct {
ProductId string
Manufacturer string
Mpnr string
Ean string
ProductName string
Description string
CategoryPath string
Price string
MinPrice string
ImageUrl string
ImageUrl1 string
ImageUrl2 string
ImageUrl3 string
ImageUrl4 string
ImageUrl5 string
ImageUrl6 string
ImageUrl7 string
ImageUrl8 string
ImageUrl9 string
ImageUrl10 string
ImageUrl11 string
DeliveryTime string
DeliveryCosts string
Weight string
Stock string
ShippingType string
EconomicOperatorCompany string
EconomicOperatorStreet string
EconomicOperatorPostalCode string
EconomicOperatorCity string
EconomicOperatorCountry string
EconomicOperatorEmail string
EconomicOperatorPhone string
}