Skip to main content

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

NameTypeDescription
idString!Discogs order identifier.
uriString!URI to access the order on Discogs.
statusString!Current status of the order.
next_status[String]List of possible next status values for the order.
feeDiscogsOrderFeeDiscogs fee for the order.
createdDateDate when the order was created.
items[DiscogsOrderEntryItem!]!List of items in the order.
shipping_addressStringShipping address for the order.
additional_instructionsStringAdditional shipping instructions.
archivedBooleanWhether the order has been archived.
last_activityDateDate of the last activity on the order.
buyerDiscogsOrderBuyer!Buyer information for the order.
totalDiscogsOrderFee!Total amount of the order.
importedBoolean!Whether the order has been imported into the local system.