Types > PurchaseOrderReject
Commerce APITypesPurchaseOrderReject
PurchaseOrderReject

Description

Topic: Purchase Orders

Fields

line_items: [PurchaseOrderLineItemPartial!]


reason: String

What happened to items?

Example: "TODO"


reject_all: Boolean

Mark all items as rejected

Example: true


Used By

Mutations

purchaseOrdersReject

Preview (typescript)

interface PurchaseOrderReject {
line_items?: PurchaseOrderLineItemPartial[]
reason?: string
reject_all?: boolean
}