diff --git a/commerce/interfaces.py b/commerce/interfaces.py index 87b942e..fc4ee57 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -360,6 +360,9 @@ class IOrder(Interface): paymentId = schema.TextLine( title=u'Payment ID', description=u'A string identifying the payment transaction.') + state = schema.TextLine( + title=u'State', + description=u'A string specifying the state of the order.') comments = schema.Text( title=u'Comments', description=u'Some arbitrary text associated with the order.')