You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/FikaAmazonAPI/ReportGeneration/ProductsReport.cs
+86Lines changed: 86 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,32 +25,118 @@ public ProductsReport(string path, string refNumber)
25
25
}
26
26
publicclassProductsRow
27
27
{
28
+
/// <summary>
29
+
/// The title of the item listed. This will be populated with Amazon catalogue data.
30
+
/// </summary>
28
31
publicstringItemName{get;set;}
32
+
/// <summary>
33
+
/// This is used for backwards compatibility only.
34
+
/// </summary>
29
35
publicstringItemDescription{get;set;}
36
+
/// <summary>
37
+
/// An identifier created by Amazon when you create a listing. Consists of 4 digits, a capital letter and 6 more digits.
38
+
/// </summary>
30
39
publicstringListingId{get;set;}
40
+
/// <summary>
41
+
/// Stock Keeping Units (SKUs) are unique blocks of letters and/or numbers that identify your products.
42
+
/// SKUs are assigned by you as the seller.
43
+
/// </summary>
31
44
publicstringSellerSku{get;set;}
45
+
/// <summary>
46
+
/// The price you are asking for the product.
47
+
/// </summary>
32
48
publicdecimal?Price{get;set;}
49
+
/// <summary>
50
+
/// The quantity of the product available for purchase.
51
+
/// </summary>
33
52
publicint?Quantity{get;set;}
53
+
/// <summary>
54
+
/// The date the listing was created.
55
+
/// </summary>
34
56
publicstringOpenDate{get;set;}
35
57
publicstringImageUrl{get;set;}
58
+
/// <summary>
59
+
/// This will always be y.
60
+
/// </summary>
36
61
publicboolItemIsMarketplace{get;set;}
62
+
/// <summary>
63
+
/// A numeric entry that indicates if the product-id is an ASIN, ISBN, UPC or EAN code/number. When uploading files in Standard Book format, this field value will default to 2 (ISBN) unless otherwise specified.
64
+
/// 1 = ASIN, 2 = ISBN, 3 = UPC, 4 = EAN
65
+
/// </summary>
37
66
publicint?ProductIdType{get;set;}
67
+
/// <summary>
68
+
/// This is used for backwards compatibility only.
69
+
/// </summary>
38
70
publicstringZshopShippingFee{get;set;}
71
+
/// <summary>
72
+
/// Your description of the listing
73
+
/// </summary>
74
+
/// <example>
75
+
/// Read once, no scratches, normal condition
76
+
/// </example>
39
77
publicstringItemNote{get;set;}
78
+
/// <summary>
79
+
/// This is your condition code for the listing.
80
+
/// 1 = Used; Like New, 2 = Used; Very Good, 3 = Used; Good, 4 = Used; Acceptable, 5 = Collectible; Like New,
81
+
/// 6 = Collectible; Very Good, 7 = Collectible; Good, 8 = Collectible; Acceptable, 11 = New
82
+
/// </summary>
40
83
publicint?ItemCondition{get;set;}
84
+
/// <summary>
85
+
/// This is used for backwards compatibility only.
86
+
/// </summary>
41
87
publicstringZshopCategory1{get;set;}
88
+
/// <summary>
89
+
/// This is used for backwards compatibility only.
90
+
/// </summary>
42
91
publicstringZshopBrowsePath{get;set;}
92
+
/// <summary>
93
+
/// This is used for backwards compatibility only.
94
+
/// </summary>
43
95
publicstringZshopStorefrontFeature{get;set;}
96
+
/// <summary>
97
+
/// This is not used. The field is populated with the product-id.
98
+
/// </summary>
44
99
publicstringASIN1{get;set;}
100
+
/// <summary>
101
+
/// This is used for backwards compatibility only.
102
+
/// </summary>
45
103
publicstringASIN2{get;set;}
104
+
/// <summary>
105
+
/// This is used for backwards compatibility only.
106
+
/// </summary>
46
107
publicstringASIN3{get;set;}
108
+
/// <summary>
109
+
/// y = listings that are available to customers outside the UK.
110
+
/// n = listings that are available only to customers in the UK.
111
+
/// </summary>
47
112
publicstringWillShipInternationally{get;set;}
113
+
/// <summary>
114
+
/// This will always be n
115
+
/// </summary>
48
116
publicstringExpeditedShipping{get;set;}
117
+
/// <summary>
118
+
/// This is used for backwards compatibility only.
119
+
/// </summary>
49
120
publicstringZshopBoldface{get;set;}
121
+
/// <summary>
122
+
/// ASIN, ISBN, UPC or EAN for the item
123
+
/// </summary>
50
124
publicstringProductId{get;set;}
125
+
/// <summary>
126
+
/// This is used for backwards compatibility only.
127
+
/// </summary>
51
128
publicstringBidForFeaturedPlacement{get;set;}
129
+
/// <summary>
130
+
/// This field will be empty in the report; it enables you to use an open listings report to update online inventory.
131
+
/// </summary>
52
132
publicstringAddDelete{get;set;}
133
+
/// <summary>
134
+
/// This is the quantity of the item that is pending purchase at the time of the report.
135
+
/// </summary>
53
136
publicint?PendingQuantity{get;set;}
137
+
/// <summary>
138
+
/// This will indicate for FBA sellers if the listing is set for seller fulfilment or fulfilment by Amazon.
0 commit comments