<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * This file aims to show you how to use this generated package.
 * In addition, the goal is to show which methods are available and the first needed parameter(s)
 * You have to use an associative array such as:
 * - the key must be a constant beginning with WSDL_ from AbstractSoapClientBase class (each generated ServiceType class extends this class)
 * - the value must be the corresponding key value (each option matches a {@link http://www.php.net/manual/en/soapclient.soapclient.php} option)
 * $options = array(
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'https://developer.ebay.com/webservices/latest/ebaysvc.wsdl',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_TRACE =&gt; true,
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_LOGIN =&gt; 'you_secret_login',
 * \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_PASSWORD =&gt; 'you_secret_password',
 * );
 * etc...
 */
require_once __DIR__ . '/vendor/autoload.php';
/**
 * Minimal options
 */
$options = array(
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_URL =&gt; 'https://developer.ebay.com/webservices/latest/ebaysvc.wsdl',
    \WsdlToPhp\PackageBase\AbstractSoapClientBase::WSDL_CLASSMAP =&gt; ClassMap::get(),
);
/**
 * Samples for Add ServiceType
 */
$add = new \ServiceType\Add($options);
$add-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for AddFixedPriceItem operation/method
 */
if ($add-&gt;AddFixedPriceItem(new \StructType\AddFixedPriceItemRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddItem operation/method
 */
if ($add-&gt;AddItem(new \StructType\AddItemRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddItems operation/method
 */
if ($add-&gt;AddItems(new \StructType\AddItemsRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddMemberMessageAAQToPartner operation/method
 */
if ($add-&gt;AddMemberMessageAAQToPartner(new \StructType\AddMemberMessageAAQToPartnerRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddMemberMessageRTQ operation/method
 */
if ($add-&gt;AddMemberMessageRTQ(new \StructType\AddMemberMessageRTQRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddMemberMessagesAAQToBidder operation/method
 */
if ($add-&gt;AddMemberMessagesAAQToBidder(new \StructType\AddMemberMessagesAAQToBidderRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddOrder operation/method
 */
if ($add-&gt;AddOrder(new \StructType\AddOrderRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddSecondChanceItem operation/method
 */
if ($add-&gt;AddSecondChanceItem(new \StructType\AddSecondChanceItemRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddToItemDescription operation/method
 */
if ($add-&gt;AddToItemDescription(new \StructType\AddToItemDescriptionRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Sample call for AddToWatchList operation/method
 */
if ($add-&gt;AddToWatchList(new \StructType\AddToWatchListRequestType()) !== false) {
    print_r($add-&gt;getResult());
} else {
    print_r($add-&gt;getLastError());
}
/**
 * Samples for Complete ServiceType
 */
$complete = new \ServiceType\Complete($options);
$complete-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for CompleteSale operation/method
 */
if ($complete-&gt;CompleteSale(new \StructType\CompleteSaleRequestType()) !== false) {
    print_r($complete-&gt;getResult());
} else {
    print_r($complete-&gt;getLastError());
}
/**
 * Samples for Confirm ServiceType
 */
$confirm = new \ServiceType\Confirm($options);
$confirm-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for ConfirmIdentity operation/method
 */
if ($confirm-&gt;ConfirmIdentity(new \StructType\ConfirmIdentityRequestType()) !== false) {
    print_r($confirm-&gt;getResult());
} else {
    print_r($confirm-&gt;getLastError());
}
/**
 * Samples for Delete ServiceType
 */
$delete = new \ServiceType\Delete($options);
$delete-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for DeleteMyMessages operation/method
 */
if ($delete-&gt;DeleteMyMessages(new \StructType\DeleteMyMessagesRequestType()) !== false) {
    print_r($delete-&gt;getResult());
} else {
    print_r($delete-&gt;getLastError());
}
/**
 * Samples for End ServiceType
 */
$end = new \ServiceType\End($options);
$end-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for EndFixedPriceItem operation/method
 */
if ($end-&gt;EndFixedPriceItem(new \StructType\EndFixedPriceItemRequestType()) !== false) {
    print_r($end-&gt;getResult());
} else {
    print_r($end-&gt;getLastError());
}
/**
 * Sample call for EndItem operation/method
 */
if ($end-&gt;EndItem(new \StructType\EndItemRequestType()) !== false) {
    print_r($end-&gt;getResult());
} else {
    print_r($end-&gt;getLastError());
}
/**
 * Sample call for EndItems operation/method
 */
if ($end-&gt;EndItems(new \StructType\EndItemsRequestType()) !== false) {
    print_r($end-&gt;getResult());
} else {
    print_r($end-&gt;getLastError());
}
/**
 * Samples for Extend ServiceType
 */
$extend = new \ServiceType\Extend($options);
$extend-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for ExtendSiteHostedPictures operation/method
 */
if ($extend-&gt;ExtendSiteHostedPictures(new \StructType\ExtendSiteHostedPicturesRequestType()) !== false) {
    print_r($extend-&gt;getResult());
} else {
    print_r($extend-&gt;getLastError());
}
/**
 * Samples for Fetch ServiceType
 */
$fetch = new \ServiceType\Fetch($options);
$fetch-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for FetchToken operation/method
 */
if ($fetch-&gt;FetchToken(new \StructType\FetchTokenRequestType()) !== false) {
    print_r($fetch-&gt;getResult());
} else {
    print_r($fetch-&gt;getLastError());
}
/**
 * Samples for Get ServiceType
 */
$get = new \ServiceType\Get($options);
$get-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for GetAccount operation/method
 */
if ($get-&gt;GetAccount(new \StructType\GetAccountRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetAdFormatLeads operation/method
 */
if ($get-&gt;GetAdFormatLeads(new \StructType\GetAdFormatLeadsRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetAllBidders operation/method
 */
if ($get-&gt;GetAllBidders(new \StructType\GetAllBiddersRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetBestOffers operation/method
 */
if ($get-&gt;GetBestOffers(new \StructType\GetBestOffersRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetBidderList operation/method
 */
if ($get-&gt;GetBidderList(new \StructType\GetBidderListRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCategories operation/method
 */
if ($get-&gt;GetCategories(new \StructType\GetCategoriesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCategoryFeatures operation/method
 */
if ($get-&gt;GetCategoryFeatures(new \StructType\GetCategoryFeaturesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetCategoryMappings operation/method
 */
if ($get-&gt;GetCategoryMappings(new \StructType\GetCategoryMappingsRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetChallengeToken operation/method
 */
if ($get-&gt;GetChallengeToken(new \StructType\GetChallengeTokenRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetDescriptionTemplates operation/method
 */
if ($get-&gt;GetDescriptionTemplates(new \StructType\GetDescriptionTemplatesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetFeedback operation/method
 */
if ($get-&gt;GetFeedback(new \StructType\GetFeedbackRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetItem operation/method
 */
if ($get-&gt;GetItem(new \StructType\GetItemRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetItemShipping operation/method
 */
if ($get-&gt;GetItemShipping(new \StructType\GetItemShippingRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetItemTransactions operation/method
 */
if ($get-&gt;GetItemTransactions(new \StructType\GetItemTransactionsRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetItemsAwaitingFeedback operation/method
 */
if ($get-&gt;GetItemsAwaitingFeedback(new \StructType\GetItemsAwaitingFeedbackRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetMemberMessages operation/method
 */
if ($get-&gt;GetMemberMessages(new \StructType\GetMemberMessagesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetMessagePreferences operation/method
 */
if ($get-&gt;GetMessagePreferences(new \StructType\GetMessagePreferencesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetMyMessages operation/method
 */
if ($get-&gt;GetMyMessages(new \StructType\GetMyMessagesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetMyeBayBuying operation/method
 */
if ($get-&gt;GetMyeBayBuying(new \StructType\GetMyeBayBuyingRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetMyeBaySelling operation/method
 */
if ($get-&gt;GetMyeBaySelling(new \StructType\GetMyeBaySellingRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetNotificationPreferences operation/method
 */
if ($get-&gt;GetNotificationPreferences(new \StructType\GetNotificationPreferencesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetNotificationsUsage operation/method
 */
if ($get-&gt;GetNotificationsUsage(new \StructType\GetNotificationsUsageRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetOrders operation/method
 */
if ($get-&gt;GetOrders(new \StructType\GetOrdersRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSellerEvents operation/method
 */
if ($get-&gt;GetSellerEvents(new \StructType\GetSellerEventsRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSellerList operation/method
 */
if ($get-&gt;GetSellerList(new \StructType\GetSellerListRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSellerTransactions operation/method
 */
if ($get-&gt;GetSellerTransactions(new \StructType\GetSellerTransactionsRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetSessionID operation/method
 */
if ($get-&gt;GetSessionID(new \StructType\GetSessionIDRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetShippingDiscountProfiles operation/method
 */
if ($get-&gt;GetShippingDiscountProfiles(new \StructType\GetShippingDiscountProfilesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetStore operation/method
 */
if ($get-&gt;GetStore(new \StructType\GetStoreRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetStoreCategoryUpdateStatus operation/method
 */
if ($get-&gt;GetStoreCategoryUpdateStatus(new \StructType\GetStoreCategoryUpdateStatusRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetTaxTable operation/method
 */
if ($get-&gt;GetTaxTable(new \StructType\GetTaxTableRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetTokenStatus operation/method
 */
if ($get-&gt;GetTokenStatus(new \StructType\GetTokenStatusRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetUser operation/method
 */
if ($get-&gt;GetUser(new \StructType\GetUserRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetUserContactDetails operation/method
 */
if ($get-&gt;GetUserContactDetails(new \StructType\GetUserContactDetailsRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetUserPreferences operation/method
 */
if ($get-&gt;GetUserPreferences(new \StructType\GetUserPreferencesRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetVeROReasonCodeDetails operation/method
 */
if ($get-&gt;GetVeROReasonCodeDetails(new \StructType\GetVeROReasonCodeDetailsRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Sample call for GetVeROReportStatus operation/method
 */
if ($get-&gt;GetVeROReportStatus(new \StructType\GetVeROReportStatusRequestType()) !== false) {
    print_r($get-&gt;getResult());
} else {
    print_r($get-&gt;getLastError());
}
/**
 * Samples for Gete ServiceType
 */
$gete = new \ServiceType\Gete($options);
$gete-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for GeteBayDetails operation/method
 */
if ($gete-&gt;GeteBayDetails(new \StructType\GeteBayDetailsRequestType()) !== false) {
    print_r($gete-&gt;getResult());
} else {
    print_r($gete-&gt;getLastError());
}
/**
 * Sample call for GeteBayOfficialTime operation/method
 */
if ($gete-&gt;GeteBayOfficialTime(new \StructType\GeteBayOfficialTimeRequestType()) !== false) {
    print_r($gete-&gt;getResult());
} else {
    print_r($gete-&gt;getLastError());
}
/**
 * Samples for Leave ServiceType
 */
$leave = new \ServiceType\Leave($options);
$leave-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for LeaveFeedback operation/method
 */
if ($leave-&gt;LeaveFeedback(new \StructType\LeaveFeedbackRequestType()) !== false) {
    print_r($leave-&gt;getResult());
} else {
    print_r($leave-&gt;getLastError());
}
/**
 * Samples for Place ServiceType
 */
$place = new \ServiceType\Place($options);
$place-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for PlaceOffer operation/method
 */
if ($place-&gt;PlaceOffer(new \StructType\PlaceOfferRequestType()) !== false) {
    print_r($place-&gt;getResult());
} else {
    print_r($place-&gt;getLastError());
}
/**
 * Samples for Relist ServiceType
 */
$relist = new \ServiceType\Relist($options);
$relist-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for RelistFixedPriceItem operation/method
 */
if ($relist-&gt;RelistFixedPriceItem(new \StructType\RelistFixedPriceItemRequestType()) !== false) {
    print_r($relist-&gt;getResult());
} else {
    print_r($relist-&gt;getLastError());
}
/**
 * Sample call for RelistItem operation/method
 */
if ($relist-&gt;RelistItem(new \StructType\RelistItemRequestType()) !== false) {
    print_r($relist-&gt;getResult());
} else {
    print_r($relist-&gt;getLastError());
}
/**
 * Samples for Remove ServiceType
 */
$remove = new \ServiceType\Remove($options);
$remove-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for RemoveFromWatchList operation/method
 */
if ($remove-&gt;RemoveFromWatchList(new \StructType\RemoveFromWatchListRequestType()) !== false) {
    print_r($remove-&gt;getResult());
} else {
    print_r($remove-&gt;getLastError());
}
/**
 * Samples for Respond ServiceType
 */
$respond = new \ServiceType\Respond($options);
$respond-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for RespondToBestOffer operation/method
 */
if ($respond-&gt;RespondToBestOffer(new \StructType\RespondToBestOfferRequestType()) !== false) {
    print_r($respond-&gt;getResult());
} else {
    print_r($respond-&gt;getLastError());
}
/**
 * Sample call for RespondToFeedback operation/method
 */
if ($respond-&gt;RespondToFeedback(new \StructType\RespondToFeedbackRequestType()) !== false) {
    print_r($respond-&gt;getResult());
} else {
    print_r($respond-&gt;getLastError());
}
/**
 * Samples for Revise ServiceType
 */
$revise = new \ServiceType\Revise($options);
$revise-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for ReviseFixedPriceItem operation/method
 */
if ($revise-&gt;ReviseFixedPriceItem(new \StructType\ReviseFixedPriceItemRequestType()) !== false) {
    print_r($revise-&gt;getResult());
} else {
    print_r($revise-&gt;getLastError());
}
/**
 * Sample call for ReviseInventoryStatus operation/method
 */
if ($revise-&gt;ReviseInventoryStatus(new \StructType\ReviseInventoryStatusRequestType()) !== false) {
    print_r($revise-&gt;getResult());
} else {
    print_r($revise-&gt;getLastError());
}
/**
 * Sample call for ReviseItem operation/method
 */
if ($revise-&gt;ReviseItem(new \StructType\ReviseItemRequestType()) !== false) {
    print_r($revise-&gt;getResult());
} else {
    print_r($revise-&gt;getLastError());
}
/**
 * Sample call for ReviseMyMessages operation/method
 */
if ($revise-&gt;ReviseMyMessages(new \StructType\ReviseMyMessagesRequestType()) !== false) {
    print_r($revise-&gt;getResult());
} else {
    print_r($revise-&gt;getLastError());
}
/**
 * Sample call for ReviseMyMessagesFolders operation/method
 */
if ($revise-&gt;ReviseMyMessagesFolders(new \StructType\ReviseMyMessagesFoldersRequestType()) !== false) {
    print_r($revise-&gt;getResult());
} else {
    print_r($revise-&gt;getLastError());
}
/**
 * Samples for Revoke ServiceType
 */
$revoke = new \ServiceType\Revoke($options);
$revoke-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for RevokeToken operation/method
 */
if ($revoke-&gt;RevokeToken(new \StructType\RevokeTokenRequestType()) !== false) {
    print_r($revoke-&gt;getResult());
} else {
    print_r($revoke-&gt;getLastError());
}
/**
 * Samples for Send ServiceType
 */
$send = new \ServiceType\Send($options);
$send-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for SendInvoice operation/method
 */
if ($send-&gt;SendInvoice(new \StructType\SendInvoiceRequestType()) !== false) {
    print_r($send-&gt;getResult());
} else {
    print_r($send-&gt;getLastError());
}
/**
 * Samples for Set ServiceType
 */
$set = new \ServiceType\Set($options);
$set-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for SetMessagePreferences operation/method
 */
if ($set-&gt;SetMessagePreferences(new \StructType\SetMessagePreferencesRequestType()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetNotificationPreferences operation/method
 */
if ($set-&gt;SetNotificationPreferences(new \StructType\SetNotificationPreferencesRequestType()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetShippingDiscountProfiles operation/method
 */
if ($set-&gt;SetShippingDiscountProfiles(new \StructType\SetShippingDiscountProfilesRequestType()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetStoreCategories operation/method
 */
if ($set-&gt;SetStoreCategories(new \StructType\SetStoreCategoriesRequestType()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetTaxTable operation/method
 */
if ($set-&gt;SetTaxTable(new \StructType\SetTaxTableRequestType()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetUserNotes operation/method
 */
if ($set-&gt;SetUserNotes(new \StructType\SetUserNotesRequestType()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Sample call for SetUserPreferences operation/method
 */
if ($set-&gt;SetUserPreferences(new \StructType\SetUserPreferencesRequestType()) !== false) {
    print_r($set-&gt;getResult());
} else {
    print_r($set-&gt;getLastError());
}
/**
 * Samples for Upload ServiceType
 */
$upload = new \ServiceType\Upload($options);
$upload-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for UploadSiteHostedPictures operation/method
 */
if ($upload-&gt;UploadSiteHostedPictures(new \StructType\UploadSiteHostedPicturesRequestType()) !== false) {
    print_r($upload-&gt;getResult());
} else {
    print_r($upload-&gt;getLastError());
}
/**
 * Samples for Validate ServiceType
 */
$validate = new \ServiceType\Validate($options);
$validate-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for ValidateChallengeInput operation/method
 */
if ($validate-&gt;ValidateChallengeInput(new \StructType\ValidateChallengeInputRequestType()) !== false) {
    print_r($validate-&gt;getResult());
} else {
    print_r($validate-&gt;getLastError());
}
/**
 * Sample call for ValidateTestUserRegistration operation/method
 */
if ($validate-&gt;ValidateTestUserRegistration(new \StructType\ValidateTestUserRegistrationRequestType()) !== false) {
    print_r($validate-&gt;getResult());
} else {
    print_r($validate-&gt;getLastError());
}
/**
 * Samples for Ve ServiceType
 */
$ve = new \ServiceType\Ve($options);
$ve-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for VeROReportItems operation/method
 */
if ($ve-&gt;VeROReportItems(new \StructType\VeROReportItemsRequestType()) !== false) {
    print_r($ve-&gt;getResult());
} else {
    print_r($ve-&gt;getLastError());
}
/**
 * Samples for Verify ServiceType
 */
$verify = new \ServiceType\Verify($options);
$verify-&gt;setSoapHeaderRequesterCredentials($RequesterCredentials);
/**
 * Sample call for VerifyAddFixedPriceItem operation/method
 */
if ($verify-&gt;VerifyAddFixedPriceItem(new \StructType\VerifyAddFixedPriceItemRequestType()) !== false) {
    print_r($verify-&gt;getResult());
} else {
    print_r($verify-&gt;getLastError());
}
/**
 * Sample call for VerifyAddItem operation/method
 */
if ($verify-&gt;VerifyAddItem(new \StructType\VerifyAddItemRequestType()) !== false) {
    print_r($verify-&gt;getResult());
} else {
    print_r($verify-&gt;getLastError());
}
/**
 * Sample call for VerifyAddSecondChanceItem operation/method
 */
if ($verify-&gt;VerifyAddSecondChanceItem(new \StructType\VerifyAddSecondChanceItemRequestType()) !== false) {
    print_r($verify-&gt;getResult());
} else {
    print_r($verify-&gt;getLastError());
}
/**
 * Sample call for VerifyRelistItem operation/method
 */
if ($verify-&gt;VerifyRelistItem(new \StructType\VerifyRelistItemRequestType()) !== false) {
    print_r($verify-&gt;getResult());
} else {
    print_r($verify-&gt;getLastError());
}
</pre></body></html>