/**
  * Gets all associated ShippingAccountsAsModifiedBy as an array of ShippingAccount objects
  * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query
  * @return ShippingAccount[]
  */
 public function GetShippingAccountAsModifiedByArray($objOptionalClauses = null)
 {
     if (is_null($this->intUserAccountId)) {
         return array();
     }
     try {
         return ShippingAccount::LoadArrayByModifiedBy($this->intUserAccountId, $objOptionalClauses);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
 }