CheckoutListing Object
Description
Listing information for an item in a checkout.
Declaration
type CheckoutListing {
_id: String!
id: Float!
prices: CheckoutListingPrice!
comments: String
privateComments: String
location: String
discogsId: String
taxDefinition: String
preventDiscogsListing: Boolean
onePerCustomer: Boolean
stock: CheckoutStock!
supplierCode: String
posted: Date
available: Date
categories: [String]
preOrder: Boolean
options: [CheckoutListingOption!]!
}
Fields
| Name | Type | Description |
|---|---|---|
_id | String! | Internal database identifier. |
id | Float! | Numeric identifier for the listing. |
prices | CheckoutListingPrice! | Pricing information for this listing. |
comments | String | Public comments about the listing. |
privateComments | String | Private comments visible only to shop administrators. |
location | String | Physical location of the item. |
discogsId | String | External identifier from the marketplace system. |
taxDefinition | String | Tax definition identifier for this listing. |
preventDiscogsListing | Boolean | Whether to prevent listing on the marketplace system. |
onePerCustomer | Boolean | Whether only one item per customer is allowed. |
stock | CheckoutStock! | Stock quantity information. |
supplierCode | String | Supplier code for this listing. |
posted | Date | Date when the listing was posted. |
available | Date | Date when the item becomes available for purchase. |
categories | [String] | Categories this listing belongs to. |
preOrder | Boolean | Whether this is a pre-order listing. |
options | [CheckoutListingOption!]! | Product option variants for this listing. |