ListingCopy Object
Description
Copy of listing information used in orders to preserve the state at the time of purchase.
Declaration
type ListingCopy {
_id: ID!
id: Float!
status: String!
prices: ListingPrice!
comments: String
privateComments: String
location: String
discogsId: Float
taxDefinition: String
preventDiscogsListing: Boolean
readOnly: Boolean
onePerCustomer: Boolean
stock: ListingStock!
options: [ListingOption!]!
supplierCode: String
sku: String
barcode: String
posted: Date
available: Date
preOrder: Boolean
categories: [String!]!
logs: [LogEntry]
archived: Boolean
secondHand: Boolean
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Float! | Numeric identifier for the listing. |
status | String! | Status of the listing at the time of order. |
prices | ListingPrice! | Pricing information at the time of order. |
comments | String | Public comments at the time of order. |
privateComments | String | Private comments at the time of order. |
location | String | Storage location at the time of order. |
discogsId | Float | External identifier from the marketplace system at the time of order. |
taxDefinition | String | Tax definition identifier at the time of order. |
preventDiscogsListing | Boolean | Whether marketplace system listing was prevented at the time of order. |
readOnly | Boolean | Whether the listing was read-only at the time of order. |
onePerCustomer | Boolean | Whether one per customer was enforced at the time of order. |
stock | ListingStock! | Stock quantity at the time of order. |
options | [ListingOption!]! | Product options at the time of order. |
supplierCode | String | Supplier code at the time of order. |
sku | String | SKU at the time of order. |
barcode | String | Barcode at the time of order. |
posted | Date | Posted date at the time of order. |
available | Date | Available date at the time of order. |
preOrder | Boolean | Whether it was a pre-order at the time of order. |
categories | [String!]! | Categories at the time of order. |
logs | [LogEntry] | Log entries at the time of order. |
archived | Boolean | Whether it was archived at the time of order. |
secondHand | Boolean | Whether it was second-hand at the time of order. |