State Entity

<state>
    <state />         // Bought, Paid, Sent, Received, Lost, Cancelled
    <dateBought />
    <datePaid />
    <dateSent />
    <dateReceived />
    <dateCancelled />
</state>

See also: Order Entity

Depending on the state itself, only applicable dates are returned, e.g. when an order was bought, but not paid yet, only the date of purchase (<dateBought />) is returned.

Example

<state>
    <state>paid</state>
    <dateBought>2013-08-27 23:59:48</dateBought>
    <datePaid>2013-08-27 23:59:48</datePaid>
</state>