/**
  * List of possible object states.
  * @return string[]
  */
 protected function _states()
 {
     $Result = parent::_states();
     $Result[Draft] = 'Draft';
     $Result[Queued] = 'Queued';
     $Result[Abandoned] = 'Abandoned';
     return $Result;
 }