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