code
stringlengths
17
247k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
protected function handleAddJobToJobSeekerCommand(AddJobToJobSeekerCommand $command) { $jobSeeker = $this->repository->load($command->jobSeekerId); $jobSeeker->heldJob($command->jobId, $command->title, $command->description); $this->repository->save($jobSeeker); }
An existing job seeker aggregate root is loaded and heldJob() is called.
handleAddJobToJobSeekerCommand
php
broadway/broadway
examples/event-sourced-multiple-dyanmic-child-entities/JobSeekers.php
https://github.com/broadway/broadway/blob/master/examples/event-sourced-multiple-dyanmic-child-entities/JobSeekers.php
MIT
protected function handleDescribeJobForJobSeekerCommand(DescribeJobForJobSeekerCommand $command) { $jobSeeker = $this->repository->load($command->jobSeekerId); $jobSeeker->describeJob($command->jobId, $command->title, $command->description); $this->repository->save($jobSeeker); }
An existing job seeker aggregate root is loaded and describeJob() is called.
handleDescribeJobForJobSeekerCommand
php
broadway/broadway
examples/event-sourced-multiple-dyanmic-child-entities/JobSeekers.php
https://github.com/broadway/broadway/blob/master/examples/event-sourced-multiple-dyanmic-child-entities/JobSeekers.php
MIT
protected function handleRemoveAccidentallyAddedJobFromJobSeekerCommand(RemoveAccidentallyAddedJobFromJobSeekerCommand $command) { $jobSeeker = $this->repository->load($command->jobSeekerId); $jobSeeker->removeAccidentallyAddedJob($command->jobId); $this->repository->save($jobSeeker); }
An existing job seeker aggregate root is loaded and removeAccidentallyAddedJob() is called.
handleRemoveAccidentallyAddedJobFromJobSeekerCommand
php
broadway/broadway
examples/event-sourced-multiple-dyanmic-child-entities/JobSeekers.php
https://github.com/broadway/broadway/blob/master/examples/event-sourced-multiple-dyanmic-child-entities/JobSeekers.php
MIT
public function handleExampleCommand(ExampleCommand $command) { echo $command->getMessage()."\n"; }
Method handling ExampleCommand commands. The fact that this method handles the ExampleCommand is signalled by the convention of the method name: `handle<CommandClassName>`.
handleExampleCommand
php
broadway/broadway
examples/command-handling/command-handling.php
https://github.com/broadway/broadway/blob/master/examples/command-handling/command-handling.php
MIT
public static function manufacture($partId, $manufacturerId, $manufacturerName) { $part = new self(); // After instantiation of the object we apply the "PartWasManufacturedEvent". $part->apply(new PartWasManufacturedEvent($partId, $manufacturerId, $manufacturerName)); return $part; }
Factory method to create a part.
manufacture
php
broadway/broadway
examples/event-sourced-child-entity/Parts.php
https://github.com/broadway/broadway/blob/master/examples/event-sourced-child-entity/Parts.php
MIT
protected function handleManufacturePartCommand(ManufacturePartCommand $command) { $part = Part::manufacture($command->partId, $command->manufacturerId, $command->manufacturerName); $this->repository->save($part); }
A new part aggregate root is created and added to the repository.
handleManufacturePartCommand
php
broadway/broadway
examples/event-sourced-child-entity/Parts.php
https://github.com/broadway/broadway/blob/master/examples/event-sourced-child-entity/Parts.php
MIT
protected function handleRenameManufacturerForPartCommand(RenameManufacturerForPartCommand $command) { $part = $this->repository->load($command->partId); $part->renameManufacturer($command->manufacturerName); $this->repository->save($part); }
An existing part aggregate root is loaded and renameManufacturerTo() is called.
handleRenameManufacturerForPartCommand
php
broadway/broadway
examples/event-sourced-child-entity/Parts.php
https://github.com/broadway/broadway/blob/master/examples/event-sourced-child-entity/Parts.php
MIT
public function get(string $key) { return $this->values[$key] ?? null; }
Get a specific metadata value based on key.
get
php
broadway/broadway
src/Broadway/Domain/Metadata.php
https://github.com/broadway/broadway/blob/master/src/Broadway/Domain/Metadata.php
MIT
public function process($text) { $iterations = $this->maxIterations === null ? 1 : $this->maxIterations; $context = new ProcessorContext(); $context->processor = $this; while ($iterations--) { $context->iterationNumber++; $newText = $this->processIteration($text, $context, null); if ($newText === $text) { break; } $text = $newText; $iterations += $this->maxIterations === null ? 1 : 0; } return $text; }
Entry point for shortcode processing. Implements iterative algorithm for both limited and unlimited number of iterations. @param string $text Text to process @return string
process
php
thunderer/Shortcode
src/Processor/Processor.php
https://github.com/thunderer/Shortcode/blob/master/src/Processor/Processor.php
MIT
public function withEventContainer(EventContainerInterface $eventContainer) { $self = clone $this; $self->eventContainer = $eventContainer; return $self; }
Container for event handlers used in this processor. @param EventContainerInterface $eventContainer @return self
withEventContainer
php
thunderer/Shortcode
src/Processor/Processor.php
https://github.com/thunderer/Shortcode/blob/master/src/Processor/Processor.php
MIT
public function withRecursionDepth($depth) { /** @psalm-suppress DocblockTypeContradiction */ if (null !== $depth && !(is_int($depth) && $depth >= 0)) { $msg = 'Recursion depth must be null (infinite) or integer >= 0!'; throw new \InvalidArgumentException($msg); } $self = clone $this; $self->recursionDepth = $depth; return $self; }
Recursion depth level, null means infinite, any integer greater than or equal to zero sets value (number of recursion levels). Zero disables recursion. Defaults to null. @param int|null $depth @return self
withRecursionDepth
php
thunderer/Shortcode
src/Processor/Processor.php
https://github.com/thunderer/Shortcode/blob/master/src/Processor/Processor.php
MIT
public function withMaxIterations($iterations) { /** @psalm-suppress DocblockTypeContradiction */ if (null !== $iterations && !(is_int($iterations) && $iterations > 0)) { $msg = 'Maximum number of iterations must be null (infinite) or integer > 0!'; throw new \InvalidArgumentException($msg); } $self = clone $this; $self->maxIterations = $iterations; return $self; }
Maximum number of iterations, null means infinite, any integer greater than zero sets value. Zero is invalid because there must be at least one iteration. Defaults to 1. Loop breaks if result of two consequent iterations shows no change in processed text. @param int|null $iterations @return self
withMaxIterations
php
thunderer/Shortcode
src/Processor/Processor.php
https://github.com/thunderer/Shortcode/blob/master/src/Processor/Processor.php
MIT
public function withAutoProcessContent($flag) { /** @psalm-suppress DocblockTypeContradiction */ if (!is_bool($flag)) { $msg = 'Auto processing flag must be a boolean value!'; throw new \InvalidArgumentException($msg); } $self = clone $this; $self->autoProcessContent = $flag; return $self; }
Whether shortcode content will be automatically processed and handler already receives shortcode with processed content. If false, every shortcode handler needs to process content on its own. Default true. @param bool $flag True if enabled (default), false otherwise @return self
withAutoProcessContent
php
thunderer/Shortcode
src/Processor/Processor.php
https://github.com/thunderer/Shortcode/blob/master/src/Processor/Processor.php
MIT
public function __invoke(ShortcodeInterface $shortcode) { return $shortcode->getContent(); }
[content]text to display[/content] @param ShortcodeInterface $shortcode @return null|string
__invoke
php
thunderer/Shortcode
src/Handler/ContentHandler.php
https://github.com/thunderer/Shortcode/blob/master/src/Handler/ContentHandler.php
MIT
public function __invoke(ShortcodeInterface $shortcode) { return null; }
Special shortcode to discard any input and return empty text @param ShortcodeInterface $shortcode @return null
__invoke
php
thunderer/Shortcode
src/Handler/NullHandler.php
https://github.com/thunderer/Shortcode/blob/master/src/Handler/NullHandler.php
MIT
public function __invoke(ProcessedShortcode $shortcode) { return $shortcode->getTextContent(); }
[raw]any content [with] or [without /] shortcodes[/raw] @param ProcessedShortcode $shortcode @return string
__invoke
php
thunderer/Shortcode
src/Handler/RawHandler.php
https://github.com/thunderer/Shortcode/blob/master/src/Handler/RawHandler.php
MIT
public function __invoke(ShortcodeInterface $shortcode) { return $this->serializer->serialize($shortcode); }
[text arg=val /] [text arg=val]content[/text] [json arg=val /] [json arg=val]content[/json] [xml arg=val /] [xml arg=val]content[/xml] [yaml arg=val /] [yaml arg=val]content[/yaml] @param ShortcodeInterface $shortcode @return string
__invoke
php
thunderer/Shortcode
src/Handler/SerializerHandler.php
https://github.com/thunderer/Shortcode/blob/master/src/Handler/SerializerHandler.php
MIT
public function __invoke(ShortcodeInterface $shortcode) { return $shortcode->getName(); }
[name /] [name]content is ignored[/name] @param ShortcodeInterface $shortcode @return string
__invoke
php
thunderer/Shortcode
src/Handler/NameHandler.php
https://github.com/thunderer/Shortcode/blob/master/src/Handler/NameHandler.php
MIT
public static function isFakerColumn($replacement) { return str_starts_with($replacement, self::PREFIX); }
check if replacement option is a faker option static to prevent unnecessary instantiation for non-faker columns. @param string $replacement @return bool
isFakerColumn
php
webfactory/slimdump
src/Webfactory/Slimdump/Config/FakerReplacer.php
https://github.com/webfactory/slimdump/blob/master/src/Webfactory/Slimdump/Config/FakerReplacer.php
MIT
public function generateReplacement($replacementId) { $replacementMethodName = str_replace(self::PREFIX, '', $replacementId); if (str_contains($replacementMethodName, '->')) { [$modifierName, $replacementMethodName] = explode('->', $replacementMethodName); $this->validateReplacementConfiguredModifier($modifierName, $replacementMethodName); return (string) $this->faker->$modifierName->$replacementMethodName; } $this->validateReplacementConfigured($replacementMethodName); return (string) $this->faker->$replacementMethodName; }
wrapper method which removes the prefix calls the defined faker method. @param string $replacementId @return string
generateReplacement
php
webfactory/slimdump
src/Webfactory/Slimdump/Config/FakerReplacer.php
https://github.com/webfactory/slimdump/blob/master/src/Webfactory/Slimdump/Config/FakerReplacer.php
MIT
private function validateReplacementConfigured($replacementName) { try { $this->faker->$replacementName(); } catch (InvalidArgumentException $exception) { throw new InvalidReplacementOptionException($replacementName.' is no valid faker replacement'); } }
validates if this type of replacement was configured. @param string $replacementName @throws InvalidReplacementOptionException if not a faker method
validateReplacementConfigured
php
webfactory/slimdump
src/Webfactory/Slimdump/Config/FakerReplacer.php
https://github.com/webfactory/slimdump/blob/master/src/Webfactory/Slimdump/Config/FakerReplacer.php
MIT
public function merge(self $other) { $this->tables = array_merge($this->tables, $other->getTables()); }
Merge two configurations together. If two configurations specify the same table, the last one wins.
merge
php
webfactory/slimdump
src/Webfactory/Slimdump/Config/Config.php
https://github.com/webfactory/slimdump/blob/master/src/Webfactory/Slimdump/Config/Config.php
MIT
public function provideValidReplacementIds() { return [ [FakerReplacer::PREFIX.'firstname'], // original faker property [FakerReplacer::PREFIX.'lastname'], // original faker property ]; }
provides valid faker replacement ids. @return array
provideValidReplacementIds
php
webfactory/slimdump
test/Webfactory/Slimdump/Config/FakerReplacerTest.php
https://github.com/webfactory/slimdump/blob/master/test/Webfactory/Slimdump/Config/FakerReplacerTest.php
MIT
public static function getValidType($type, $xsdTypesPath = null, $fallback = null) { return XsdTypes::instance($xsdTypesPath)->isXsd(str_replace('[]', '', $type)) ? $fallback : $type; }
See http://php.net/manual/fr/language.oop5.typehinting.php for these cases Also see http://www.w3schools.com/schema/schema_dtypes_numeric.asp. @param mixed $type @param null $xsdTypesPath @param mixed $fallback @return mixed
getValidType
php
WsdlToPhp/PackageGenerator
src/File/AbstractModelFile.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/src/File/AbstractModelFile.php
MIT
public static function purgeUniqueNames() { self::$uniqueNames = []; }
Gives the availability for test purpose and multiple package generation to purge unique names.
purgeUniqueNames
php
WsdlToPhp/PackageGenerator
src/Model/AbstractModel.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/src/Model/AbstractModel.php
MIT
public static function purgePhpReservedKeywords() { self::$replacedPhpReservedKeywords = []; }
Gives the availability for test purpose and multiple package generation to purge reserved keywords usage.
purgePhpReservedKeywords
php
WsdlToPhp/PackageGenerator
src/Model/AbstractModel.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/src/Model/AbstractModel.php
MIT
public function GetVersion() { try { $this->setResult($resultGetVersion = $this->getSoapClient()->__soapCall('GetVersion', [], [], [], $this->outputHeaders)); return $resultGetVersion; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetVersion @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return int|bool
GetVersion
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetClientsList(\StructType\ClientInfoRequest $params) { try { $this->setResult($resultGetClientsList = $this->getSoapClient()->__soapCall('GetClientsList', [ $params, ], [], [], $this->outputHeaders)); return $resultGetClientsList; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetClientsList @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ClientInfoRequest $params @return \StructType\ClientInfo[]|bool
GetClientsList
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetSubClients(\StructType\GetSubClientsRequest $params) { try { $this->setResult($resultGetSubClients = $this->getSoapClient()->__soapCall('GetSubClients', [ $params, ], [], [], $this->outputHeaders)); return $resultGetSubClients; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetSubClients @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\GetSubClientsRequest $params @return \StructType\ShortClientInfo[]|bool
GetSubClients
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetSummaryStat(\StructType\GetSummaryStatRequest $params) { try { $this->setResult($resultGetSummaryStat = $this->getSoapClient()->__soapCall('GetSummaryStat', [ $params, ], [], [], $this->outputHeaders)); return $resultGetSummaryStat; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetSummaryStat @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\GetSummaryStatRequest $params @return \StructType\StatItem[]|bool
GetSummaryStat
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetCampaignParams(\StructType\CampaignIDInfo $params) { try { $this->setResult($resultGetCampaignParams = $this->getSoapClient()->__soapCall('GetCampaignParams', [ $params, ], [], [], $this->outputHeaders)); return $resultGetCampaignParams; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetCampaignParams @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\CampaignIDInfo $params @return \StructType\CampaignInfo|bool
GetCampaignParams
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetCampaignsParams(\StructType\CampaignIDSInfo $params) { try { $this->setResult($resultGetCampaignsParams = $this->getSoapClient()->__soapCall('GetCampaignsParams', [ $params, ], [], [], $this->outputHeaders)); return $resultGetCampaignsParams; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetCampaignsParams @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\CampaignIDSInfo $params @return \StructType\CampaignInfo[]|bool
GetCampaignsParams
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetReportList() { try { $this->setResult($resultGetReportList = $this->getSoapClient()->__soapCall('GetReportList', [], [], [], $this->outputHeaders)); return $resultGetReportList; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetReportList @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\ReportInfo[]|bool
GetReportList
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetClientsUnits(array $params) { try { $this->setResult($resultGetClientsUnits = $this->getSoapClient()->__soapCall('GetClientsUnits', [ $params, ], [], [], $this->outputHeaders)); return $resultGetClientsUnits; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetClientsUnits @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param string[] $params @return \StructType\ClientsUnitInfo[]|bool
GetClientsUnits
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetClientInfo(array $params) { try { $this->setResult($resultGetClientInfo = $this->getSoapClient()->__soapCall('GetClientInfo', [ $params, ], [], [], $this->outputHeaders)); return $resultGetClientInfo; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetClientInfo @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param string[] $params @return \StructType\ClientInfo[]|bool
GetClientInfo
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetBanners(\StructType\GetBannersInfo $params) { try { $this->setResult($resultGetBanners = $this->getSoapClient()->__soapCall('GetBanners', [ $params, ], [], [], $this->outputHeaders)); return $resultGetBanners; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetBanners @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\GetBannersInfo $params @return \StructType\BannerInfo[]|bool
GetBanners
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetCampaignsList(array $params) { try { $this->setResult($resultGetCampaignsList = $this->getSoapClient()->__soapCall('GetCampaignsList', [ $params, ], [], [], $this->outputHeaders)); return $resultGetCampaignsList; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetCampaignsList @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param string[] $params @return \StructType\ShortCampaignInfo[]|bool
GetCampaignsList
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetCampaignsListFilter(\StructType\GetCampaignsInfo $params) { try { $this->setResult($resultGetCampaignsListFilter = $this->getSoapClient()->__soapCall('GetCampaignsListFilter', [ $params, ], [], [], $this->outputHeaders)); return $resultGetCampaignsListFilter; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetCampaignsListFilter @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\GetCampaignsInfo $params @return \StructType\ShortCampaignInfo[]|bool
GetCampaignsListFilter
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetBalance(array $params) { try { $this->setResult($resultGetBalance = $this->getSoapClient()->__soapCall('GetBalance', [ $params, ], [], [], $this->outputHeaders)); return $resultGetBalance; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetBalance @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param int[] $params @return \StructType\CampaignBalanceInfo[]|bool
GetBalance
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetBannerPhrases(array $params) { try { $this->setResult($resultGetBannerPhrases = $this->getSoapClient()->__soapCall('GetBannerPhrases', [ $params, ], [], [], $this->outputHeaders)); return $resultGetBannerPhrases; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetBannerPhrases @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param int[] $params @return \StructType\BannerPhraseInfo[]|bool
GetBannerPhrases
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetBannerPhrasesFilter(\StructType\BannerPhrasesFilterRequestInfo $params) { try { $this->setResult($resultGetBannerPhrasesFilter = $this->getSoapClient()->__soapCall('GetBannerPhrasesFilter', [ $params, ], [], [], $this->outputHeaders)); return $resultGetBannerPhrasesFilter; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetBannerPhrasesFilter @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\BannerPhrasesFilterRequestInfo $params @return \StructType\BannerPhraseInfo[]|bool
GetBannerPhrasesFilter
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetRegions() { try { $this->setResult($resultGetRegions = $this->getSoapClient()->__soapCall('GetRegions', [], [], [], $this->outputHeaders)); return $resultGetRegions; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetRegions @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\RegionInfo[]|bool
GetRegions
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetBannersStat(\StructType\NewReportInfo $params) { try { $this->setResult($resultGetBannersStat = $this->getSoapClient()->__soapCall('GetBannersStat', [ $params, ], [], [], $this->outputHeaders)); return $resultGetBannersStat; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetBannersStat @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\NewReportInfo $params @return \StructType\GetBannersStatResponse|bool
GetBannersStat
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetForecast($params) { try { $this->setResult($resultGetForecast = $this->getSoapClient()->__soapCall('GetForecast', [ $params, ], [], [], $this->outputHeaders)); return $resultGetForecast; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetForecast @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param string $params @return \StructType\GetForecastInfo|bool
GetForecast
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetRubrics() { try { $this->setResult($resultGetRubrics = $this->getSoapClient()->__soapCall('GetRubrics', [], [], [], $this->outputHeaders)); return $resultGetRubrics; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetRubrics @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\RubricInfo[]|bool
GetRubrics
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetTimeZones() { try { $this->setResult($resultGetTimeZones = $this->getSoapClient()->__soapCall('GetTimeZones', [], [], [], $this->outputHeaders)); return $resultGetTimeZones; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetTimeZones @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\TimeZoneInfo[]|bool
GetTimeZones
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetForecastList() { try { $this->setResult($resultGetForecastList = $this->getSoapClient()->__soapCall('GetForecastList', [], [], [], $this->outputHeaders)); return $resultGetForecastList; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetForecastList @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\ForecastStatusInfo[]|bool
GetForecastList
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetAvailableVersions() { try { $this->setResult($resultGetAvailableVersions = $this->getSoapClient()->__soapCall('GetAvailableVersions', [], [], [], $this->outputHeaders)); return $resultGetAvailableVersions; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetAvailableVersions @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\VersionDesc[]|bool
GetAvailableVersions
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetKeywordsSuggestion(\StructType\KeywordsSuggestionInfo $params) { try { $this->setResult($resultGetKeywordsSuggestion = $this->getSoapClient()->__soapCall('GetKeywordsSuggestion', [ $params, ], [], [], $this->outputHeaders)); return $resultGetKeywordsSuggestion; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetKeywordsSuggestion @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\KeywordsSuggestionInfo $params @return string[]|bool
GetKeywordsSuggestion
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetWordstatReportList() { try { $this->setResult($resultGetWordstatReportList = $this->getSoapClient()->__soapCall('GetWordstatReportList', [], [], [], $this->outputHeaders)); return $resultGetWordstatReportList; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetWordstatReportList @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\WordstatReportStatusInfo[]|bool
GetWordstatReportList
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetWordstatReport($params) { try { $this->setResult($resultGetWordstatReport = $this->getSoapClient()->__soapCall('GetWordstatReport', [ $params, ], [], [], $this->outputHeaders)); return $resultGetWordstatReport; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetWordstatReport @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param string $params @return \StructType\WordstatReportInfo[]|bool
GetWordstatReport
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetStatGoals(\StructType\StatGoalsCampaignIDInfo $params) { try { $this->setResult($resultGetStatGoals = $this->getSoapClient()->__soapCall('GetStatGoals', [ $params, ], [], [], $this->outputHeaders)); return $resultGetStatGoals; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetStatGoals @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\StatGoalsCampaignIDInfo $params @return \StructType\StatGoalInfo[]|bool
GetStatGoals
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetChanges(\StructType\GetChangesRequest $params) { try { $this->setResult($resultGetChanges = $this->getSoapClient()->__soapCall('GetChanges', [ $params, ], [], [], $this->outputHeaders)); return $resultGetChanges; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetChanges @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\GetChangesRequest $params @return \StructType\GetChangesResponse|bool
GetChanges
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetEventsLog(\StructType\GetEventsLogRequest $params) { try { $this->setResult($resultGetEventsLog = $this->getSoapClient()->__soapCall('GetEventsLog', [ $params, ], [], [], $this->outputHeaders)); return $resultGetEventsLog; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetEventsLog @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\GetEventsLogRequest $params @return \StructType\EventsLogItem[]|bool
GetEventsLog
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetCampaignsTags(\StructType\CampaignIDSInfo $params) { try { $this->setResult($resultGetCampaignsTags = $this->getSoapClient()->__soapCall('GetCampaignsTags', [ $params, ], [], [], $this->outputHeaders)); return $resultGetCampaignsTags; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetCampaignsTags @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\CampaignIDSInfo $params @return \StructType\CampaignTagsInfo[]|bool
GetCampaignsTags
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetBannersTags(\StructType\BannersRequestInfo $params) { try { $this->setResult($resultGetBannersTags = $this->getSoapClient()->__soapCall('GetBannersTags', [ $params, ], [], [], $this->outputHeaders)); return $resultGetBannersTags; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetBannersTags @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\BannersRequestInfo $params @return \StructType\BannerTagsInfo[]|bool
GetBannersTags
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetCreditLimits() { try { $this->setResult($resultGetCreditLimits = $this->getSoapClient()->__soapCall('GetCreditLimits', [], [], [], $this->outputHeaders)); return $resultGetCreditLimits; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetCreditLimits @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\CreditLimitsInfo|bool
GetCreditLimits
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetRetargetingGoals(\StructType\GetRetargetingGoalsRequest $params) { try { $this->setResult($resultGetRetargetingGoals = $this->getSoapClient()->__soapCall('GetRetargetingGoals', [ $params, ], [], [], $this->outputHeaders)); return $resultGetRetargetingGoals; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetRetargetingGoals @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\GetRetargetingGoalsRequest $params @return \StructType\RetargetingGoal[]|bool
GetRetargetingGoals
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function GetOfflineReportList() { try { $this->setResult($resultGetOfflineReportList = $this->getSoapClient()->__soapCall('GetOfflineReportList', [], [], [], $this->outputHeaders)); return $resultGetOfflineReportList; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetOfflineReportList @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @return \StructType\OfflineReportInfo[]|bool
GetOfflineReportList
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidYandexDirectApiLiveGet.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidYandexDirectApiLiveGet.php
MIT
public function __construct(array $adGroups) { $this ->setAdGroups($adGroups); }
Constructor method for AddRequest @uses ApiAddRequest::setAdGroups() @param \StructType\ApiAdGroupAddItem[] $adGroups
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidAddRequestRepeatedMaxOccurs.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidAddRequestRepeatedMaxOccurs.php
MIT
public function __construct(\StructType\ApiFareItineraryPrice $price, string $key, array $firstSegmentsIds, ?string $clickoutURLParams = null, ?bool $resident = null, ?array $secondSegmentsIds = null, ?array $thirdSegmentsIds = null) { $this ->setPrice($price) ->setKey($key) ->setFirstSegmentsIds($firstSegmentsIds) ->setClickoutURLParams($clickoutURLParams) ->setResident($resident) ->setSecondSegmentsIds($secondSegmentsIds) ->setThirdSegmentsIds($thirdSegmentsIds); }
Constructor method for fareItinerary @uses ApiFareItinerary::setPrice() @uses ApiFareItinerary::setKey() @uses ApiFareItinerary::setFirstSegmentsIds() @uses ApiFareItinerary::setClickoutURLParams() @uses ApiFareItinerary::setResident() @uses ApiFareItinerary::setSecondSegmentsIds() @uses ApiFareItinerary::setThirdSegmentsIds() @param \StructType\ApiFareItineraryPrice $price @param string $key @param int[] $firstSegmentsIds @param string $clickoutURLParams @param bool $resident @param int[] $secondSegmentsIds @param int[] $thirdSegmentsIds
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidApiFareItinerary.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidApiFareItinerary.php
MIT
public function DoMobileCheckoutPayment(\StructType\DoMobileCheckoutPaymentReq $doMobileCheckoutPaymentRequest) { try { $this->setResult($resultDoMobileCheckoutPayment = $this->getSoapClient()->__soapCall('DoMobileCheckoutPayment', [ $doMobileCheckoutPaymentRequest, ], [], [], $this->outputHeaders)); return $resultDoMobileCheckoutPayment; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoMobileCheckoutPayment Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoMobileCheckoutPaymentReq $doMobileCheckoutPaymentRequest @return \StructType\DoMobileCheckoutPaymentResponseType|bool
DoMobileCheckoutPayment
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoExpressCheckoutPayment(\StructType\DoExpressCheckoutPaymentReq $doExpressCheckoutPaymentRequest) { try { $this->setResult($resultDoExpressCheckoutPayment = $this->getSoapClient()->__soapCall('DoExpressCheckoutPayment', [ $doExpressCheckoutPaymentRequest, ], [], [], $this->outputHeaders)); return $resultDoExpressCheckoutPayment; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoExpressCheckoutPayment Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoExpressCheckoutPaymentReq $doExpressCheckoutPaymentRequest @return \StructType\DoExpressCheckoutPaymentResponseType|bool
DoExpressCheckoutPayment
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoUATPExpressCheckoutPayment(\StructType\DoUATPExpressCheckoutPaymentReq $doUATPExpressCheckoutPaymentRequest) { try { $this->setResult($resultDoUATPExpressCheckoutPayment = $this->getSoapClient()->__soapCall('DoUATPExpressCheckoutPayment', [ $doUATPExpressCheckoutPaymentRequest, ], [], [], $this->outputHeaders)); return $resultDoUATPExpressCheckoutPayment; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoUATPExpressCheckoutPayment Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoUATPExpressCheckoutPaymentReq $doUATPExpressCheckoutPaymentRequest @return \StructType\DoUATPExpressCheckoutPaymentResponseType|bool
DoUATPExpressCheckoutPayment
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoDirectPayment(\StructType\DoDirectPaymentReq $doDirectPaymentRequest) { try { $this->setResult($resultDoDirectPayment = $this->getSoapClient()->__soapCall('DoDirectPayment', [ $doDirectPaymentRequest, ], [], [], $this->outputHeaders)); return $resultDoDirectPayment; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoDirectPayment Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoDirectPaymentReq $doDirectPaymentRequest @return \StructType\DoDirectPaymentResponseType|bool
DoDirectPayment
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoCancel(\StructType\DoCancelReq $doCancelRequest) { try { $this->setResult($resultDoCancel = $this->getSoapClient()->__soapCall('DoCancel', [ $doCancelRequest, ], [], [], $this->outputHeaders)); return $resultDoCancel; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoCancel Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoCancelReq $doCancelRequest @return \StructType\DoCancelResponseType|bool
DoCancel
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoCapture(\StructType\DoCaptureReq $doCaptureRequest) { try { $this->setResult($resultDoCapture = $this->getSoapClient()->__soapCall('DoCapture', [ $doCaptureRequest, ], [], [], $this->outputHeaders)); return $resultDoCapture; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoCapture Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoCaptureReq $doCaptureRequest @return \StructType\DoCaptureResponseType|bool
DoCapture
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoReauthorization(\StructType\DoReauthorizationReq $doReauthorizationRequest) { try { $this->setResult($resultDoReauthorization = $this->getSoapClient()->__soapCall('DoReauthorization', [ $doReauthorizationRequest, ], [], [], $this->outputHeaders)); return $resultDoReauthorization; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoReauthorization Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoReauthorizationReq $doReauthorizationRequest @return \StructType\DoReauthorizationResponseType|bool
DoReauthorization
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoVoid(\StructType\DoVoidReq $doVoidRequest) { try { $this->setResult($resultDoVoid = $this->getSoapClient()->__soapCall('DoVoid', [ $doVoidRequest, ], [], [], $this->outputHeaders)); return $resultDoVoid; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoVoid Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoVoidReq $doVoidRequest @return \StructType\DoVoidResponseType|bool
DoVoid
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoAuthorization(\StructType\DoAuthorizationReq $doAuthorizationRequest) { try { $this->setResult($resultDoAuthorization = $this->getSoapClient()->__soapCall('DoAuthorization', [ $doAuthorizationRequest, ], [], [], $this->outputHeaders)); return $resultDoAuthorization; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoAuthorization Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoAuthorizationReq $doAuthorizationRequest @return \StructType\DoAuthorizationResponseType|bool
DoAuthorization
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoUATPAuthorization(\StructType\DoUATPAuthorizationReq $doUATPAuthorizationRequest) { try { $this->setResult($resultDoUATPAuthorization = $this->getSoapClient()->__soapCall('DoUATPAuthorization', [ $doUATPAuthorizationRequest, ], [], [], $this->outputHeaders)); return $resultDoUATPAuthorization; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoUATPAuthorization Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoUATPAuthorizationReq $doUATPAuthorizationRequest @return \StructType\DoUATPAuthorizationResponseType|bool
DoUATPAuthorization
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoReferenceTransaction(\StructType\DoReferenceTransactionReq $doReferenceTransactionRequest) { try { $this->setResult($resultDoReferenceTransaction = $this->getSoapClient()->__soapCall('DoReferenceTransaction', [ $doReferenceTransactionRequest, ], [], [], $this->outputHeaders)); return $resultDoReferenceTransaction; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoReferenceTransaction Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoReferenceTransactionReq $doReferenceTransactionRequest @return \StructType\DoReferenceTransactionResponseType|bool
DoReferenceTransaction
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function DoNonReferencedCredit(\StructType\DoNonReferencedCreditReq $doNonReferencedCreditRequest) { try { $this->setResult($resultDoNonReferencedCredit = $this->getSoapClient()->__soapCall('DoNonReferencedCredit', [ $doNonReferencedCreditRequest, ], [], [], $this->outputHeaders)); return $resultDoNonReferencedCredit; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named DoNonReferencedCredit Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\CustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\DoNonReferencedCreditReq $doNonReferencedCreditRequest @return \StructType\DoNonReferencedCreditResponseType|bool
DoNonReferencedCredit
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDoWithoutPrefix.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDoWithoutPrefix.php
MIT
public function __construct(?int $offset = null, ?int $count = null, ?\ArrayType\ApiArrayOfString $filters = null, ?string $sortBy = null) { $this ->setOffset($offset) ->setCount($count) ->setFilters($filters) ->setSortBy($sortBy); }
Constructor method for VideoRequest @uses ApiVideoRequest::setOffset() @uses ApiVideoRequest::setCount() @uses ApiVideoRequest::setFilters() @uses ApiVideoRequest::setSortBy() @param int $offset @param int $count @param \ArrayType\ApiArrayOfString $filters @param string $sortBy
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidApiVideoRequest.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidApiVideoRequest.php
MIT
public function Search(\StructType\ApiSearchRequest $parameters) { try { $this->setResult($resultSearch = $this->getSoapClient()->__soapCall('Search', [ $parameters, ], [], [], $this->outputHeaders)); return $resultSearch; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named Search @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiSearchRequest $parameters @return \StructType\ApiSearchResponse|bool
Search
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidApiSearch.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidApiSearch.php
MIT
public function __construct(?array $mutualSettlementDetailCalcCostShipping = null, ?array $mutualSettlementDetailCashFlow = null, ?array $mutualSettlementDetailClientPayment = null, ?array $mutualSettlementDetailPostReturnRegistry = null, ?array $mutualSettlementDetailRouteList = null, ?array $mutualSettlementDetailTrackNumberPayment = null, ?array $mutualSettlementDetailServiceRegistration = null, ?array $mutualSettlementDetailAcceptanceRegistry = null, ?array $mutualSettlementDetailAdditionalChargeFare = null, ?array $mutualSettlementDetailOutgoingRequestToCarrier = null, ?array $mutualSettlementDetailSMSInformation = null, ?array $mutualSettlementDetailBuyerGoodsReturn = null, ?array $mutualSettlementDetailProductsPackaging = null, ?array $mutualSettlementDetailAdjustmentWriteRegisters = null, ?array $mutualSettlementDetailSafeCustody = null, ?array $mutualSettlementDetailSafeCustodyCalculation = null, ?array $mutualSettlementDetailRegisterStorage = null) { $this ->setMutualSettlementDetailCalcCostShipping($mutualSettlementDetailCalcCostShipping) ->setMutualSettlementDetailCashFlow($mutualSettlementDetailCashFlow) ->setMutualSettlementDetailClientPayment($mutualSettlementDetailClientPayment) ->setMutualSettlementDetailPostReturnRegistry($mutualSettlementDetailPostReturnRegistry) ->setMutualSettlementDetailRouteList($mutualSettlementDetailRouteList) ->setMutualSettlementDetailTrackNumberPayment($mutualSettlementDetailTrackNumberPayment) ->setMutualSettlementDetailServiceRegistration($mutualSettlementDetailServiceRegistration) ->setMutualSettlementDetailAcceptanceRegistry($mutualSettlementDetailAcceptanceRegistry) ->setMutualSettlementDetailAdditionalChargeFare($mutualSettlementDetailAdditionalChargeFare) ->setMutualSettlementDetailOutgoingRequestToCarrier($mutualSettlementDetailOutgoingRequestToCarrier) ->setMutualSettlementDetailSMSInformation($mutualSettlementDetailSMSInformation) ->setMutualSettlementDetailBuyerGoodsReturn($mutualSettlementDetailBuyerGoodsReturn) ->setMutualSettlementDetailProductsPackaging($mutualSettlementDetailProductsPackaging) ->setMutualSettlementDetailAdjustmentWriteRegisters($mutualSettlementDetailAdjustmentWriteRegisters) ->setMutualSettlementDetailSafeCustody($mutualSettlementDetailSafeCustody) ->setMutualSettlementDetailSafeCustodyCalculation($mutualSettlementDetailSafeCustodyCalculation) ->setMutualSettlementDetailRegisterStorage($mutualSettlementDetailRegisterStorage); }
Constructor method for details @uses ApiDetails::setMutualSettlementDetailCalcCostShipping() @uses ApiDetails::setMutualSettlementDetailCashFlow() @uses ApiDetails::setMutualSettlementDetailClientPayment() @uses ApiDetails::setMutualSettlementDetailPostReturnRegistry() @uses ApiDetails::setMutualSettlementDetailRouteList() @uses ApiDetails::setMutualSettlementDetailTrackNumberPayment() @uses ApiDetails::setMutualSettlementDetailServiceRegistration() @uses ApiDetails::setMutualSettlementDetailAcceptanceRegistry() @uses ApiDetails::setMutualSettlementDetailAdditionalChargeFare() @uses ApiDetails::setMutualSettlementDetailOutgoingRequestToCarrier() @uses ApiDetails::setMutualSettlementDetailSMSInformation() @uses ApiDetails::setMutualSettlementDetailBuyerGoodsReturn() @uses ApiDetails::setMutualSettlementDetailProductsPackaging() @uses ApiDetails::setMutualSettlementDetailAdjustmentWriteRegisters() @uses ApiDetails::setMutualSettlementDetailSafeCustody() @uses ApiDetails::setMutualSettlementDetailSafeCustodyCalculation() @uses ApiDetails::setMutualSettlementDetailRegisterStorage() @param \StructType\ApiMutualSettlementDetailCalcCostShipping[] $mutualSettlementDetailCalcCostShipping @param \StructType\ApiMutualSettlementDetailCashFlow[] $mutualSettlementDetailCashFlow @param \StructType\ApiMutualSettlementDetailClientPayment[] $mutualSettlementDetailClientPayment @param \StructType\ApiMutualSettlementDetailPostReturnRegistry[] $mutualSettlementDetailPostReturnRegistry @param \StructType\ApiMutualSettlementDetailRouteList[] $mutualSettlementDetailRouteList @param \StructType\ApiMutualSettlementDetailTrackNumberPayment[] $mutualSettlementDetailTrackNumberPayment @param \StructType\ApiMutualSettlementDetailServiceRegistration[] $mutualSettlementDetailServiceRegistration @param \StructType\ApiMutualSettlementDetailAcceptanceRegistry[] $mutualSettlementDetailAcceptanceRegistry @param \StructType\ApiMutualSettlementDetailAdditionalChargeFare[] $mutualSettlementDetailAdditionalChargeFare @param \StructType\ApiMutualSettlementDetailOutgoingRequestToCarrier[] $mutualSettlementDetailOutgoingRequestToCarrier @param \StructType\ApiMutualSettlementDetailSMSInformation[] $mutualSettlementDetailSMSInformation @param \StructType\ApiMutualSettlementDetailBuyerGoodsReturn[] $mutualSettlementDetailBuyerGoodsReturn @param \StructType\ApiMutualSettlementDetailProductsPackaging[] $mutualSettlementDetailProductsPackaging @param \StructType\ApiMutualSettlementDetailAdjustmentWriteRegisters[] $mutualSettlementDetailAdjustmentWriteRegisters @param \StructType\ApiMutualSettlementDetailSafeCustody[] $mutualSettlementDetailSafeCustody @param \StructType\ApiMutualSettlementDetailSafeCustodyCalculation[] $mutualSettlementDetailSafeCustodyCalculation @param \StructType\ApiMutualSettlementDetailRegisterStorage[] $mutualSettlementDetailRegisterStorage
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidDetails.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidDetails.php
MIT
public function __construct(?string $cardHolderName = null, ?\StructType\ApiCardIssuerName $cardIssuerName = null, ?\StructType\ApiAddressType $address = null, ?array $telephone = null, ?array $email = null, ?string $cardType = null, ?string $cardCode = null, ?string $cardName = null, ?string $cardNumber = null, ?string $seriesCode = null, ?string $maskedCardNumber = null, ?string $cardHolderRPH = null, ?string $countryOfIssue = null, ?string $remark = null, ?string $shareSynchInd = null, ?string $shareMarketInd = null, ?string $effectiveDate = null, ?string $expireDate = null) { $this ->setCardHolderName($cardHolderName) ->setCardIssuerName($cardIssuerName) ->setAddress($address) ->setTelephone($telephone) ->setEmail($email) ->setCardType($cardType) ->setCardCode($cardCode) ->setCardName($cardName) ->setCardNumber($cardNumber) ->setSeriesCode($seriesCode) ->setMaskedCardNumber($maskedCardNumber) ->setCardHolderRPH($cardHolderRPH) ->setCountryOfIssue($countryOfIssue) ->setRemark($remark) ->setShareSynchInd($shareSynchInd) ->setShareMarketInd($shareMarketInd) ->setEffectiveDate($effectiveDate) ->setExpireDate($expireDate); }
Constructor method for PaymentCardType @uses ApiPaymentCardType::setCardHolderName() @uses ApiPaymentCardType::setCardIssuerName() @uses ApiPaymentCardType::setAddress() @uses ApiPaymentCardType::setTelephone() @uses ApiPaymentCardType::setEmail() @uses ApiPaymentCardType::setCardType() @uses ApiPaymentCardType::setCardCode() @uses ApiPaymentCardType::setCardName() @uses ApiPaymentCardType::setCardNumber() @uses ApiPaymentCardType::setSeriesCode() @uses ApiPaymentCardType::setMaskedCardNumber() @uses ApiPaymentCardType::setCardHolderRPH() @uses ApiPaymentCardType::setCountryOfIssue() @uses ApiPaymentCardType::setRemark() @uses ApiPaymentCardType::setShareSynchInd() @uses ApiPaymentCardType::setShareMarketInd() @uses ApiPaymentCardType::setEffectiveDate() @uses ApiPaymentCardType::setExpireDate() @param string $cardHolderName @param \StructType\ApiCardIssuerName $cardIssuerName @param \StructType\ApiAddressType $address @param \StructType\ApiTelephone[] $telephone @param \StructType\ApiEmailType[] $email @param string $cardType @param string $cardCode @param string $cardName @param string $cardNumber @param string $seriesCode @param string $maskedCardNumber @param string $cardHolderRPH @param string $countryOfIssue @param string $remark @param string $shareSynchInd @param string $shareMarketInd @param string $effectiveDate @param string $expireDate
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPaymentCardType.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPaymentCardType.php
MIT
public function CreateQueue(\StructType\ApiCreateQueue $body) { try { $this->setResult($resultCreateQueue = $this->getSoapClient()->__soapCall('CreateQueue', [ $body, ], [], [], $this->outputHeaders)); return $resultCreateQueue; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named CreateQueue Meta information extracted from the WSDL - documentation: The CreateQueue action creates a new queue, or returns the URL of an existing one. When you request CreateQueue, you provide a name for the queue. To successfully create a new queue, you must provide a name that is unique within the scope of your own queues. If you provide the name of an existing queue, a new queue isn't created and an error isn't returned. Instead, the request succeeds and the queue URL for the existing queue is returned. A CreateQueue call may include attributes to set on a newly created queue. The effect is the same as the CreateQueue call followed by a SetQueueAttributes call (with the same attributes). However, when the queue already exists CreateQueue will not update any attributes. It simply compares the attribute values provided with the current settings on the existing queue, and returns the queue URL if the values match. Otherwise, it responds with an error otherwise. SetQueueAttributes should be used to change the values of attributes for an existing queue. @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiCreateQueue $body @return \StructType\ApiCreateQueueResponse|bool
CreateQueue
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidApiCreate.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidApiCreate.php
MIT
public function __construct(?array $string = null) { $this ->setString($string); }
Constructor method for ArrayOfString @uses ApiArrayOfString::setString() @param string[] $string
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidApiArrayOfString.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidApiArrayOfString.php
MIT
public function __construct(string $type, string $iD, ?\StructType\ApiCompanyNameType $companyName = null, ?string $uRL = null, ?string $iD_Context = null) { $this ->setType($type) ->setID($iD) ->setCompanyName($companyName) ->setURL($uRL) ->setID_Context($iD_Context); }
Constructor method for UniqueID_Type @uses ApiUniqueID_Type::setType() @uses ApiUniqueID_Type::setID() @uses ApiUniqueID_Type::setCompanyName() @uses ApiUniqueID_Type::setURL() @uses ApiUniqueID_Type::setID_Context() @param string $type @param string $iD @param \StructType\ApiCompanyNameType $companyName @param string $uRL @param string $iD_Context
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidUniqueID_Type.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidUniqueID_Type.php
MIT
public function __construct(string $month, string $year) { $this ->setMonth($month) ->setYear($year); }
Constructor method for expiryDate @uses ApiExpiryDate::setMonth() @uses ApiExpiryDate::setYear() @param string $month @param string $year
__construct
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidExpiryDate.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidExpiryDate.php
MIT
public function deleteList(\StructType\ApiDeleteList $parameter) { try { $this->setResult($resultDeleteList = $this->getSoapClient()->__soapCall('deleteList', [ $parameter, ], [], [], $this->outputHeaders)); return $resultDeleteList; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named deleteList Meta information extracted from the WSDL - SOAPHeaderNames: SessionHeader, ClusterHeader - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com - SOAPHeaderTypes: \StructType\ApiSessionHeader, \StructType\ApiClusterHeader - SOAPHeaders: optional, required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiDeleteList $parameter @return void|bool
deleteList
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidApiDelete.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidApiDelete.php
MIT
public function RefundTransaction(\StructType\ApiRefundTransactionReq $refundTransactionRequest) { try { $this->setResult($resultRefundTransaction = $this->getSoapClient()->__soapCall('RefundTransaction', [ $refundTransactionRequest, ], [], [], $this->outputHeaders)); return $resultRefundTransaction; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named RefundTransaction Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiRefundTransactionReq $refundTransactionRequest @return \StructType\ApiRefundTransactionResponseType|bool
RefundTransaction
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function InitiateRecoup(\StructType\ApiInitiateRecoupReq $initiateRecoupRequest) { try { $this->setResult($resultInitiateRecoup = $this->getSoapClient()->__soapCall('InitiateRecoup', [ $initiateRecoupRequest, ], [], [], $this->outputHeaders)); return $resultInitiateRecoup; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named InitiateRecoup Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiInitiateRecoupReq $initiateRecoupRequest @return \StructType\ApiInitiateRecoupResponseType|bool
InitiateRecoup
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function CompleteRecoup(\StructType\ApiCompleteRecoupReq $completeRecoupRequest) { try { $this->setResult($resultCompleteRecoup = $this->getSoapClient()->__soapCall('CompleteRecoup', [ $completeRecoupRequest, ], [], [], $this->outputHeaders)); return $resultCompleteRecoup; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named CompleteRecoup Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiCompleteRecoupReq $completeRecoupRequest @return \StructType\ApiCompleteRecoupResponseType|bool
CompleteRecoup
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function CancelRecoup(\StructType\ApiCancelRecoupReq $cancelRecoupRequest) { try { $this->setResult($resultCancelRecoup = $this->getSoapClient()->__soapCall('CancelRecoup', [ $cancelRecoupRequest, ], [], [], $this->outputHeaders)); return $resultCancelRecoup; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named CancelRecoup Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiCancelRecoupReq $cancelRecoupRequest @return \StructType\ApiCancelRecoupResponseType|bool
CancelRecoup
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function GetTransactionDetails(\StructType\ApiGetTransactionDetailsReq $getTransactionDetailsRequest) { try { $this->setResult($resultGetTransactionDetails = $this->getSoapClient()->__soapCall('GetTransactionDetails', [ $getTransactionDetailsRequest, ], [], [], $this->outputHeaders)); return $resultGetTransactionDetails; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named GetTransactionDetails Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiGetTransactionDetailsReq $getTransactionDetailsRequest @return \StructType\ApiGetTransactionDetailsResponseType|bool
GetTransactionDetails
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BMCreateButton(\StructType\ApiBMCreateButtonReq $bMCreateButtonRequest) { try { $this->setResult($resultBMCreateButton = $this->getSoapClient()->__soapCall('BMCreateButton', [ $bMCreateButtonRequest, ], [], [], $this->outputHeaders)); return $resultBMCreateButton; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BMCreateButton Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBMCreateButtonReq $bMCreateButtonRequest @return \StructType\ApiBMCreateButtonResponseType|bool
BMCreateButton
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BMUpdateButton(\StructType\ApiBMUpdateButtonReq $bMUpdateButtonRequest) { try { $this->setResult($resultBMUpdateButton = $this->getSoapClient()->__soapCall('BMUpdateButton', [ $bMUpdateButtonRequest, ], [], [], $this->outputHeaders)); return $resultBMUpdateButton; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BMUpdateButton Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBMUpdateButtonReq $bMUpdateButtonRequest @return \StructType\ApiBMUpdateButtonResponseType|bool
BMUpdateButton
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BMSetInventory(\StructType\ApiBMSetInventoryReq $bMSetInventoryRequest) { try { $this->setResult($resultBMSetInventory = $this->getSoapClient()->__soapCall('BMSetInventory', [ $bMSetInventoryRequest, ], [], [], $this->outputHeaders)); return $resultBMSetInventory; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BMSetInventory Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBMSetInventoryReq $bMSetInventoryRequest @return \StructType\ApiBMSetInventoryResponseType|bool
BMSetInventory
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BMGetButtonDetails(\StructType\ApiBMGetButtonDetailsReq $bMGetButtonDetailsRequest) { try { $this->setResult($resultBMGetButtonDetails = $this->getSoapClient()->__soapCall('BMGetButtonDetails', [ $bMGetButtonDetailsRequest, ], [], [], $this->outputHeaders)); return $resultBMGetButtonDetails; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BMGetButtonDetails Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBMGetButtonDetailsReq $bMGetButtonDetailsRequest @return \StructType\ApiBMGetButtonDetailsResponseType|bool
BMGetButtonDetails
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BMGetInventory(\StructType\ApiBMGetInventoryReq $bMGetInventoryRequest) { try { $this->setResult($resultBMGetInventory = $this->getSoapClient()->__soapCall('BMGetInventory', [ $bMGetInventoryRequest, ], [], [], $this->outputHeaders)); return $resultBMGetInventory; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BMGetInventory Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBMGetInventoryReq $bMGetInventoryRequest @return \StructType\ApiBMGetInventoryResponseType|bool
BMGetInventory
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BMManageButtonStatus(\StructType\ApiBMManageButtonStatusReq $bMManageButtonStatusRequest) { try { $this->setResult($resultBMManageButtonStatus = $this->getSoapClient()->__soapCall('BMManageButtonStatus', [ $bMManageButtonStatusRequest, ], [], [], $this->outputHeaders)); return $resultBMManageButtonStatus; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BMManageButtonStatus Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBMManageButtonStatusReq $bMManageButtonStatusRequest @return \StructType\ApiBMManageButtonStatusResponseType|bool
BMManageButtonStatus
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BMButtonSearch(\StructType\ApiBMButtonSearchReq $bMButtonSearchRequest) { try { $this->setResult($resultBMButtonSearch = $this->getSoapClient()->__soapCall('BMButtonSearch', [ $bMButtonSearchRequest, ], [], [], $this->outputHeaders)); return $resultBMButtonSearch; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BMButtonSearch Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBMButtonSearchReq $bMButtonSearchRequest @return \StructType\ApiBMButtonSearchResponseType|bool
BMButtonSearch
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BillUser(\StructType\ApiBillUserReq $billUserRequest) { try { $this->setResult($resultBillUser = $this->getSoapClient()->__soapCall('BillUser', [ $billUserRequest, ], [], [], $this->outputHeaders)); return $resultBillUser; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BillUser Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBillUserReq $billUserRequest @return \StructType\ApiBillUserResponseType|bool
BillUser
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function TransactionSearch(\StructType\ApiTransactionSearchReq $transactionSearchRequest) { try { $this->setResult($resultTransactionSearch = $this->getSoapClient()->__soapCall('TransactionSearch', [ $transactionSearchRequest, ], [], [], $this->outputHeaders)); return $resultTransactionSearch; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named TransactionSearch Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiTransactionSearchReq $transactionSearchRequest @return \StructType\ApiTransactionSearchResponseType|bool
TransactionSearch
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function MassPay(\StructType\ApiMassPayReq $massPayRequest) { try { $this->setResult($resultMassPay = $this->getSoapClient()->__soapCall('MassPay', [ $massPayRequest, ], [], [], $this->outputHeaders)); return $resultMassPay; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named MassPay Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiMassPayReq $massPayRequest @return \StructType\ApiMassPayResponseType|bool
MassPay
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function BillAgreementUpdate(\StructType\ApiBillAgreementUpdateReq $billAgreementUpdateRequest) { try { $this->setResult($resultBillAgreementUpdate = $this->getSoapClient()->__soapCall('BillAgreementUpdate', [ $billAgreementUpdateRequest, ], [], [], $this->outputHeaders)); return $resultBillAgreementUpdate; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named BillAgreementUpdate Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiBillAgreementUpdateReq $billAgreementUpdateRequest @return \StructType\ApiBAUpdateResponseType|bool
BillAgreementUpdate
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function AddressVerify(\StructType\ApiAddressVerifyReq $addressVerifyRequest) { try { $this->setResult($resultAddressVerify = $this->getSoapClient()->__soapCall('AddressVerify', [ $addressVerifyRequest, ], [], [], $this->outputHeaders)); return $resultAddressVerify; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named AddressVerify Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiAddressVerifyReq $addressVerifyRequest @return \StructType\ApiAddressVerifyResponseType|bool
AddressVerify
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT
public function EnterBoarding(\StructType\ApiEnterBoardingReq $enterBoardingRequest) { try { $this->setResult($resultEnterBoarding = $this->getSoapClient()->__soapCall('EnterBoarding', [ $enterBoardingRequest, ], [], [], $this->outputHeaders)); return $resultEnterBoarding; } catch (SoapFault $soapFault) { $this->saveLastError(__METHOD__, $soapFault); return false; } }
Method to call the operation originally named EnterBoarding Meta information extracted from the WSDL - SOAPHeaderNames: RequesterCredentials - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI - SOAPHeaderTypes: \StructType\ApiCustomSecurityHeaderType - SOAPHeaders: required @uses AbstractSoapClientBase::getSoapClient() @uses AbstractSoapClientBase::setResult() @uses AbstractSoapClientBase::saveLastError() @param \StructType\ApiEnterBoardingReq $enterBoardingRequest @return \StructType\ApiEnterBoardingResponseType|bool
EnterBoarding
php
WsdlToPhp/PackageGenerator
tests/resources/generated/ValidPayPalApiService.php
https://github.com/WsdlToPhp/PackageGenerator/blob/master/tests/resources/generated/ValidPayPalApiService.php
MIT