DiscogsOrderEntry Object
Description
Represents a single order from Discogs.
Declaration
type DiscogsOrderEntry {
id: String!
uri: String!
status: String!
next_status: [String]
fee: DiscogsOrderFee
created: Date
items: [DiscogsOrderEntryItem!]!
shipping_address: String
additional_instructions: String
archived: Boolean
last_activity: Date
buyer: DiscogsOrderBuyer!
total: DiscogsOrderFee!
imported: Boolean!
}
Fields
| Name | Type | Description |
|---|---|---|
id | String! | Discogs order identifier. |
uri | String! | URI to access the order on Discogs. |
status | String! | Current status of the order. |
next_status | [String] | List of possible next status values for the order. |
fee | DiscogsOrderFee | Discogs fee for the order. |
created | Date | Date when the order was created. |
items | [DiscogsOrderEntryItem!]! | List of items in the order. |
shipping_address | String | Shipping address for the order. |
additional_instructions | String | Additional shipping instructions. |
archived | Boolean | Whether the order has been archived. |
last_activity | Date | Date of the last activity on the order. |
buyer | DiscogsOrderBuyer! | Buyer information for the order. |
total | DiscogsOrderFee! | Total amount of the order. |
imported | Boolean! | Whether the order has been imported into the local system. |