Wish List
AcquireWishListItem
Bases: BaseModel
A data model representing a request to mark a wish list item as acquired.
This creates a new collection item from the wish list item.
| ATTRIBUTE | DESCRIPTION |
|---|---|
purchase_date |
The date the issue was purchased.
TYPE:
|
purchase_price |
The price paid for the issue.
TYPE:
|
purchase_price_currency |
Currency for purchase_price (default "USD").
TYPE:
|
purchase_store |
The store or vendor where the issue was purchased.
TYPE:
|
notes |
Additional notes about the purchase.
TYPE:
|
Currency
Bases: str, Enum
Enumeration of supported currencies.
Values:
USD: US Dollar
GBP: British Pound Sterling
Priority
Bases: int, Enum
Enumeration of wish list item priority levels (1=highest, 5=lowest).
Values:
ONE: Priority 1 (highest)
TWO: Priority 2
THREE: Priority 3 (default)
FOUR: Priority 4
FIVE: Priority 5 (lowest)
WishList
Bases: BaseModel
A data model representing a user's wish list.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the wish list.
TYPE:
|
item_count |
Number of items in the wish list.
TYPE:
|
items_url |
URL to retrieve the wish list items.
TYPE:
|
modified |
The date and time when the wish list was last modified.
TYPE:
|
WishListAddItem
Bases: BaseModel
A data model representing a request to add an issue to the wish list.
| ATTRIBUTE | DESCRIPTION |
|---|---|
issue_id |
The unique identifier of the issue to add.
TYPE:
|
priority |
Priority level 1-5 (default 3).
TYPE:
|
desired_grade |
The desired CGC grade for the issue.
TYPE:
|
max_price |
The maximum price willing to pay.
TYPE:
|
max_price_currency |
Currency for max_price (default "USD").
TYPE:
|
notes |
Additional notes about this wish list item.
TYPE:
|
WishListItemList
Bases: BaseModel
A data model representing a wish list item in list view.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the wish list item.
TYPE:
|
issue |
The issue associated with this wish list item.
TYPE:
|
status |
The current status of the wish list item.
TYPE:
|
priority |
The priority level for acquiring this item.
TYPE:
|
desired_grade |
The desired CGC grade for the issue.
TYPE:
|
modified |
The date and time when the item was last modified.
TYPE:
|
WishListItemRead
Bases: BaseModel
A data model representing a wish list item in detailed view.
| ATTRIBUTE | DESCRIPTION |
|---|---|
id |
The unique identifier of the wish list item.
TYPE:
|
issue |
The issue associated with this wish list item.
TYPE:
|
status |
The current status of the wish list item.
TYPE:
|
priority |
The priority level for acquiring this item.
TYPE:
|
desired_grade |
The desired CGC grade for the issue.
TYPE:
|
max_price |
The maximum price willing to pay.
TYPE:
|
max_price_currency |
Currency code for max_price (e.g. "USD", "GBP").
TYPE:
|
notes |
Additional notes about this wish list item.
TYPE:
|
added_on |
The date and time when the item was added to the wish list.
TYPE:
|
modified |
The date and time when the item was last modified.
TYPE:
|