Ejemplo n.º 1
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Receipt();
     if (property_exists($objSoapObject, 'ReceiptId')) {
         $objToReturn->intReceiptId = $objSoapObject->ReceiptId;
     }
     if (property_exists($objSoapObject, 'Transaction') && $objSoapObject->Transaction) {
         $objToReturn->Transaction = Transaction::GetObjectFromSoapObject($objSoapObject->Transaction);
     }
     if (property_exists($objSoapObject, 'FromCompany') && $objSoapObject->FromCompany) {
         $objToReturn->FromCompany = Company::GetObjectFromSoapObject($objSoapObject->FromCompany);
     }
     if (property_exists($objSoapObject, 'FromContact') && $objSoapObject->FromContact) {
         $objToReturn->FromContact = Contact::GetObjectFromSoapObject($objSoapObject->FromContact);
     }
     if (property_exists($objSoapObject, 'ToContact') && $objSoapObject->ToContact) {
         $objToReturn->ToContact = Contact::GetObjectFromSoapObject($objSoapObject->ToContact);
     }
     if (property_exists($objSoapObject, 'ToAddress') && $objSoapObject->ToAddress) {
         $objToReturn->ToAddress = Address::GetObjectFromSoapObject($objSoapObject->ToAddress);
     }
     if (property_exists($objSoapObject, 'ReceiptNumber')) {
         $objToReturn->strReceiptNumber = $objSoapObject->ReceiptNumber;
     }
     if (property_exists($objSoapObject, 'DueDate')) {
         $objToReturn->dttDueDate = new QDateTime($objSoapObject->DueDate);
     }
     if (property_exists($objSoapObject, 'ReceiptDate')) {
         $objToReturn->dttReceiptDate = new QDateTime($objSoapObject->ReceiptDate);
     }
     if (property_exists($objSoapObject, 'ReceivedFlag')) {
         $objToReturn->blnReceivedFlag = $objSoapObject->ReceivedFlag;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
Ejemplo n.º 2
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Shipment();
     if (property_exists($objSoapObject, 'ShipmentId')) {
         $objToReturn->intShipmentId = $objSoapObject->ShipmentId;
     }
     if (property_exists($objSoapObject, 'ShipmentNumber')) {
         $objToReturn->strShipmentNumber = $objSoapObject->ShipmentNumber;
     }
     if (property_exists($objSoapObject, 'Transaction') && $objSoapObject->Transaction) {
         $objToReturn->Transaction = Transaction::GetObjectFromSoapObject($objSoapObject->Transaction);
     }
     if (property_exists($objSoapObject, 'FromCompany') && $objSoapObject->FromCompany) {
         $objToReturn->FromCompany = Company::GetObjectFromSoapObject($objSoapObject->FromCompany);
     }
     if (property_exists($objSoapObject, 'FromContact') && $objSoapObject->FromContact) {
         $objToReturn->FromContact = Contact::GetObjectFromSoapObject($objSoapObject->FromContact);
     }
     if (property_exists($objSoapObject, 'FromAddress') && $objSoapObject->FromAddress) {
         $objToReturn->FromAddress = Address::GetObjectFromSoapObject($objSoapObject->FromAddress);
     }
     if (property_exists($objSoapObject, 'ToCompany') && $objSoapObject->ToCompany) {
         $objToReturn->ToCompany = Company::GetObjectFromSoapObject($objSoapObject->ToCompany);
     }
     if (property_exists($objSoapObject, 'ToContact') && $objSoapObject->ToContact) {
         $objToReturn->ToContact = Contact::GetObjectFromSoapObject($objSoapObject->ToContact);
     }
     if (property_exists($objSoapObject, 'ToAddress') && $objSoapObject->ToAddress) {
         $objToReturn->ToAddress = Address::GetObjectFromSoapObject($objSoapObject->ToAddress);
     }
     if (property_exists($objSoapObject, 'Courier') && $objSoapObject->Courier) {
         $objToReturn->Courier = Courier::GetObjectFromSoapObject($objSoapObject->Courier);
     }
     if (property_exists($objSoapObject, 'TrackingNumber')) {
         $objToReturn->strTrackingNumber = $objSoapObject->TrackingNumber;
     }
     if (property_exists($objSoapObject, 'ShipDate')) {
         $objToReturn->dttShipDate = new QDateTime($objSoapObject->ShipDate);
     }
     if (property_exists($objSoapObject, 'ShippedFlag')) {
         $objToReturn->blnShippedFlag = $objSoapObject->ShippedFlag;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
Ejemplo n.º 3
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Company();
     if (property_exists($objSoapObject, 'CompanyId')) {
         $objToReturn->intCompanyId = $objSoapObject->CompanyId;
     }
     if (property_exists($objSoapObject, 'Address') && $objSoapObject->Address) {
         $objToReturn->Address = Address::GetObjectFromSoapObject($objSoapObject->Address);
     }
     if (property_exists($objSoapObject, 'ShortDescription')) {
         $objToReturn->strShortDescription = $objSoapObject->ShortDescription;
     }
     if (property_exists($objSoapObject, 'Website')) {
         $objToReturn->strWebsite = $objSoapObject->Website;
     }
     if (property_exists($objSoapObject, 'Telephone')) {
         $objToReturn->strTelephone = $objSoapObject->Telephone;
     }
     if (property_exists($objSoapObject, 'Fax')) {
         $objToReturn->strFax = $objSoapObject->Fax;
     }
     if (property_exists($objSoapObject, 'Email')) {
         $objToReturn->strEmail = $objSoapObject->Email;
     }
     if (property_exists($objSoapObject, 'LongDescription')) {
         $objToReturn->strLongDescription = $objSoapObject->LongDescription;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
Ejemplo n.º 4
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new FormAnswer();
     if (property_exists($objSoapObject, 'Id')) {
         $objToReturn->intId = $objSoapObject->Id;
     }
     if (property_exists($objSoapObject, 'SignupEntry') && $objSoapObject->SignupEntry) {
         $objToReturn->SignupEntry = SignupEntry::GetObjectFromSoapObject($objSoapObject->SignupEntry);
     }
     if (property_exists($objSoapObject, 'FormQuestion') && $objSoapObject->FormQuestion) {
         $objToReturn->FormQuestion = FormQuestion::GetObjectFromSoapObject($objSoapObject->FormQuestion);
     }
     if (property_exists($objSoapObject, 'TextValue')) {
         $objToReturn->strTextValue = $objSoapObject->TextValue;
     }
     if (property_exists($objSoapObject, 'Address') && $objSoapObject->Address) {
         $objToReturn->Address = Address::GetObjectFromSoapObject($objSoapObject->Address);
     }
     if (property_exists($objSoapObject, 'Phone') && $objSoapObject->Phone) {
         $objToReturn->Phone = Phone::GetObjectFromSoapObject($objSoapObject->Phone);
     }
     if (property_exists($objSoapObject, 'Email') && $objSoapObject->Email) {
         $objToReturn->Email = Email::GetObjectFromSoapObject($objSoapObject->Email);
     }
     if (property_exists($objSoapObject, 'IntegerValue')) {
         $objToReturn->intIntegerValue = $objSoapObject->IntegerValue;
     }
     if (property_exists($objSoapObject, 'BooleanValue')) {
         $objToReturn->blnBooleanValue = $objSoapObject->BooleanValue;
     }
     if (property_exists($objSoapObject, 'DateValue')) {
         $objToReturn->dttDateValue = new QDateTime($objSoapObject->DateValue);
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
Ejemplo n.º 5
0
 public static function GetArrayFromSoapArray($objSoapArray)
 {
     $objArrayToReturn = array();
     foreach ($objSoapArray as $objSoapObject) {
         array_push($objArrayToReturn, Address::GetObjectFromSoapObject($objSoapObject));
     }
     return $objArrayToReturn;
 }
Ejemplo n.º 6
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Person();
     if (property_exists($objSoapObject, 'Id')) {
         $objToReturn->intId = $objSoapObject->Id;
     }
     if (property_exists($objSoapObject, 'MembershipStatusTypeId')) {
         $objToReturn->intMembershipStatusTypeId = $objSoapObject->MembershipStatusTypeId;
     }
     if (property_exists($objSoapObject, 'MaritalStatusTypeId')) {
         $objToReturn->intMaritalStatusTypeId = $objSoapObject->MaritalStatusTypeId;
     }
     if (property_exists($objSoapObject, 'FirstName')) {
         $objToReturn->strFirstName = $objSoapObject->FirstName;
     }
     if (property_exists($objSoapObject, 'MiddleName')) {
         $objToReturn->strMiddleName = $objSoapObject->MiddleName;
     }
     if (property_exists($objSoapObject, 'LastName')) {
         $objToReturn->strLastName = $objSoapObject->LastName;
     }
     if (property_exists($objSoapObject, 'MailingLabel')) {
         $objToReturn->strMailingLabel = $objSoapObject->MailingLabel;
     }
     if (property_exists($objSoapObject, 'PriorLastNames')) {
         $objToReturn->strPriorLastNames = $objSoapObject->PriorLastNames;
     }
     if (property_exists($objSoapObject, 'Nickname')) {
         $objToReturn->strNickname = $objSoapObject->Nickname;
     }
     if (property_exists($objSoapObject, 'Title')) {
         $objToReturn->strTitle = $objSoapObject->Title;
     }
     if (property_exists($objSoapObject, 'Suffix')) {
         $objToReturn->strSuffix = $objSoapObject->Suffix;
     }
     if (property_exists($objSoapObject, 'Gender')) {
         $objToReturn->strGender = $objSoapObject->Gender;
     }
     if (property_exists($objSoapObject, 'DateOfBirth')) {
         $objToReturn->dttDateOfBirth = new QDateTime($objSoapObject->DateOfBirth);
     }
     if (property_exists($objSoapObject, 'DobYearApproximateFlag')) {
         $objToReturn->blnDobYearApproximateFlag = $objSoapObject->DobYearApproximateFlag;
     }
     if (property_exists($objSoapObject, 'DobGuessedFlag')) {
         $objToReturn->blnDobGuessedFlag = $objSoapObject->DobGuessedFlag;
     }
     if (property_exists($objSoapObject, 'Age')) {
         $objToReturn->intAge = $objSoapObject->Age;
     }
     if (property_exists($objSoapObject, 'DeceasedFlag')) {
         $objToReturn->blnDeceasedFlag = $objSoapObject->DeceasedFlag;
     }
     if (property_exists($objSoapObject, 'DateDeceased')) {
         $objToReturn->dttDateDeceased = new QDateTime($objSoapObject->DateDeceased);
     }
     if (property_exists($objSoapObject, 'CurrentHeadShot') && $objSoapObject->CurrentHeadShot) {
         $objToReturn->CurrentHeadShot = HeadShot::GetObjectFromSoapObject($objSoapObject->CurrentHeadShot);
     }
     if (property_exists($objSoapObject, 'MailingAddress') && $objSoapObject->MailingAddress) {
         $objToReturn->MailingAddress = Address::GetObjectFromSoapObject($objSoapObject->MailingAddress);
     }
     if (property_exists($objSoapObject, 'StewardshipAddress') && $objSoapObject->StewardshipAddress) {
         $objToReturn->StewardshipAddress = Address::GetObjectFromSoapObject($objSoapObject->StewardshipAddress);
     }
     if (property_exists($objSoapObject, 'PrimaryPhone') && $objSoapObject->PrimaryPhone) {
         $objToReturn->PrimaryPhone = Phone::GetObjectFromSoapObject($objSoapObject->PrimaryPhone);
     }
     if (property_exists($objSoapObject, 'PrimaryEmail') && $objSoapObject->PrimaryEmail) {
         $objToReturn->PrimaryEmail = Email::GetObjectFromSoapObject($objSoapObject->PrimaryEmail);
     }
     if (property_exists($objSoapObject, 'CanMailFlag')) {
         $objToReturn->blnCanMailFlag = $objSoapObject->CanMailFlag;
     }
     if (property_exists($objSoapObject, 'CanPhoneFlag')) {
         $objToReturn->blnCanPhoneFlag = $objSoapObject->CanPhoneFlag;
     }
     if (property_exists($objSoapObject, 'CanEmailFlag')) {
         $objToReturn->blnCanEmailFlag = $objSoapObject->CanEmailFlag;
     }
     if (property_exists($objSoapObject, 'PrimaryAddressText')) {
         $objToReturn->strPrimaryAddressText = $objSoapObject->PrimaryAddressText;
     }
     if (property_exists($objSoapObject, 'PrimaryCityText')) {
         $objToReturn->strPrimaryCityText = $objSoapObject->PrimaryCityText;
     }
     if (property_exists($objSoapObject, 'PrimaryStateText')) {
         $objToReturn->strPrimaryStateText = $objSoapObject->PrimaryStateText;
     }
     if (property_exists($objSoapObject, 'PrimaryZipCodeText')) {
         $objToReturn->strPrimaryZipCodeText = $objSoapObject->PrimaryZipCodeText;
     }
     if (property_exists($objSoapObject, 'PrimaryPhoneText')) {
         $objToReturn->strPrimaryPhoneText = $objSoapObject->PrimaryPhoneText;
     }
     if (property_exists($objSoapObject, 'PublicCreationFlag')) {
         $objToReturn->blnPublicCreationFlag = $objSoapObject->PublicCreationFlag;
     }
     if (property_exists($objSoapObject, 'CoPrimaryObject') && $objSoapObject->CoPrimaryObject) {
         $objToReturn->CoPrimaryObject = Person::GetObjectFromSoapObject($objSoapObject->CoPrimaryObject);
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
Ejemplo n.º 7
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Phone();
     if (property_exists($objSoapObject, 'Id')) {
         $objToReturn->intId = $objSoapObject->Id;
     }
     if (property_exists($objSoapObject, 'PhoneTypeId')) {
         $objToReturn->intPhoneTypeId = $objSoapObject->PhoneTypeId;
     }
     if (property_exists($objSoapObject, 'Address') && $objSoapObject->Address) {
         $objToReturn->Address = Address::GetObjectFromSoapObject($objSoapObject->Address);
     }
     if (property_exists($objSoapObject, 'Person') && $objSoapObject->Person) {
         $objToReturn->Person = Person::GetObjectFromSoapObject($objSoapObject->Person);
     }
     if (property_exists($objSoapObject, 'MobileProvider') && $objSoapObject->MobileProvider) {
         $objToReturn->MobileProvider = MobileProvider::GetObjectFromSoapObject($objSoapObject->MobileProvider);
     }
     if (property_exists($objSoapObject, 'Number')) {
         $objToReturn->strNumber = $objSoapObject->Number;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
Ejemplo n.º 8
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Contact();
     if (property_exists($objSoapObject, 'ContactId')) {
         $objToReturn->intContactId = $objSoapObject->ContactId;
     }
     if (property_exists($objSoapObject, 'Company') && $objSoapObject->Company) {
         $objToReturn->Company = Company::GetObjectFromSoapObject($objSoapObject->Company);
     }
     if (property_exists($objSoapObject, 'Address') && $objSoapObject->Address) {
         $objToReturn->Address = Address::GetObjectFromSoapObject($objSoapObject->Address);
     }
     if (property_exists($objSoapObject, 'FirstName')) {
         $objToReturn->strFirstName = $objSoapObject->FirstName;
     }
     if (property_exists($objSoapObject, 'LastName')) {
         $objToReturn->strLastName = $objSoapObject->LastName;
     }
     if (property_exists($objSoapObject, 'Title')) {
         $objToReturn->strTitle = $objSoapObject->Title;
     }
     if (property_exists($objSoapObject, 'Email')) {
         $objToReturn->strEmail = $objSoapObject->Email;
     }
     if (property_exists($objSoapObject, 'PhoneOffice')) {
         $objToReturn->strPhoneOffice = $objSoapObject->PhoneOffice;
     }
     if (property_exists($objSoapObject, 'PhoneHome')) {
         $objToReturn->strPhoneHome = $objSoapObject->PhoneHome;
     }
     if (property_exists($objSoapObject, 'PhoneMobile')) {
         $objToReturn->strPhoneMobile = $objSoapObject->PhoneMobile;
     }
     if (property_exists($objSoapObject, 'Fax')) {
         $objToReturn->strFax = $objSoapObject->Fax;
     }
     if (property_exists($objSoapObject, 'Description')) {
         $objToReturn->strDescription = $objSoapObject->Description;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new AddressCustomFieldHelper();
     if (property_exists($objSoapObject, 'Address') && $objSoapObject->Address) {
         $objToReturn->Address = Address::GetObjectFromSoapObject($objSoapObject->Address);
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }