| 1 |
lars |
1 |
Services_Ebay models
|
|
|
2 |
--------------------
|
|
|
3 |
$Id: models.txt,v 1.1 2004/10/28 17:14:53 schst Exp $
|
|
|
4 |
|
|
|
5 |
1. User - Stores information about an eBay user
|
|
|
6 |
|
|
|
7 |
Public Methods:
|
|
|
8 |
|
|
|
9 |
obj Feedback GetFeedback(int DetailLevel, int ItemsPerPage, int StartingPage)
|
|
|
10 |
Array GetSellerList(array Arguments)
|
|
|
11 |
|
|
|
12 |
2. Item - Stores information about an item
|
|
|
13 |
|
|
|
14 |
Useful properties:
|
|
|
15 |
|
|
|
16 |
$item->Seller is an instance of Services_Ebay_Model_User
|
|
|
17 |
|
|
|
18 |
3. Feedback - Stores information about User Feedback
|
|
|
19 |
|
|
|
20 |
Public Methos:
|
|
|
21 |
|
|
|
22 |
obj FeedbackEntry GetEntry(int number)
|
|
|
23 |
|
|
|
24 |
4. FeedbackEntry - Stores information about one entry
|
|
|
25 |
|
|
|
26 |
TODO:
|
|
|
27 |
-----
|
|
|
28 |
The following models possibly need to be implemented:
|
|
|
29 |
|
|
|
30 |
- Category
|
|
|
31 |
- CategoryList
|
|
|
32 |
- Transaction
|
|
|
33 |
( - TransactionList )
|
|
|
34 |
- Dispute
|
|
|
35 |
- ProductFinder (is able to transform itself using a style sheet)
|
|
|
36 |
|