diff --git a/README.md b/README.md index 11d28b1..9df0f51 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # PrestaShop 8 wallee Integration This repository contains the PrestaShop wallee payment module that enables the shop to process payments with [wallee](https://www.wallee.com). -## To install module manually by dragging up zip file, please download [.zip archive](https://plugin-documentation.wallee.com/wallee-payment/prestashop-8/1.0.6/wallee.zip) of module with correct structure required by Prestashop installation +## To install module manually by dragging up zip file, please download [.zip archive](https://plugin-documentation.wallee.com/wallee-payment/prestashop-8/1.0.7/wallee.zip) of module with correct structure required by Prestashop installation ##### To use this extension, a [wallee](https://app-wallee.com/user/signup) account is required. @@ -12,7 +12,7 @@ This repository contains the PrestaShop wallee payment module that enables the s ## Documentation -* [English](https://plugin-documentation.wallee.com/wallee-payment/prestashop-8/1.0.6/docs/en/documentation.html) +* [English](https://plugin-documentation.wallee.com/wallee-payment/prestashop-8/1.0.7/docs/en/documentation.html) ## Support @@ -20,7 +20,7 @@ Support queries can be issued on the [wallee support site](https://app-wallee.co ## License -Please see the [license file](https://github.com/wallee-payment/prestashop-8/blob/1.0.6/LICENSE) for more information. +Please see the [license file](https://github.com/wallee-payment/prestashop-8/blob/1.0.7/LICENSE) for more information. ## Other PrestaShop Versions diff --git a/controllers/front/return.php b/controllers/front/return.php index f26af1c..0bfb860 100644 --- a/controllers/front/return.php +++ b/controllers/front/return.php @@ -97,8 +97,9 @@ private function processFailure(Order $order) if (! empty($userFailureMessage)) { $this->context->cookie->wle_error = $userFailureMessage; } + + $this->setCurrentState($order); - $order->setCurrentState(Configuration::get(WalleeBasemodule::CK_STATUS_FAILED)); //the new state should be saved here to override the stock issues of incrementing or decrementing items when going through the webhooks //by calling the setCurrentState function more than once without saving. $order->save(); @@ -116,6 +117,25 @@ public function setMedia() { // We do not need styling here } + + /** + * @param Order $order + * @return void + * @throws PrestaShopDatabaseException + * @throws PrestaShopException + */ + protected function setCurrentState(Order $order): void + { + $newState = Configuration::get(WalleeBasemodule::CK_STATUS_FAILED); + $history = new OrderHistory(); + $history->id_order = $order->id; + $history->id_order_state = $newState; + $history->id_employee = (int)Context::getContext()->employee->id; + $history->date_add = date('Y-m-d H:i:s'); + $history->add(); + + $order->current_state = $newState; + } protected function displayMaintenancePage() { diff --git a/docs/en/documentation.html b/docs/en/documentation.html index cbc9f64..c9182c5 100644 --- a/docs/en/documentation.html +++ b/docs/en/documentation.html @@ -23,7 +23,7 @@

Documentation

  • - + Source
  • @@ -50,7 +50,7 @@

    1. -

      Download the module.

      +

      Download the module.

    2. Login to the backend of your PrestsShop store.

      diff --git a/views/templates/admin/admin_help_buttons.tpl b/views/templates/admin/admin_help_buttons.tpl index 1d55c30..0590864 100644 --- a/views/templates/admin/admin_help_buttons.tpl +++ b/views/templates/admin/admin_help_buttons.tpl @@ -10,5 +10,5 @@ \ No newline at end of file diff --git a/wallee-sdk/.travis.yml b/wallee-sdk/.travis.yml index 602b1fe..0becbf7 100644 --- a/wallee-sdk/.travis.yml +++ b/wallee-sdk/.travis.yml @@ -3,5 +3,6 @@ sudo: false php: - 8.0 - 8.1 + - 8.2 before_install: "composer install" script: "phpunit --bootstrap autoload.php test/" diff --git a/wallee-sdk/LICENSE b/wallee-sdk/LICENSE index 9debc6c..ac38c25 100644 --- a/wallee-sdk/LICENSE +++ b/wallee-sdk/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2023 wallee AG + Copyright 2024 wallee AG Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/wallee-sdk/README.md b/wallee-sdk/README.md index 5dfe573..07f6409 100644 --- a/wallee-sdk/README.md +++ b/wallee-sdk/README.md @@ -127,6 +127,44 @@ putenv('WLE_HTTP_CLIENT=curl'); ?> ``` +### Integrating Webhook Payload Signing Mechanism into webhook callback handler + +The HTTP request which is sent for a state change of an entity now includes an additional field `state`, which provides information about the update of the monitored entity's state. This enhancement is a result of the implementation of our webhook encryption mechanism. + +Payload field `state` provides direct information about the state update of the entity, making additional API calls to retrieve the entity state redundant. + +#### ⚠️ Warning: Generic Pseudocode + +> **The provided pseudocode is intentionally generic and serves to illustrate the process of enhancing your API to leverage webhook payload signing. It is not a complete implementation.** +> +> Please ensure that you adapt and extend this code to meet the specific needs of your application, including appropriate security measures and error handling. +For a detailed webhook payload signing mechanism understanding we highly recommend referring to our comprehensive +[Webhook Payload Signing Documentation](https://app-wallee.com/doc/webhooks#_webhook_payload_signing_mechanism). + +```php +public function handleWebhook() { + $requestPayload = file_get_contents('php://input'); + $signature = $_SERVER['HTTP_X_SIGNATURE'] ?? ''; + + if (empty($signature)) { + // Make additional API call to retrieve the entity state + // ... + } else { + if ($client->getWebhookEncryptionService()->isContentValid($signature, $requestPayload)) { + // Parse requestPayload to extract 'state' value + // $state = ... + // Process entity's state change + // $this->processEntityStateChange($state); + // ... + } + } + + // Process the received webhook data + // ... + +} +``` + ## License Please see the [license file](https://github.com/wallee-payment/php-sdk/blob/master/LICENSE) for more information. diff --git a/wallee-sdk/composer.json b/wallee-sdk/composer.json index cc91cf1..4816b9f 100644 --- a/wallee-sdk/composer.json +++ b/wallee-sdk/composer.json @@ -1,6 +1,6 @@ { "name": "wallee/sdk", - "version": "3.2.0", + "version": "4.2.0", "description": "wallee SDK for PHP", "keywords": [ "wallee", @@ -14,7 +14,8 @@ "authors": [ { "name": "wallee AG", - "homepage": "https://wallee.com" + "email": "info@wallee.com", + "homepage": "https://www.wallee.com" } ], "require": { diff --git a/wallee-sdk/lib/ApiClient.php b/wallee-sdk/lib/ApiClient.php index 47f7a2f..c18e642 100644 --- a/wallee-sdk/lib/ApiClient.php +++ b/wallee-sdk/lib/ApiClient.php @@ -30,7 +30,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ final class ApiClient { @@ -48,7 +48,7 @@ final class ApiClient { * @var array */ private $defaultHeaders = [ - 'x-meta-sdk-version' => "3.2.0", + 'x-meta-sdk-version' => "4.2.0", 'x-meta-sdk-language' => 'php', 'x-meta-sdk-provider' => "wallee", ]; @@ -58,7 +58,7 @@ final class ApiClient { * * @var string */ - private $userAgent = 'PHP-Client/3.2.0/php'; + private $userAgent = 'PHP-Client/4.2.0/php'; /** * The path to the certificate authority file. @@ -1833,6 +1833,18 @@ public function getWebAppService() { return $this->webAppService; } + protected $webhookEncryptionService; + + /** + * @return \Wallee\Sdk\Service\WebhookEncryptionService + */ + public function getWebhookEncryptionService() { + if(is_null($this->webhookEncryptionService)){ + $this->webhookEncryptionService = new \Wallee\Sdk\Service\WebhookEncryptionService($this); + } + return $this->webhookEncryptionService; + } + protected $webhookListenerService; /** diff --git a/wallee-sdk/lib/ApiException.php b/wallee-sdk/lib/ApiException.php index e8309b4..a6a602f 100644 --- a/wallee-sdk/lib/ApiException.php +++ b/wallee-sdk/lib/ApiException.php @@ -27,7 +27,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ApiException extends Exception diff --git a/wallee-sdk/lib/ApiResponse.php b/wallee-sdk/lib/ApiResponse.php index f0efcd0..f6e5eec 100644 --- a/wallee-sdk/lib/ApiResponse.php +++ b/wallee-sdk/lib/ApiResponse.php @@ -25,7 +25,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ApiResponse { diff --git a/wallee-sdk/lib/Configuration.php b/wallee-sdk/lib/Configuration.php index 39bcb7f..f98a2b9 100644 --- a/wallee-sdk/lib/Configuration.php +++ b/wallee-sdk/lib/Configuration.php @@ -26,7 +26,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Configuration @@ -80,7 +80,7 @@ class Configuration * * @var string */ - protected $userAgent = 'Wallee\Sdk/3.2.0/php'; + protected $userAgent = 'Wallee\Sdk/4.2.0/php'; /** * Debug switch (default set to false) @@ -388,8 +388,8 @@ public static function toDebugReport() $report = 'PHP SDK (Wallee\Sdk) Debug Report:' . PHP_EOL; $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; - $report .= ' OpenAPI Spec Version: 3.2.0' . PHP_EOL; - $report .= ' SDK Package Version: 3.2.0' . PHP_EOL; + $report .= ' OpenAPI Spec Version: 4.2.0' . PHP_EOL; + $report .= ' SDK Package Version: 4.2.0' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/wallee-sdk/lib/EncryptionUtil.php b/wallee-sdk/lib/EncryptionUtil.php new file mode 100644 index 0000000..29ead2f --- /dev/null +++ b/wallee-sdk/lib/EncryptionUtil.php @@ -0,0 +1,77 @@ +getTimeOut() !== 0) { curl_setopt($curl, CURLOPT_TIMEOUT, $request->getTimeOut()); @@ -58,7 +61,11 @@ public function send(ApiClient $apiClient, HttpRequest $request) { } else { curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2); - curl_setopt($curl, CURLOPT_CAINFO, $apiClient->getCertificateAuthority()); + if (file_exists($tempCAFile)) { + // use the temporal CA Bundle if it was set, which indicates a previous error. + $apiClient->setCertificateAuthority($tempCAFile); + curl_setopt($curl, CURLOPT_CAINFO, $apiClient->getCertificateAuthority()); + } } if ($request->getMethod() === HttpRequest::POST) { @@ -102,7 +109,22 @@ public function send(ApiClient $apiClient, HttpRequest $request) { // Make the request $response = curl_exec($curl); - $response = $this->handleResponse($apiClient, $request, $curl, $response, $request->getUrl()); + if ($response) { + $response = $this->handleResponse($apiClient, $request, $curl, $response, $request->getUrl()); + } else { + // if there was an error, try again with the CA bundle provided by this SDK. + if (!file_exists($tempCAFile)) { + $caContent = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . ".." . DIRECTORY_SEPARATOR . "ca-bundle.crt"); + file_put_contents($tempCAFile, $caContent); + + // Try again the request, this time with the CA bundle provided by this SDK. + $apiClient->setCertificateAuthority($tempCAFile); + curl_setopt($curl, CURLOPT_CAINFO, $apiClient->getCertificateAuthority()); + $response = curl_exec($curl); + $response = $this->handleResponse($apiClient, $request, $curl, $response, $request->getUrl()); + } + } + curl_close($curl); fclose($debugFilePointer); diff --git a/wallee-sdk/lib/Http/HttpClientFactory.php b/wallee-sdk/lib/Http/HttpClientFactory.php index 336942b..893455e 100644 --- a/wallee-sdk/lib/Http/HttpClientFactory.php +++ b/wallee-sdk/lib/Http/HttpClientFactory.php @@ -25,7 +25,7 @@ * * @category Class * @package Wallee\Sdk\Http - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ final class HttpClientFactory { diff --git a/wallee-sdk/lib/Http/HttpRequest.php b/wallee-sdk/lib/Http/HttpRequest.php index c3c439d..5ade221 100644 --- a/wallee-sdk/lib/Http/HttpRequest.php +++ b/wallee-sdk/lib/Http/HttpRequest.php @@ -27,7 +27,7 @@ * * @category Class * @package Wallee\Sdk\Http - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ final class HttpRequest { diff --git a/wallee-sdk/lib/Http/HttpResponse.php b/wallee-sdk/lib/Http/HttpResponse.php index a8b75cc..ec8abdb 100644 --- a/wallee-sdk/lib/Http/HttpResponse.php +++ b/wallee-sdk/lib/Http/HttpResponse.php @@ -25,7 +25,7 @@ * * @category Class * @package Wallee\Sdk\Http - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ final class HttpResponse { diff --git a/wallee-sdk/lib/Http/IHttpClient.php b/wallee-sdk/lib/Http/IHttpClient.php index b728e46..b72904e 100644 --- a/wallee-sdk/lib/Http/IHttpClient.php +++ b/wallee-sdk/lib/Http/IHttpClient.php @@ -27,7 +27,7 @@ * * @category Interface * @package Wallee\Sdk\Http - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ interface IHttpClient { diff --git a/wallee-sdk/lib/Http/SocketHttpClient.php b/wallee-sdk/lib/Http/SocketHttpClient.php index ebb7df2..7cc8628 100644 --- a/wallee-sdk/lib/Http/SocketHttpClient.php +++ b/wallee-sdk/lib/Http/SocketHttpClient.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk\Http - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ final class SocketHttpClient implements IHttpClient { diff --git a/wallee-sdk/lib/Model/AbstractAccountUpdate.php b/wallee-sdk/lib/Model/AbstractAccountUpdate.php index d73c3a6..c014bc8 100644 --- a/wallee-sdk/lib/Model/AbstractAccountUpdate.php +++ b/wallee-sdk/lib/Model/AbstractAccountUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractAccountUpdate implements ModelInterface, ArrayAccess @@ -259,7 +259,7 @@ public function getName() /** * Sets name * - * @param string $name The name of the account identifies the account within the administrative interface. + * @param string $name The name used to identify the account. * * @return $this */ @@ -291,7 +291,7 @@ public function getSubaccountLimit() /** * Sets subaccount_limit * - * @param int $subaccount_limit This property restricts the number of subaccounts which can be created within this account. + * @param int $subaccount_limit The number of sub-accounts that can be created within this account. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractApplicationUserUpdate.php b/wallee-sdk/lib/Model/AbstractApplicationUserUpdate.php index 3cc5d54..0c9eea6 100644 --- a/wallee-sdk/lib/Model/AbstractApplicationUserUpdate.php +++ b/wallee-sdk/lib/Model/AbstractApplicationUserUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractApplicationUserUpdate implements ModelInterface, ArrayAccess @@ -230,7 +230,7 @@ public function getName() /** * Sets name * - * @param string $name The user name is used to identify the application user in administrative interfaces. + * @param string $name The name used to identify the application user. * * @return $this */ @@ -259,7 +259,7 @@ public function getRequestLimit() /** * Sets request_limit * - * @param int $request_limit The request limit defines the maximum number of API request accepted within 2 minutes. This limit can only be changed with special privileges. + * @param int $request_limit The maximum number of API requests that are accepted every 2 minutes. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractCustomerActive.php b/wallee-sdk/lib/Model/AbstractCustomerActive.php index a5cd5d5..fc2f87e 100644 --- a/wallee-sdk/lib/Model/AbstractCustomerActive.php +++ b/wallee-sdk/lib/Model/AbstractCustomerActive.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractCustomerActive implements ModelInterface, ArrayAccess @@ -270,7 +270,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param string $customer_id + * @param string $customer_id The customer's ID in the merchant's system. * * @return $this */ @@ -299,7 +299,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The customer's email address. * * @return $this */ @@ -328,7 +328,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The customer's family or last name. * * @return $this */ @@ -357,7 +357,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The customer's given or first name. * * @return $this */ @@ -411,7 +411,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ @@ -436,7 +436,7 @@ public function getPreferredCurrency() /** * Sets preferred_currency * - * @param string $preferred_currency + * @param string $preferred_currency The customer's preferred currency. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractCustomerAddressActive.php b/wallee-sdk/lib/Model/AbstractCustomerAddressActive.php index 1ee061e..c0612f0 100644 --- a/wallee-sdk/lib/Model/AbstractCustomerAddressActive.php +++ b/wallee-sdk/lib/Model/AbstractCustomerAddressActive.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractCustomerAddressActive implements ModelInterface, ArrayAccess @@ -219,7 +219,7 @@ public function getAddress() /** * Sets address * - * @param \Wallee\Sdk\Model\CustomerPostalAddressCreate $address + * @param \Wallee\Sdk\Model\CustomerPostalAddressCreate $address The actual postal address. * * @return $this */ @@ -244,7 +244,7 @@ public function getAddressType() /** * Sets address_type * - * @param \Wallee\Sdk\Model\CustomerAddressType $address_type + * @param \Wallee\Sdk\Model\CustomerAddressType $address_type Whether the address is for billing or shipping or both. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractCustomerCommentActive.php b/wallee-sdk/lib/Model/AbstractCustomerCommentActive.php index 6ca68ef..f75f41f 100644 --- a/wallee-sdk/lib/Model/AbstractCustomerCommentActive.php +++ b/wallee-sdk/lib/Model/AbstractCustomerCommentActive.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractCustomerCommentActive implements ModelInterface, ArrayAccess @@ -216,7 +216,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractDebtCollectionCaseUpdate.php b/wallee-sdk/lib/Model/AbstractDebtCollectionCaseUpdate.php index 683bd2b..1d78465 100644 --- a/wallee-sdk/lib/Model/AbstractDebtCollectionCaseUpdate.php +++ b/wallee-sdk/lib/Model/AbstractDebtCollectionCaseUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractDebtCollectionCaseUpdate implements ModelInterface, ArrayAccess @@ -436,7 +436,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractHumanUserUpdate.php b/wallee-sdk/lib/Model/AbstractHumanUserUpdate.php index a7b1c9b..441791c 100644 --- a/wallee-sdk/lib/Model/AbstractHumanUserUpdate.php +++ b/wallee-sdk/lib/Model/AbstractHumanUserUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractHumanUserUpdate implements ModelInterface, ArrayAccess @@ -277,7 +277,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address The email address of the user. + * @param string $email_address The user's email address. * * @return $this */ @@ -306,7 +306,7 @@ public function getFirstname() /** * Sets firstname * - * @param string $firstname The first name of the user. + * @param string $firstname The user's first name. * * @return $this */ @@ -335,7 +335,7 @@ public function getLanguage() /** * Sets language * - * @param string $language The preferred language of the user. + * @param string $language The user's preferred language. * * @return $this */ @@ -360,7 +360,7 @@ public function getLastname() /** * Sets lastname * - * @param string $lastname The last name of the user. + * @param string $lastname The user's last name. * * @return $this */ @@ -389,7 +389,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The user's mobile phone number. * * @return $this */ @@ -443,7 +443,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone which is applied for the user. If no timezone is specified the browser is used to determine an appropriate time zone. + * @param string $time_zone The user's time zone. If none is specified, the one provided by the browser will be used. * * @return $this */ @@ -468,7 +468,7 @@ public function getTwoFactorEnabled() /** * Sets two_factor_enabled * - * @param bool $two_factor_enabled Defines whether two-factor authentication is enabled for this user. + * @param bool $two_factor_enabled Whether two-factor authentication is enabled for this user. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractPaymentLinkUpdate.php b/wallee-sdk/lib/Model/AbstractPaymentLinkUpdate.php index 1110143..9b2e4f2 100644 --- a/wallee-sdk/lib/Model/AbstractPaymentLinkUpdate.php +++ b/wallee-sdk/lib/Model/AbstractPaymentLinkUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractPaymentLinkUpdate implements ModelInterface, ArrayAccess @@ -461,7 +461,7 @@ public function getLineItems() /** * Sets line_items * - * @param \Wallee\Sdk\Model\LineItemCreate[] $line_items The line items allows to define the line items for this payment link. When the line items are defined they cannot be overridden through the request parameters. + * @param \Wallee\Sdk\Model\LineItemCreate[] $line_items The line items allows to define the line items for this payment link. When the line items are defined they cannot be overridden through the request parameters. If no amount for the payment link is defined, the additional checkout page to enter the amount is shown to the consumer. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractRefundCommentActive.php b/wallee-sdk/lib/Model/AbstractRefundCommentActive.php index 4f017b6..bca09e3 100644 --- a/wallee-sdk/lib/Model/AbstractRefundCommentActive.php +++ b/wallee-sdk/lib/Model/AbstractRefundCommentActive.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractRefundCommentActive implements ModelInterface, ArrayAccess @@ -216,7 +216,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractShopifySubscriptionProductUpdate.php b/wallee-sdk/lib/Model/AbstractShopifySubscriptionProductUpdate.php index 24acc53..03c8197 100644 --- a/wallee-sdk/lib/Model/AbstractShopifySubscriptionProductUpdate.php +++ b/wallee-sdk/lib/Model/AbstractShopifySubscriptionProductUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractShopifySubscriptionProductUpdate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/AbstractSpaceUpdate.php b/wallee-sdk/lib/Model/AbstractSpaceUpdate.php index 9668fbb..54e3aed 100644 --- a/wallee-sdk/lib/Model/AbstractSpaceUpdate.php +++ b/wallee-sdk/lib/Model/AbstractSpaceUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractSpaceUpdate implements ModelInterface, ArrayAccess @@ -294,7 +294,7 @@ public function getName() /** * Sets name * - * @param string $name The space name is used internally to identify the space in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the space. * * @return $this */ @@ -326,7 +326,7 @@ public function getPostalAddress() /** * Sets postal_address * - * @param \Wallee\Sdk\Model\SpaceAddressCreate $postal_address The address to use in communication with clients for example in email, documents etc. + * @param \Wallee\Sdk\Model\SpaceAddressCreate $postal_address The address that is used in communication with clients for example in emails, documents, etc. * * @return $this */ @@ -351,7 +351,7 @@ public function getPrimaryCurrency() /** * Sets primary_currency * - * @param string $primary_currency This is the currency that is used to display aggregated amounts in the space. + * @param string $primary_currency The currency that is used to display aggregated amounts in the space. * * @return $this */ @@ -376,7 +376,7 @@ public function getRequestLimit() /** * Sets request_limit * - * @param int $request_limit The request limit defines the maximum number of API request accepted within 2 minutes for this space. This limit can only be changed with special privileges. + * @param int $request_limit The maximum number of API requests that are accepted within two minutes. This limit can only be changed with special privileges. * * @return $this */ @@ -426,7 +426,7 @@ public function getTechnicalContactAddresses() /** * Sets technical_contact_addresses * - * @param string[] $technical_contact_addresses The email address provided as contact addresses will be informed about technical issues or errors triggered by the space. + * @param string[] $technical_contact_addresses The email address that will receive messages about technical issues and errors that occur in the space. * * @return $this */ @@ -451,7 +451,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone assigned to the space determines the time offset for calculating dates within the space. This is typically used for background processed which needs to be triggered on a specific hour within the day. Changing the space time zone will not change the display of dates. + * @param string $time_zone The time zone that is used to schedule and run background processes. This does not affect the formatting of dates in the user interface. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractSubscriberUpdate.php b/wallee-sdk/lib/Model/AbstractSubscriberUpdate.php index 48d4b1b..7d2f6ae 100644 --- a/wallee-sdk/lib/Model/AbstractSubscriberUpdate.php +++ b/wallee-sdk/lib/Model/AbstractSubscriberUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractSubscriberUpdate implements ModelInterface, ArrayAccess @@ -438,7 +438,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractSubscriptionAffiliateUpdate.php b/wallee-sdk/lib/Model/AbstractSubscriptionAffiliateUpdate.php index cdcbddb..ef05066 100644 --- a/wallee-sdk/lib/Model/AbstractSubscriptionAffiliateUpdate.php +++ b/wallee-sdk/lib/Model/AbstractSubscriptionAffiliateUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractSubscriptionAffiliateUpdate implements ModelInterface, ArrayAccess @@ -266,7 +266,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractSubscriptionMetricUpdate.php b/wallee-sdk/lib/Model/AbstractSubscriptionMetricUpdate.php index c12475c..86d9461 100644 --- a/wallee-sdk/lib/Model/AbstractSubscriptionMetricUpdate.php +++ b/wallee-sdk/lib/Model/AbstractSubscriptionMetricUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractSubscriptionMetricUpdate implements ModelInterface, ArrayAccess @@ -48,8 +48,8 @@ class AbstractSubscriptionMetricUpdate implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate' + 'description' => 'map[string,string]', + 'name' => 'map[string,string]' ]; /** @@ -209,7 +209,7 @@ public function valid() /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getDescription() { @@ -219,7 +219,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $description + * @param map[string,string] $description * * @return $this */ @@ -234,7 +234,7 @@ public function setDescription($description) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -244,7 +244,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name + * @param map[string,string] $name * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractSubscriptionProductActive.php b/wallee-sdk/lib/Model/AbstractSubscriptionProductActive.php index 6274ce5..d46c3cb 100644 --- a/wallee-sdk/lib/Model/AbstractSubscriptionProductActive.php +++ b/wallee-sdk/lib/Model/AbstractSubscriptionProductActive.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractSubscriptionProductActive implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/AbstractTokenUpdate.php b/wallee-sdk/lib/Model/AbstractTokenUpdate.php index 452967f..cc22dbb 100644 --- a/wallee-sdk/lib/Model/AbstractTokenUpdate.php +++ b/wallee-sdk/lib/Model/AbstractTokenUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractTokenUpdate implements ModelInterface, ArrayAccess @@ -255,7 +255,7 @@ public function getCustomerEmailAddress() /** * Sets customer_email_address * - * @param string $customer_email_address The customer email address is the email address of the customer. + * @param string $customer_email_address The customer's email address. * * @return $this */ @@ -284,7 +284,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param string $customer_id The customer ID identifies the customer in the merchant system. In case the customer ID has been provided it has to correspond with the customer ID provided on the transaction. The customer ID will not be changed automatically. The merchant system has to provide it. + * @param string $customer_id The unique identifier of the customer in the external system. * * @return $this */ @@ -309,7 +309,7 @@ public function getEnabledForOneClickPayment() /** * Sets enabled_for_one_click_payment * - * @param bool $enabled_for_one_click_payment When a token is enabled for one-click payments the buyer will be able to select the token within the iFrame or on the payment page to pay with the token. The usage of the token will reduce the number of steps the buyer has to go through. The buyer is linked via the customer ID on the transaction with the token. Means the token will be visible for buyers with the same customer ID. Additionally the payment method has to be configured to allow the one-click payments. + * @param bool $enabled_for_one_click_payment Whether the token is enabled for one-click payments, which simplify the payment process for the customer. One-click tokens are linked to customers via the customer ID. * * @return $this */ @@ -359,7 +359,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone defines in which time zone the customer is located in. The time zone may affects how dates are formatted when interacting with the customer. + * @param string $time_zone The customer's time zone, which affects how dates and times are formatted when communicating with the customer. * * @return $this */ @@ -384,7 +384,7 @@ public function getTokenReference() /** * Sets token_reference * - * @param string $token_reference Use something that it is easy to identify and may help you find the token (e.g. customer id, email address). + * @param string $token_reference The reference used to identify the payment token (e.g. the customer's ID or email address). * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractTransactionCommentActive.php b/wallee-sdk/lib/Model/AbstractTransactionCommentActive.php index f0760e5..27504a6 100644 --- a/wallee-sdk/lib/Model/AbstractTransactionCommentActive.php +++ b/wallee-sdk/lib/Model/AbstractTransactionCommentActive.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractTransactionCommentActive implements ModelInterface, ArrayAccess @@ -216,7 +216,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractTransactionInvoiceCommentActive.php b/wallee-sdk/lib/Model/AbstractTransactionInvoiceCommentActive.php index f96c65c..1d6e2c1 100644 --- a/wallee-sdk/lib/Model/AbstractTransactionInvoiceCommentActive.php +++ b/wallee-sdk/lib/Model/AbstractTransactionInvoiceCommentActive.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractTransactionInvoiceCommentActive implements ModelInterface, ArrayAccess @@ -216,7 +216,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractTransactionPending.php b/wallee-sdk/lib/Model/AbstractTransactionPending.php index 564dd49..087885e 100644 --- a/wallee-sdk/lib/Model/AbstractTransactionPending.php +++ b/wallee-sdk/lib/Model/AbstractTransactionPending.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractTransactionPending implements ModelInterface, ArrayAccess @@ -370,7 +370,7 @@ public function getAllowedPaymentMethodBrands() /** * Sets allowed_payment_method_brands * - * @param int[] $allowed_payment_method_brands + * @param int[] $allowed_payment_method_brands The payment method brands that can be used to authorize the transaction. * * @return $this */ @@ -395,7 +395,7 @@ public function getAllowedPaymentMethodConfigurations() /** * Sets allowed_payment_method_configurations * - * @param int[] $allowed_payment_method_configurations + * @param int[] $allowed_payment_method_configurations The payment method configurations that can be used to authorize the transaction. * * @return $this */ @@ -420,7 +420,7 @@ public function getBillingAddress() /** * Sets billing_address * - * @param \Wallee\Sdk\Model\AddressCreate $billing_address + * @param \Wallee\Sdk\Model\AddressCreate $billing_address The address associated with the payment method for invoicing and transaction processing purposes. * * @return $this */ @@ -445,7 +445,7 @@ public function getCompletionBehavior() /** * Sets completion_behavior * - * @param \Wallee\Sdk\Model\TransactionCompletionBehavior $completion_behavior The completion behavior controls when the transaction is completed. + * @param \Wallee\Sdk\Model\TransactionCompletionBehavior $completion_behavior The behavior that controls when the transaction is completed. * * @return $this */ @@ -470,7 +470,7 @@ public function getCurrency() /** * Sets currency * - * @param string $currency + * @param string $currency The three-letter code (ISO 4217 format) of the transaction's currency. * * @return $this */ @@ -495,7 +495,7 @@ public function getCustomerEmailAddress() /** * Sets customer_email_address * - * @param string $customer_email_address The customer email address is the email address of the customer. If no email address is provided on the shipping or billing address this address is used. + * @param string $customer_email_address The customer's email address. * * @return $this */ @@ -524,7 +524,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param string $customer_id + * @param string $customer_id The unique identifier of the customer in the external system. * * @return $this */ @@ -549,7 +549,7 @@ public function getFailedUrl() /** * Sets failed_url * - * @param string $failed_url The user will be redirected to failed URL when the transaction could not be authorized or completed. In case no failed URL is specified a default failed page will be displayed. + * @param string $failed_url The URL to redirect the customer back to after they canceled or failed to authenticated their payment. * * @return $this */ @@ -581,7 +581,7 @@ public function getInvoiceMerchantReference() /** * Sets invoice_merchant_reference * - * @param string $invoice_merchant_reference + * @param string $invoice_merchant_reference The merchant's reference used to identify the invoice. * * @return $this */ @@ -635,7 +635,7 @@ public function getLineItems() /** * Sets line_items * - * @param \Wallee\Sdk\Model\LineItemCreate[] $line_items + * @param \Wallee\Sdk\Model\LineItemCreate[] $line_items The line items purchased by the customer. * * @return $this */ @@ -660,7 +660,7 @@ public function getMerchantReference() /** * Sets merchant_reference * - * @param string $merchant_reference + * @param string $merchant_reference The merchant's reference used to identify the transaction. * * @return $this */ @@ -689,7 +689,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ @@ -714,7 +714,7 @@ public function getShippingAddress() /** * Sets shipping_address * - * @param \Wallee\Sdk\Model\AddressCreate $shipping_address + * @param \Wallee\Sdk\Model\AddressCreate $shipping_address The address to where the order will be shipped. * * @return $this */ @@ -739,7 +739,7 @@ public function getShippingMethod() /** * Sets shipping_method * - * @param string $shipping_method + * @param string $shipping_method The name of the shipping method used to ship the products. * * @return $this */ @@ -768,7 +768,7 @@ public function getSuccessUrl() /** * Sets success_url * - * @param string $success_url The user will be redirected to success URL when the transaction could be authorized or completed. In case no success URL is specified a default success page will be displayed. + * @param string $success_url The URL to redirect the customer back to after they successfully authenticated their payment. * * @return $this */ @@ -800,7 +800,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone defines in which time zone the customer is located in. The time zone may affects how dates are formatted when interacting with the customer. + * @param string $time_zone The customer's time zone, which affects how dates and times are formatted when communicating with the customer. * * @return $this */ @@ -825,7 +825,7 @@ public function getToken() /** * Sets token * - * @param int $token + * @param int $token The payment token that should be used to charge the customer. * * @return $this */ @@ -850,7 +850,7 @@ public function getTokenizationMode() /** * Sets tokenization_mode * - * @param \Wallee\Sdk\Model\TokenizationMode $tokenization_mode The tokenization mode controls if and how the tokenization of payment information is applied to the transaction. + * @param \Wallee\Sdk\Model\TokenizationMode $tokenization_mode The tokenization mode specifies whether and how the tokenization of payment information is applied to the transaction. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractWebhookListenerUpdate.php b/wallee-sdk/lib/Model/AbstractWebhookListenerUpdate.php index 239948a..e49e68b 100644 --- a/wallee-sdk/lib/Model/AbstractWebhookListenerUpdate.php +++ b/wallee-sdk/lib/Model/AbstractWebhookListenerUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractWebhookListenerUpdate implements ModelInterface, ArrayAccess @@ -48,6 +48,7 @@ class AbstractWebhookListenerUpdate implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ + 'enable_payload_signature_and_state' => 'bool', 'entity_states' => 'string[]', 'name' => 'string', 'notify_every_change' => 'bool', @@ -60,6 +61,7 @@ class AbstractWebhookListenerUpdate implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ + 'enable_payload_signature_and_state' => null, 'entity_states' => null, 'name' => null, 'notify_every_change' => null, @@ -73,6 +75,7 @@ class AbstractWebhookListenerUpdate implements ModelInterface, ArrayAccess * @var string[] */ protected static $attributeMap = [ + 'enable_payload_signature_and_state' => 'enablePayloadSignatureAndState', 'entity_states' => 'entityStates', 'name' => 'name', 'notify_every_change' => 'notifyEveryChange', @@ -85,6 +88,7 @@ class AbstractWebhookListenerUpdate implements ModelInterface, ArrayAccess * @var string[] */ protected static $setters = [ + 'enable_payload_signature_and_state' => 'setEnablePayloadSignatureAndState', 'entity_states' => 'setEntityStates', 'name' => 'setName', 'notify_every_change' => 'setNotifyEveryChange', @@ -97,6 +101,7 @@ class AbstractWebhookListenerUpdate implements ModelInterface, ArrayAccess * @var string[] */ protected static $getters = [ + 'enable_payload_signature_and_state' => 'getEnablePayloadSignatureAndState', 'entity_states' => 'getEntityStates', 'name' => 'getName', 'notify_every_change' => 'getNotifyEveryChange', @@ -121,6 +126,8 @@ class AbstractWebhookListenerUpdate implements ModelInterface, ArrayAccess public function __construct(array $data = null) { + $this->container['enable_payload_signature_and_state'] = isset($data['enable_payload_signature_and_state']) ? $data['enable_payload_signature_and_state'] : null; + $this->container['entity_states'] = isset($data['entity_states']) ? $data['entity_states'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -224,6 +231,31 @@ public function valid() + /** + * Gets enable_payload_signature_and_state + * + * @return bool + */ + public function getEnablePayloadSignatureAndState() + { + return $this->container['enable_payload_signature_and_state']; + } + + /** + * Sets enable_payload_signature_and_state + * + * @param bool $enable_payload_signature_and_state Whether signature header and state property are enabled in webhook payload. + * + * @return $this + */ + public function setEnablePayloadSignatureAndState($enable_payload_signature_and_state) + { + $this->container['enable_payload_signature_and_state'] = $enable_payload_signature_and_state; + + return $this; + } + + /** * Gets entity_states * @@ -237,7 +269,7 @@ public function getEntityStates() /** * Sets entity_states * - * @param string[] $entity_states The target state identifies the state into which entities need to move into to trigger the webhook listener. + * @param string[] $entity_states The entity's target states that are to be monitored. * * @return $this */ @@ -262,7 +294,7 @@ public function getName() /** * Sets name * - * @param string $name The webhook listener name is used internally to identify the webhook listener in administrative interfaces.For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the webhook listener. * * @return $this */ @@ -291,7 +323,7 @@ public function getNotifyEveryChange() /** * Sets notify_every_change * - * @param bool $notify_every_change Defines whether the webhook listener is to be informed about every change made to the entity in contrast to state transitions only. + * @param bool $notify_every_change Whether every update of the entity or only state changes are to be monitored. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AbstractWebhookUrlUpdate.php b/wallee-sdk/lib/Model/AbstractWebhookUrlUpdate.php index d553069..e1724a6 100644 --- a/wallee-sdk/lib/Model/AbstractWebhookUrlUpdate.php +++ b/wallee-sdk/lib/Model/AbstractWebhookUrlUpdate.php @@ -28,7 +28,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AbstractWebhookUrlUpdate implements ModelInterface, ArrayAccess @@ -238,7 +238,7 @@ public function getName() /** * Sets name * - * @param string $name The URL name is used internally to identify the URL in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the webhook URL. * * @return $this */ @@ -292,7 +292,7 @@ public function getUrl() /** * Sets url * - * @param string $url The URL to which the HTTP requests are sent to. An example URL could look like https://www.example.com/some/path?some-query-parameter=value. + * @param string $url The actual URL where notifications about entity changes are sent to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Account.php b/wallee-sdk/lib/Model/Account.php index b897208..12b16ac 100644 --- a/wallee-sdk/lib/Model/Account.php +++ b/wallee-sdk/lib/Model/Account.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Account implements ModelInterface, ArrayAccess @@ -333,7 +333,7 @@ public function getActive() /** * Sets active * - * @param bool $active Active means that this account and all accounts in the hierarchy are active. + * @param bool $active Whether this account and all its parent accounts are active. * * @return $this */ @@ -358,7 +358,7 @@ public function getActiveOrRestrictedActive() /** * Sets active_or_restricted_active * - * @param bool $active_or_restricted_active This property is true when all accounts in the hierarchy are active or restricted active. + * @param bool $active_or_restricted_active Whether this account and all its parent accounts are active or restricted active. * * @return $this */ @@ -383,7 +383,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by The ID of the user who created this entity. + * @param int $created_by The ID of the user the account was created by. * * @return $this */ @@ -408,7 +408,7 @@ public function getCreatedOn() /** * Sets created_on * - * @param \DateTime $created_on The date and time when this entity was created. + * @param \DateTime $created_on The date and time when the account was created. * * @return $this */ @@ -433,7 +433,7 @@ public function getDeletedBy() /** * Sets deleted_by * - * @param int $deleted_by The ID of a user that deleted this entity. + * @param int $deleted_by The ID of a user the account was deleted by. * * @return $this */ @@ -458,7 +458,7 @@ public function getDeletedOn() /** * Sets deleted_on * - * @param \DateTime $deleted_on The date and time when this entity was deleted. + * @param \DateTime $deleted_on The date and time when the account was deleted. * * @return $this */ @@ -533,7 +533,7 @@ public function getName() /** * Sets name * - * @param string $name The name of the account identifies the account within the administrative interface. + * @param string $name The name used to identify the account. * * @return $this */ @@ -565,7 +565,7 @@ public function getParentAccount() /** * Sets parent_account * - * @param \Wallee\Sdk\Model\Account $parent_account The account which is responsible for administering the account. + * @param \Wallee\Sdk\Model\Account $parent_account The parent account responsible for administering this account. * * @return $this */ @@ -615,7 +615,7 @@ public function getRestrictedActive() /** * Sets restricted_active * - * @param bool $restricted_active Restricted active means that at least one account in the hierarchy is only restricted active, but all are either restricted active or active. + * @param bool $restricted_active Whether this account and all its parent accounts are active or restricted active. There is at least one account that is restricted active. * * @return $this */ @@ -640,7 +640,7 @@ public function getScope() /** * Sets scope * - * @param int $scope This is the scope to which the account belongs to. + * @param int $scope The scope that the account belongs to. * * @return $this */ @@ -690,7 +690,7 @@ public function getSubaccountLimit() /** * Sets subaccount_limit * - * @param int $subaccount_limit This property restricts the number of subaccounts which can be created within this account. + * @param int $subaccount_limit The number of sub-accounts that can be created within this account. * * @return $this */ @@ -715,7 +715,7 @@ public function getType() /** * Sets type * - * @param \Wallee\Sdk\Model\AccountType $type The account type defines which role and capabilities it has. + * @param \Wallee\Sdk\Model\AccountType $type The account's type which defines its role and capabilities. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AccountCreate.php b/wallee-sdk/lib/Model/AccountCreate.php index a182f76..2aef4ab 100644 --- a/wallee-sdk/lib/Model/AccountCreate.php +++ b/wallee-sdk/lib/Model/AccountCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AccountCreate extends AbstractAccountUpdate @@ -225,7 +225,7 @@ public function getParentAccount() /** * Sets parent_account * - * @param int $parent_account The account which is responsible for administering the account. + * @param int $parent_account The parent account responsible for administering this account. * * @return $this */ @@ -250,7 +250,7 @@ public function getScope() /** * Sets scope * - * @param int $scope This is the scope to which the account belongs to. + * @param int $scope The scope that the account belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AccountState.php b/wallee-sdk/lib/Model/AccountState.php index f876601..9f8ae88 100644 --- a/wallee-sdk/lib/Model/AccountState.php +++ b/wallee-sdk/lib/Model/AccountState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AccountState diff --git a/wallee-sdk/lib/Model/AccountType.php b/wallee-sdk/lib/Model/AccountType.php index d6d0b3d..4cd71bc 100644 --- a/wallee-sdk/lib/Model/AccountType.php +++ b/wallee-sdk/lib/Model/AccountType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AccountType diff --git a/wallee-sdk/lib/Model/AccountUpdate.php b/wallee-sdk/lib/Model/AccountUpdate.php index cde4f58..a01fcfe 100644 --- a/wallee-sdk/lib/Model/AccountUpdate.php +++ b/wallee-sdk/lib/Model/AccountUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AccountUpdate extends AbstractAccountUpdate diff --git a/wallee-sdk/lib/Model/Address.php b/wallee-sdk/lib/Model/Address.php index adc5dac..c5ef64c 100644 --- a/wallee-sdk/lib/Model/Address.php +++ b/wallee-sdk/lib/Model/Address.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Address implements ModelInterface, ArrayAccess @@ -406,7 +406,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -435,7 +435,7 @@ public function getCommercialRegisterNumber() /** * Sets commercial_register_number * - * @param string $commercial_register_number + * @param string $commercial_register_number The commercial registration number of the organization. * * @return $this */ @@ -464,7 +464,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter country code (ISO 3166 format). * * @return $this */ @@ -489,7 +489,7 @@ public function getDateOfBirth() /** * Sets date_of_birth * - * @param \DateTime $date_of_birth + * @param \DateTime $date_of_birth The date of birth. * * @return $this */ @@ -514,7 +514,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -543,7 +543,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The email address. * * @return $this */ @@ -572,7 +572,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -601,7 +601,7 @@ public function getGender() /** * Sets gender * - * @param \Wallee\Sdk\Model\Gender $gender + * @param \Wallee\Sdk\Model\Gender $gender The gender. * * @return $this */ @@ -626,7 +626,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -655,7 +655,7 @@ public function getLegalOrganizationForm() /** * Sets legal_organization_form * - * @param \Wallee\Sdk\Model\LegalOrganizationForm $legal_organization_form + * @param \Wallee\Sdk\Model\LegalOrganizationForm $legal_organization_form The legal form of the organization. * * @return $this */ @@ -680,7 +680,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -709,7 +709,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -738,7 +738,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -767,7 +767,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -792,7 +792,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -821,7 +821,7 @@ public function getSalesTaxNumber() /** * Sets sales_tax_number * - * @param string $sales_tax_number + * @param string $sales_tax_number The sales tax number of the organization. * * @return $this */ @@ -850,7 +850,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -879,7 +879,7 @@ public function getSocialSecurityNumber() /** * Sets social_security_number * - * @param string $social_security_number + * @param string $social_security_number The social security number. * * @return $this */ @@ -908,7 +908,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -937,7 +937,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AddressCreate.php b/wallee-sdk/lib/Model/AddressCreate.php index 5617054..0411b84 100644 --- a/wallee-sdk/lib/Model/AddressCreate.php +++ b/wallee-sdk/lib/Model/AddressCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AddressCreate implements ModelInterface, ArrayAccess @@ -406,7 +406,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -435,7 +435,7 @@ public function getCommercialRegisterNumber() /** * Sets commercial_register_number * - * @param string $commercial_register_number + * @param string $commercial_register_number The commercial registration number of the organization. * * @return $this */ @@ -464,7 +464,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The country is represented with a two-letter code (ISO 3166-1 alpha-2 standard) - for example, CH for Switzerland. * * @return $this */ @@ -489,7 +489,7 @@ public function getDateOfBirth() /** * Sets date_of_birth * - * @param \DateTime $date_of_birth + * @param \DateTime $date_of_birth The date of birth. * * @return $this */ @@ -514,7 +514,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -543,7 +543,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The email address. * * @return $this */ @@ -572,7 +572,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -601,7 +601,7 @@ public function getGender() /** * Sets gender * - * @param \Wallee\Sdk\Model\Gender $gender + * @param \Wallee\Sdk\Model\Gender $gender The gender. * * @return $this */ @@ -626,7 +626,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -655,7 +655,7 @@ public function getLegalOrganizationForm() /** * Sets legal_organization_form * - * @param int $legal_organization_form + * @param int $legal_organization_form The legal form of the organization. * * @return $this */ @@ -680,7 +680,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -709,7 +709,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -738,7 +738,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -767,7 +767,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -792,7 +792,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -821,7 +821,7 @@ public function getSalesTaxNumber() /** * Sets sales_tax_number * - * @param string $sales_tax_number + * @param string $sales_tax_number The sales tax number of the organization. * * @return $this */ @@ -850,7 +850,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -879,7 +879,7 @@ public function getSocialSecurityNumber() /** * Sets social_security_number * - * @param string $social_security_number + * @param string $social_security_number The social security number. * * @return $this */ @@ -908,7 +908,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -937,7 +937,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/AnalyticsQuery.php b/wallee-sdk/lib/Model/AnalyticsQuery.php index 299c849..828edbe 100644 --- a/wallee-sdk/lib/Model/AnalyticsQuery.php +++ b/wallee-sdk/lib/Model/AnalyticsQuery.php @@ -29,7 +29,7 @@ * @category Class * @description Represents a query to be submitted for execution in Analytics. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AnalyticsQuery implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/AnalyticsQueryExecution.php b/wallee-sdk/lib/Model/AnalyticsQueryExecution.php index 6e698f0..956296c 100644 --- a/wallee-sdk/lib/Model/AnalyticsQueryExecution.php +++ b/wallee-sdk/lib/Model/AnalyticsQueryExecution.php @@ -29,7 +29,7 @@ * @category Class * @description Represents the execution of a query which has been submitted to Analytics. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AnalyticsQueryExecution implements ModelInterface, ArrayAccess @@ -50,6 +50,7 @@ class AnalyticsQueryExecution implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'account' => 'int', + 'error_message' => 'string', 'external_id' => 'string', 'failure_reason' => '\Wallee\Sdk\Model\FailureReason', 'id' => 'int', @@ -69,6 +70,7 @@ class AnalyticsQueryExecution implements ModelInterface, ArrayAccess */ protected static $swaggerFormats = [ 'account' => 'int64', + 'error_message' => null, 'external_id' => null, 'failure_reason' => null, 'id' => 'int64', @@ -89,6 +91,7 @@ class AnalyticsQueryExecution implements ModelInterface, ArrayAccess */ protected static $attributeMap = [ 'account' => 'account', + 'error_message' => 'errorMessage', 'external_id' => 'externalId', 'failure_reason' => 'failureReason', 'id' => 'id', @@ -108,6 +111,7 @@ class AnalyticsQueryExecution implements ModelInterface, ArrayAccess */ protected static $setters = [ 'account' => 'setAccount', + 'error_message' => 'setErrorMessage', 'external_id' => 'setExternalId', 'failure_reason' => 'setFailureReason', 'id' => 'setId', @@ -127,6 +131,7 @@ class AnalyticsQueryExecution implements ModelInterface, ArrayAccess */ protected static $getters = [ 'account' => 'getAccount', + 'error_message' => 'getErrorMessage', 'external_id' => 'getExternalId', 'failure_reason' => 'getFailureReason', 'id' => 'getId', @@ -159,6 +164,8 @@ public function __construct(array $data = null) $this->container['account'] = isset($data['account']) ? $data['account'] : null; + $this->container['error_message'] = isset($data['error_message']) ? $data['error_message'] : null; + $this->container['external_id'] = isset($data['external_id']) ? $data['external_id'] : null; $this->container['failure_reason'] = isset($data['failure_reason']) ? $data['failure_reason'] : null; @@ -295,6 +302,31 @@ public function setAccount($account) } + /** + * Gets error_message + * + * @return string + */ + public function getErrorMessage() + { + return $this->container['error_message']; + } + + /** + * Sets error_message + * + * @param string $error_message The error message if and only if the query has failed, otherwise null. + * + * @return $this + */ + public function setErrorMessage($error_message) + { + $this->container['error_message'] = $error_message; + + return $this; + } + + /** * Gets external_id * diff --git a/wallee-sdk/lib/Model/AnalyticsQueryExecutionState.php b/wallee-sdk/lib/Model/AnalyticsQueryExecutionState.php index 6ce0c44..70bbd2f 100644 --- a/wallee-sdk/lib/Model/AnalyticsQueryExecutionState.php +++ b/wallee-sdk/lib/Model/AnalyticsQueryExecutionState.php @@ -27,7 +27,7 @@ * @category Class * @description The state of a query execution. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AnalyticsQueryExecutionState diff --git a/wallee-sdk/lib/Model/AnalyticsQueryResultBatch.php b/wallee-sdk/lib/Model/AnalyticsQueryResultBatch.php index 6211613..77f8048 100644 --- a/wallee-sdk/lib/Model/AnalyticsQueryResultBatch.php +++ b/wallee-sdk/lib/Model/AnalyticsQueryResultBatch.php @@ -29,7 +29,7 @@ * @category Class * @description A batch of the result of a query executed in Analytics. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AnalyticsQueryResultBatch implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/AnalyticsSchemaColumn.php b/wallee-sdk/lib/Model/AnalyticsSchemaColumn.php index 0714508..54e5093 100644 --- a/wallee-sdk/lib/Model/AnalyticsSchemaColumn.php +++ b/wallee-sdk/lib/Model/AnalyticsSchemaColumn.php @@ -29,7 +29,7 @@ * @category Class * @description Meta information about a column within a table. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AnalyticsSchemaColumn implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/AnalyticsSchemaTable.php b/wallee-sdk/lib/Model/AnalyticsSchemaTable.php index a983f21..222a8e2 100644 --- a/wallee-sdk/lib/Model/AnalyticsSchemaTable.php +++ b/wallee-sdk/lib/Model/AnalyticsSchemaTable.php @@ -29,7 +29,7 @@ * @category Class * @description The schema of a single table in Analytics. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AnalyticsSchemaTable implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ApplicationUser.php b/wallee-sdk/lib/Model/ApplicationUser.php index 561bced..cba2784 100644 --- a/wallee-sdk/lib/Model/ApplicationUser.php +++ b/wallee-sdk/lib/Model/ApplicationUser.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ApplicationUser extends User @@ -48,7 +48,7 @@ class ApplicationUser extends User */ protected static $swaggerTypes = [ 'name' => 'string', - 'primary_account' => '\Wallee\Sdk\Model\Account', + 'primary_account' => 'int', 'request_limit' => 'int' ]; @@ -59,7 +59,7 @@ class ApplicationUser extends User */ protected static $swaggerFormats = [ 'name' => null, - 'primary_account' => null, + 'primary_account' => 'int64', 'request_limit' => 'int64' ]; @@ -225,7 +225,7 @@ public function getName() /** * Sets name * - * @param string $name The user name is used to identify the application user in administrative interfaces. + * @param string $name The name used to identify the application user. * * @return $this */ @@ -244,7 +244,7 @@ public function setName($name) /** * Gets primary_account * - * @return \Wallee\Sdk\Model\Account + * @return int */ public function getPrimaryAccount() { @@ -254,7 +254,7 @@ public function getPrimaryAccount() /** * Sets primary_account * - * @param \Wallee\Sdk\Model\Account $primary_account The account that this user is associated with. The account owner will be able to manage this user. + * @param int $primary_account The primary account that the user belongs to. * * @return $this */ @@ -279,7 +279,7 @@ public function getRequestLimit() /** * Sets request_limit * - * @param int $request_limit The request limit defines the maximum number of API request accepted within 2 minutes. This limit can only be changed with special privileges. + * @param int $request_limit The maximum number of API requests that are accepted every 2 minutes. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ApplicationUserCreate.php b/wallee-sdk/lib/Model/ApplicationUserCreate.php index 0d484f9..5f72f44 100644 --- a/wallee-sdk/lib/Model/ApplicationUserCreate.php +++ b/wallee-sdk/lib/Model/ApplicationUserCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ApplicationUserCreate extends AbstractApplicationUserUpdate @@ -214,7 +214,7 @@ public function getPrimaryAccount() /** * Sets primary_account * - * @param int $primary_account The account that this user is associated with. The account owner will be able to manage this user. + * @param int $primary_account The primary account that the user belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ApplicationUserCreateWithMacKey.php b/wallee-sdk/lib/Model/ApplicationUserCreateWithMacKey.php index 0b485de..db3351e 100644 --- a/wallee-sdk/lib/Model/ApplicationUserCreateWithMacKey.php +++ b/wallee-sdk/lib/Model/ApplicationUserCreateWithMacKey.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ApplicationUserCreateWithMacKey extends ApplicationUser @@ -211,7 +211,7 @@ public function getMacKey() /** * Sets mac_key * - * @param string $mac_key + * @param string $mac_key The user's authentication key securing requests. Only displayed a single time after the user has been created. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ApplicationUserUpdate.php b/wallee-sdk/lib/Model/ApplicationUserUpdate.php index 961324e..8fac840 100644 --- a/wallee-sdk/lib/Model/ApplicationUserUpdate.php +++ b/wallee-sdk/lib/Model/ApplicationUserUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ApplicationUserUpdate extends AbstractApplicationUserUpdate diff --git a/wallee-sdk/lib/Model/AuthenticatedCardData.php b/wallee-sdk/lib/Model/AuthenticatedCardData.php index 2b65666..cdf32af 100644 --- a/wallee-sdk/lib/Model/AuthenticatedCardData.php +++ b/wallee-sdk/lib/Model/AuthenticatedCardData.php @@ -27,7 +27,7 @@ * @category Class * @description This model holds the card data and optional cardholder authentication details. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AuthenticatedCardData extends TokenizedCardData diff --git a/wallee-sdk/lib/Model/AuthenticatedCardDataCreate.php b/wallee-sdk/lib/Model/AuthenticatedCardDataCreate.php index 1311989..4c037cf 100644 --- a/wallee-sdk/lib/Model/AuthenticatedCardDataCreate.php +++ b/wallee-sdk/lib/Model/AuthenticatedCardDataCreate.php @@ -29,7 +29,7 @@ * @category Class * @description This model holds the card data and optional cardholder authentication details. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AuthenticatedCardDataCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/BankAccount.php b/wallee-sdk/lib/Model/BankAccount.php index a2e1b19..441426b 100644 --- a/wallee-sdk/lib/Model/BankAccount.php +++ b/wallee-sdk/lib/Model/BankAccount.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankAccount implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/BankAccountEnvironment.php b/wallee-sdk/lib/Model/BankAccountEnvironment.php index 0a50193..82eb15e 100644 --- a/wallee-sdk/lib/Model/BankAccountEnvironment.php +++ b/wallee-sdk/lib/Model/BankAccountEnvironment.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankAccountEnvironment diff --git a/wallee-sdk/lib/Model/BankAccountState.php b/wallee-sdk/lib/Model/BankAccountState.php index b06bdce..a4c5017 100644 --- a/wallee-sdk/lib/Model/BankAccountState.php +++ b/wallee-sdk/lib/Model/BankAccountState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankAccountState diff --git a/wallee-sdk/lib/Model/BankAccountType.php b/wallee-sdk/lib/Model/BankAccountType.php index 14c5207..cef9781 100644 --- a/wallee-sdk/lib/Model/BankAccountType.php +++ b/wallee-sdk/lib/Model/BankAccountType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankAccountType implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/BankTransaction.php b/wallee-sdk/lib/Model/BankTransaction.php index b4ff3b4..c419901 100644 --- a/wallee-sdk/lib/Model/BankTransaction.php +++ b/wallee-sdk/lib/Model/BankTransaction.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankTransaction implements ModelInterface, ArrayAccess @@ -57,6 +57,7 @@ class BankTransaction implements ModelInterface, ArrayAccess 'flow_direction' => '\Wallee\Sdk\Model\BankTransactionFlowDirection', 'id' => 'int', 'linked_space_id' => 'int', + 'payment_date' => '\DateTime', 'planned_purge_date' => '\DateTime', 'posting_amount' => 'float', 'reference' => 'string', @@ -83,6 +84,7 @@ class BankTransaction implements ModelInterface, ArrayAccess 'flow_direction' => null, 'id' => 'int64', 'linked_space_id' => 'int64', + 'payment_date' => 'date-time', 'planned_purge_date' => 'date-time', 'posting_amount' => null, 'reference' => null, @@ -110,6 +112,7 @@ class BankTransaction implements ModelInterface, ArrayAccess 'flow_direction' => 'flowDirection', 'id' => 'id', 'linked_space_id' => 'linkedSpaceId', + 'payment_date' => 'paymentDate', 'planned_purge_date' => 'plannedPurgeDate', 'posting_amount' => 'postingAmount', 'reference' => 'reference', @@ -136,6 +139,7 @@ class BankTransaction implements ModelInterface, ArrayAccess 'flow_direction' => 'setFlowDirection', 'id' => 'setId', 'linked_space_id' => 'setLinkedSpaceId', + 'payment_date' => 'setPaymentDate', 'planned_purge_date' => 'setPlannedPurgeDate', 'posting_amount' => 'setPostingAmount', 'reference' => 'setReference', @@ -162,6 +166,7 @@ class BankTransaction implements ModelInterface, ArrayAccess 'flow_direction' => 'getFlowDirection', 'id' => 'getId', 'linked_space_id' => 'getLinkedSpaceId', + 'payment_date' => 'getPaymentDate', 'planned_purge_date' => 'getPlannedPurgeDate', 'posting_amount' => 'getPostingAmount', 'reference' => 'getReference', @@ -208,6 +213,8 @@ public function __construct(array $data = null) $this->container['linked_space_id'] = isset($data['linked_space_id']) ? $data['linked_space_id'] : null; + $this->container['payment_date'] = isset($data['payment_date']) ? $data['payment_date'] : null; + $this->container['planned_purge_date'] = isset($data['planned_purge_date']) ? $data['planned_purge_date'] : null; $this->container['posting_amount'] = isset($data['posting_amount']) ? $data['posting_amount'] : null; @@ -534,6 +541,31 @@ public function setLinkedSpaceId($linked_space_id) } + /** + * Gets payment_date + * + * @return \DateTime + */ + public function getPaymentDate() + { + return $this->container['payment_date']; + } + + /** + * Sets payment_date + * + * @param \DateTime $payment_date The payment date describes the date when the transaction was made. + * + * @return $this + */ + public function setPaymentDate($payment_date) + { + $this->container['payment_date'] = $payment_date; + + return $this; + } + + /** * Gets planned_purge_date * diff --git a/wallee-sdk/lib/Model/BankTransactionFlowDirection.php b/wallee-sdk/lib/Model/BankTransactionFlowDirection.php index 7cf567c..b70257f 100644 --- a/wallee-sdk/lib/Model/BankTransactionFlowDirection.php +++ b/wallee-sdk/lib/Model/BankTransactionFlowDirection.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankTransactionFlowDirection diff --git a/wallee-sdk/lib/Model/BankTransactionSource.php b/wallee-sdk/lib/Model/BankTransactionSource.php index 6045cf3..fc7db9a 100644 --- a/wallee-sdk/lib/Model/BankTransactionSource.php +++ b/wallee-sdk/lib/Model/BankTransactionSource.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankTransactionSource implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/BankTransactionState.php b/wallee-sdk/lib/Model/BankTransactionState.php index 8d89d4f..45c82c4 100644 --- a/wallee-sdk/lib/Model/BankTransactionState.php +++ b/wallee-sdk/lib/Model/BankTransactionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankTransactionState diff --git a/wallee-sdk/lib/Model/BankTransactionType.php b/wallee-sdk/lib/Model/BankTransactionType.php index 1acc56c..e830625 100644 --- a/wallee-sdk/lib/Model/BankTransactionType.php +++ b/wallee-sdk/lib/Model/BankTransactionType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankTransactionType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CardAuthenticationResponse.php b/wallee-sdk/lib/Model/CardAuthenticationResponse.php index 0fca6c4..049a74c 100644 --- a/wallee-sdk/lib/Model/CardAuthenticationResponse.php +++ b/wallee-sdk/lib/Model/CardAuthenticationResponse.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardAuthenticationResponse @@ -35,11 +35,11 @@ class CardAuthenticationResponse /** * Possible values of this enum */ - const ENROLLMENT_VERIFICATION_ERROR = 'ENROLLMENT_VERIFICATION_ERROR'; + const FULLY_AUTHENTICATED = 'FULLY_AUTHENTICATED'; + const AUTHENTICATION_NOT_REQUIRED = 'AUTHENTICATION_NOT_REQUIRED'; const NOT_ENROLLED = 'NOT_ENROLLED'; + const ENROLLMENT_ERROR = 'ENROLLMENT_ERROR'; const AUTHENTICATION_ERROR = 'AUTHENTICATION_ERROR'; - const AUTHENTICATION_NOT_REQUIRED = 'AUTHENTICATION_NOT_REQUIRED'; - const FULLY_AUTHENTICATED = 'FULLY_AUTHENTICATED'; /** * Gets allowable values of the enum @@ -48,11 +48,11 @@ class CardAuthenticationResponse public static function getAllowableEnumValues() { return [ - self::ENROLLMENT_VERIFICATION_ERROR, + self::FULLY_AUTHENTICATED, + self::AUTHENTICATION_NOT_REQUIRED, self::NOT_ENROLLED, + self::ENROLLMENT_ERROR, self::AUTHENTICATION_ERROR, - self::AUTHENTICATION_NOT_REQUIRED, - self::FULLY_AUTHENTICATED, ]; } } diff --git a/wallee-sdk/lib/Model/CardAuthenticationVersion.php b/wallee-sdk/lib/Model/CardAuthenticationVersion.php index 303de90..55acd15 100644 --- a/wallee-sdk/lib/Model/CardAuthenticationVersion.php +++ b/wallee-sdk/lib/Model/CardAuthenticationVersion.php @@ -27,7 +27,7 @@ * @category Class * @description This model defines the card authentication versions. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardAuthenticationVersion diff --git a/wallee-sdk/lib/Model/CardCryptogram.php b/wallee-sdk/lib/Model/CardCryptogram.php index d6e19f8..df5e311 100644 --- a/wallee-sdk/lib/Model/CardCryptogram.php +++ b/wallee-sdk/lib/Model/CardCryptogram.php @@ -29,7 +29,7 @@ * @category Class * @description This model holds the additional card authentication. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardCryptogram implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/CardCryptogramCreate.php b/wallee-sdk/lib/Model/CardCryptogramCreate.php index 8945a41..e42301a 100644 --- a/wallee-sdk/lib/Model/CardCryptogramCreate.php +++ b/wallee-sdk/lib/Model/CardCryptogramCreate.php @@ -29,7 +29,7 @@ * @category Class * @description This model holds the additional card authentication. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardCryptogramCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/CardCryptogramType.php b/wallee-sdk/lib/Model/CardCryptogramType.php index 120868d..fa2cf5e 100644 --- a/wallee-sdk/lib/Model/CardCryptogramType.php +++ b/wallee-sdk/lib/Model/CardCryptogramType.php @@ -27,7 +27,7 @@ * @category Class * @description This model defines the card cryptogram types. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardCryptogramType diff --git a/wallee-sdk/lib/Model/CardholderAuthentication.php b/wallee-sdk/lib/Model/CardholderAuthentication.php index 86ed1cb..eed90a4 100644 --- a/wallee-sdk/lib/Model/CardholderAuthentication.php +++ b/wallee-sdk/lib/Model/CardholderAuthentication.php @@ -29,7 +29,7 @@ * @category Class * @description This model holds the cardholder authentication data (e.g. 3-D Secure authentication). * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardholderAuthentication implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/CardholderAuthenticationCreate.php b/wallee-sdk/lib/Model/CardholderAuthenticationCreate.php index fcdf6bf..b82a1d4 100644 --- a/wallee-sdk/lib/Model/CardholderAuthenticationCreate.php +++ b/wallee-sdk/lib/Model/CardholderAuthenticationCreate.php @@ -29,7 +29,7 @@ * @category Class * @description This model holds the cardholder authentication data (e.g. 3-D Secure authentication). * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardholderAuthenticationCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/Charge.php b/wallee-sdk/lib/Model/Charge.php index 8bc0814..42654bf 100644 --- a/wallee-sdk/lib/Model/Charge.php +++ b/wallee-sdk/lib/Model/Charge.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Charge extends TransactionAwareEntity @@ -384,7 +384,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ChargeAttempt.php b/wallee-sdk/lib/Model/ChargeAttempt.php index 0a5de72..517f635 100644 --- a/wallee-sdk/lib/Model/ChargeAttempt.php +++ b/wallee-sdk/lib/Model/ChargeAttempt.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeAttempt extends TransactionAwareEntity @@ -72,7 +72,7 @@ class ChargeAttempt extends TransactionAwareEntity 'token_version' => '\Wallee\Sdk\Model\TokenVersion', 'user_failure_message' => 'string', 'version' => 'int', - 'wallet_type' => '\Wallee\Sdk\Model\WalletType' + 'wallet' => '\Wallee\Sdk\Model\WalletType' ]; /** @@ -106,7 +106,7 @@ class ChargeAttempt extends TransactionAwareEntity 'token_version' => null, 'user_failure_message' => null, 'version' => 'int32', - 'wallet_type' => null + 'wallet' => null ]; /** @@ -141,7 +141,7 @@ class ChargeAttempt extends TransactionAwareEntity 'token_version' => 'tokenVersion', 'user_failure_message' => 'userFailureMessage', 'version' => 'version', - 'wallet_type' => 'walletType' + 'wallet' => 'wallet' ]; /** @@ -175,7 +175,7 @@ class ChargeAttempt extends TransactionAwareEntity 'token_version' => 'setTokenVersion', 'user_failure_message' => 'setUserFailureMessage', 'version' => 'setVersion', - 'wallet_type' => 'setWalletType' + 'wallet' => 'setWallet' ]; /** @@ -209,7 +209,7 @@ class ChargeAttempt extends TransactionAwareEntity 'token_version' => 'getTokenVersion', 'user_failure_message' => 'getUserFailureMessage', 'version' => 'getVersion', - 'wallet_type' => 'getWalletType' + 'wallet' => 'getWallet' ]; @@ -276,7 +276,7 @@ public function __construct(array $data = null) $this->container['version'] = isset($data['version']) ? $data['version'] : null; - $this->container['wallet_type'] = isset($data['wallet_type']) ? $data['wallet_type'] : null; + $this->container['wallet'] = isset($data['wallet']) ? $data['wallet'] : null; } @@ -786,7 +786,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ @@ -1003,25 +1003,25 @@ public function setVersion($version) /** - * Gets wallet_type + * Gets wallet * * @return \Wallee\Sdk\Model\WalletType */ - public function getWalletType() + public function getWallet() { - return $this->container['wallet_type']; + return $this->container['wallet']; } /** - * Sets wallet_type + * Sets wallet * - * @param \Wallee\Sdk\Model\WalletType $wallet_type + * @param \Wallee\Sdk\Model\WalletType $wallet * * @return $this */ - public function setWalletType($wallet_type) + public function setWallet($wallet) { - $this->container['wallet_type'] = $wallet_type; + $this->container['wallet'] = $wallet; return $this; } diff --git a/wallee-sdk/lib/Model/ChargeAttemptEnvironment.php b/wallee-sdk/lib/Model/ChargeAttemptEnvironment.php index 4d65380..9c909af 100644 --- a/wallee-sdk/lib/Model/ChargeAttemptEnvironment.php +++ b/wallee-sdk/lib/Model/ChargeAttemptEnvironment.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeAttemptEnvironment diff --git a/wallee-sdk/lib/Model/ChargeAttemptState.php b/wallee-sdk/lib/Model/ChargeAttemptState.php index ceb9748..97e5bc4 100644 --- a/wallee-sdk/lib/Model/ChargeAttemptState.php +++ b/wallee-sdk/lib/Model/ChargeAttemptState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeAttemptState diff --git a/wallee-sdk/lib/Model/ChargeBankTransaction.php b/wallee-sdk/lib/Model/ChargeBankTransaction.php index 229b490..a002af1 100644 --- a/wallee-sdk/lib/Model/ChargeBankTransaction.php +++ b/wallee-sdk/lib/Model/ChargeBankTransaction.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeBankTransaction extends TransactionAwareEntity @@ -331,7 +331,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ChargeFlow.php b/wallee-sdk/lib/Model/ChargeFlow.php index 6e9062e..94f7299 100644 --- a/wallee-sdk/lib/Model/ChargeFlow.php +++ b/wallee-sdk/lib/Model/ChargeFlow.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlow implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ChargeFlowLevel.php b/wallee-sdk/lib/Model/ChargeFlowLevel.php index 8fbc29b..6217299 100644 --- a/wallee-sdk/lib/Model/ChargeFlowLevel.php +++ b/wallee-sdk/lib/Model/ChargeFlowLevel.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowLevel extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/ChargeFlowLevelConfiguration.php b/wallee-sdk/lib/Model/ChargeFlowLevelConfiguration.php index 6c1c80b..13e32c9 100644 --- a/wallee-sdk/lib/Model/ChargeFlowLevelConfiguration.php +++ b/wallee-sdk/lib/Model/ChargeFlowLevelConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowLevelConfiguration implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ChargeFlowLevelConfigurationType.php b/wallee-sdk/lib/Model/ChargeFlowLevelConfigurationType.php index f5b03f8..de0de23 100644 --- a/wallee-sdk/lib/Model/ChargeFlowLevelConfigurationType.php +++ b/wallee-sdk/lib/Model/ChargeFlowLevelConfigurationType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowLevelConfigurationType implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ChargeFlowLevelPaymentLink.php b/wallee-sdk/lib/Model/ChargeFlowLevelPaymentLink.php index f8a9f73..f1c23bf 100644 --- a/wallee-sdk/lib/Model/ChargeFlowLevelPaymentLink.php +++ b/wallee-sdk/lib/Model/ChargeFlowLevelPaymentLink.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowLevelPaymentLink extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/ChargeFlowLevelState.php b/wallee-sdk/lib/Model/ChargeFlowLevelState.php index a6fa764..b3254f7 100644 --- a/wallee-sdk/lib/Model/ChargeFlowLevelState.php +++ b/wallee-sdk/lib/Model/ChargeFlowLevelState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowLevelState diff --git a/wallee-sdk/lib/Model/ChargeState.php b/wallee-sdk/lib/Model/ChargeState.php index 20ae146..d284189 100644 --- a/wallee-sdk/lib/Model/ChargeState.php +++ b/wallee-sdk/lib/Model/ChargeState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeState diff --git a/wallee-sdk/lib/Model/ChargeType.php b/wallee-sdk/lib/Model/ChargeType.php index e789293..12b9367 100644 --- a/wallee-sdk/lib/Model/ChargeType.php +++ b/wallee-sdk/lib/Model/ChargeType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeType diff --git a/wallee-sdk/lib/Model/ClientError.php b/wallee-sdk/lib/Model/ClientError.php index d67909f..3092fa8 100644 --- a/wallee-sdk/lib/Model/ClientError.php +++ b/wallee-sdk/lib/Model/ClientError.php @@ -29,7 +29,7 @@ * @category Class * @description An error that is returned as the result of a bad user request or a misconfiguration. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ClientError implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ClientErrorType.php b/wallee-sdk/lib/Model/ClientErrorType.php index d9fee1f..408b2f3 100644 --- a/wallee-sdk/lib/Model/ClientErrorType.php +++ b/wallee-sdk/lib/Model/ClientErrorType.php @@ -27,7 +27,7 @@ * @category Class * @description The type of Client Errors which can be returned by a service. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ClientErrorType diff --git a/wallee-sdk/lib/Model/CompletionLineItem.php b/wallee-sdk/lib/Model/CompletionLineItem.php index 3287d4d..8699bc5 100644 --- a/wallee-sdk/lib/Model/CompletionLineItem.php +++ b/wallee-sdk/lib/Model/CompletionLineItem.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CompletionLineItem implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/CompletionLineItemCreate.php b/wallee-sdk/lib/Model/CompletionLineItemCreate.php index 75b45eb..b85ec28 100644 --- a/wallee-sdk/lib/Model/CompletionLineItemCreate.php +++ b/wallee-sdk/lib/Model/CompletionLineItemCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CompletionLineItemCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/Condition.php b/wallee-sdk/lib/Model/Condition.php index eaab53c..d68f784 100644 --- a/wallee-sdk/lib/Model/Condition.php +++ b/wallee-sdk/lib/Model/Condition.php @@ -27,9 +27,9 @@ * Condition model * * @category Class - * @description A condition configuration controls under which condition a payment connector is applied to a transaction. + * @description A condition allows you to define a criteria that a transaction must fulfill in order for a connector configuration to be considered for processing the payment. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Condition implements ModelInterface, ArrayAccess @@ -259,7 +259,7 @@ public function getConditionType() /** * Sets condition_type * - * @param int $condition_type The selected condition type defines how the configuration is applied to the transactions. + * @param int $condition_type The condition type determines the criteria that a transaction must fulfill in order for a connector configuration to be considered for processing the payment. * * @return $this */ @@ -334,7 +334,7 @@ public function getName() /** * Sets name * - * @param string $name The condition name is used internally to identify the condition. For example the name is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the condition. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ConditionType.php b/wallee-sdk/lib/Model/ConditionType.php index 5783f6e..188ddf1 100644 --- a/wallee-sdk/lib/Model/ConditionType.php +++ b/wallee-sdk/lib/Model/ConditionType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ConditionType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ConnectorInvocation.php b/wallee-sdk/lib/Model/ConnectorInvocation.php index 090e59d..46e1edb 100644 --- a/wallee-sdk/lib/Model/ConnectorInvocation.php +++ b/wallee-sdk/lib/Model/ConnectorInvocation.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ConnectorInvocation extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/ConnectorInvocationStage.php b/wallee-sdk/lib/Model/ConnectorInvocationStage.php index 5243e01..3147aa0 100644 --- a/wallee-sdk/lib/Model/ConnectorInvocationStage.php +++ b/wallee-sdk/lib/Model/ConnectorInvocationStage.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ConnectorInvocationStage diff --git a/wallee-sdk/lib/Model/CreationEntityState.php b/wallee-sdk/lib/Model/CreationEntityState.php index 786f812..845a67c 100644 --- a/wallee-sdk/lib/Model/CreationEntityState.php +++ b/wallee-sdk/lib/Model/CreationEntityState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CreationEntityState diff --git a/wallee-sdk/lib/Model/CriteriaOperator.php b/wallee-sdk/lib/Model/CriteriaOperator.php index 6898fc6..3705e81 100644 --- a/wallee-sdk/lib/Model/CriteriaOperator.php +++ b/wallee-sdk/lib/Model/CriteriaOperator.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CriteriaOperator diff --git a/wallee-sdk/lib/Model/CurrencyBankAccount.php b/wallee-sdk/lib/Model/CurrencyBankAccount.php index 841dfcf..5aa4a97 100644 --- a/wallee-sdk/lib/Model/CurrencyBankAccount.php +++ b/wallee-sdk/lib/Model/CurrencyBankAccount.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CurrencyBankAccount implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/Customer.php b/wallee-sdk/lib/Model/Customer.php index 5e62f07..5c88a39 100644 --- a/wallee-sdk/lib/Model/Customer.php +++ b/wallee-sdk/lib/Model/Customer.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Customer implements ModelInterface, ArrayAccess @@ -324,7 +324,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param string $customer_id + * @param string $customer_id The customer's ID in the merchant's system. * * @return $this */ @@ -353,7 +353,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The customer's email address. * * @return $this */ @@ -382,7 +382,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The customer's family or last name. * * @return $this */ @@ -411,7 +411,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The customer's given or first name. * * @return $this */ @@ -515,7 +515,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ @@ -540,7 +540,7 @@ public function getPreferredCurrency() /** * Sets preferred_currency * - * @param string $preferred_currency + * @param string $preferred_currency The customer's preferred currency. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CustomerActive.php b/wallee-sdk/lib/Model/CustomerActive.php index 4a944c7..330a198 100644 --- a/wallee-sdk/lib/Model/CustomerActive.php +++ b/wallee-sdk/lib/Model/CustomerActive.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerActive extends AbstractCustomerActive diff --git a/wallee-sdk/lib/Model/CustomerAddress.php b/wallee-sdk/lib/Model/CustomerAddress.php index b2cda87..6c4fb7e 100644 --- a/wallee-sdk/lib/Model/CustomerAddress.php +++ b/wallee-sdk/lib/Model/CustomerAddress.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerAddress implements ModelInterface, ArrayAccess @@ -262,7 +262,7 @@ public function getAddress() /** * Sets address * - * @param \Wallee\Sdk\Model\CustomerPostalAddress $address + * @param \Wallee\Sdk\Model\CustomerPostalAddress $address The actual postal address. * * @return $this */ @@ -287,7 +287,7 @@ public function getAddressType() /** * Sets address_type * - * @param \Wallee\Sdk\Model\CustomerAddressType $address_type + * @param \Wallee\Sdk\Model\CustomerAddressType $address_type Whether the address is for billing or shipping or both. * * @return $this */ @@ -337,7 +337,7 @@ public function getCustomer() /** * Sets customer * - * @param \Wallee\Sdk\Model\Customer $customer + * @param \Wallee\Sdk\Model\Customer $customer The customer that the object belongs to. * * @return $this */ @@ -362,7 +362,7 @@ public function getDefaultAddress() /** * Sets default_address * - * @param bool $default_address + * @param bool $default_address Whether this is the customer's default address. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CustomerAddressActive.php b/wallee-sdk/lib/Model/CustomerAddressActive.php index b0d5146..8165ad8 100644 --- a/wallee-sdk/lib/Model/CustomerAddressActive.php +++ b/wallee-sdk/lib/Model/CustomerAddressActive.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerAddressActive extends AbstractCustomerAddressActive diff --git a/wallee-sdk/lib/Model/CustomerAddressCreate.php b/wallee-sdk/lib/Model/CustomerAddressCreate.php index ec33ac2..d2b242a 100644 --- a/wallee-sdk/lib/Model/CustomerAddressCreate.php +++ b/wallee-sdk/lib/Model/CustomerAddressCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerAddressCreate extends AbstractCustomerAddressActive @@ -210,7 +210,7 @@ public function getCustomer() /** * Sets customer * - * @param int $customer + * @param int $customer The customer that the object belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CustomerAddressType.php b/wallee-sdk/lib/Model/CustomerAddressType.php index 98f2114..eee60ee 100644 --- a/wallee-sdk/lib/Model/CustomerAddressType.php +++ b/wallee-sdk/lib/Model/CustomerAddressType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerAddressType diff --git a/wallee-sdk/lib/Model/CustomerComment.php b/wallee-sdk/lib/Model/CustomerComment.php index f855c35..2b19d01 100644 --- a/wallee-sdk/lib/Model/CustomerComment.php +++ b/wallee-sdk/lib/Model/CustomerComment.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerComment implements ModelInterface, ArrayAccess @@ -280,7 +280,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ @@ -309,7 +309,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by + * @param int $created_by The ID of the user the comment was created by. * * @return $this */ @@ -359,7 +359,7 @@ public function getCustomer() /** * Sets customer * - * @param int $customer + * @param int $customer The customer that the object belongs to. * * @return $this */ @@ -384,7 +384,7 @@ public function getEditedBy() /** * Sets edited_by * - * @param int $edited_by + * @param int $edited_by The ID of the user the comment was last updated by. * * @return $this */ @@ -409,7 +409,7 @@ public function getEditedOn() /** * Sets edited_on * - * @param \DateTime $edited_on The date on which the comment was last edited. + * @param \DateTime $edited_on The date and time when the comment was last updated. * * @return $this */ @@ -484,7 +484,7 @@ public function getPinned() /** * Sets pinned * - * @param bool $pinned + * @param bool $pinned Whether the comment is pinned to the top. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CustomerCommentActive.php b/wallee-sdk/lib/Model/CustomerCommentActive.php index 1b79ff4..ae9412d 100644 --- a/wallee-sdk/lib/Model/CustomerCommentActive.php +++ b/wallee-sdk/lib/Model/CustomerCommentActive.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerCommentActive extends AbstractCustomerCommentActive diff --git a/wallee-sdk/lib/Model/CustomerCommentCreate.php b/wallee-sdk/lib/Model/CustomerCommentCreate.php index 46792f7..f3427a1 100644 --- a/wallee-sdk/lib/Model/CustomerCommentCreate.php +++ b/wallee-sdk/lib/Model/CustomerCommentCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerCommentCreate extends AbstractCustomerCommentActive @@ -214,7 +214,7 @@ public function getCustomer() /** * Sets customer * - * @param int $customer + * @param int $customer The customer that the object belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CustomerCreate.php b/wallee-sdk/lib/Model/CustomerCreate.php index 1283b01..e4f263a 100644 --- a/wallee-sdk/lib/Model/CustomerCreate.php +++ b/wallee-sdk/lib/Model/CustomerCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerCreate extends AbstractCustomerActive diff --git a/wallee-sdk/lib/Model/CustomerPostalAddress.php b/wallee-sdk/lib/Model/CustomerPostalAddress.php index af96ada..ab7cee1 100644 --- a/wallee-sdk/lib/Model/CustomerPostalAddress.php +++ b/wallee-sdk/lib/Model/CustomerPostalAddress.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerPostalAddress implements ModelInterface, ArrayAccess @@ -406,7 +406,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -435,7 +435,7 @@ public function getCommercialRegisterNumber() /** * Sets commercial_register_number * - * @param string $commercial_register_number + * @param string $commercial_register_number The commercial registration number of the organization. * * @return $this */ @@ -464,7 +464,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter country code (ISO 3166 format). * * @return $this */ @@ -489,7 +489,7 @@ public function getDateOfBirth() /** * Sets date_of_birth * - * @param \DateTime $date_of_birth + * @param \DateTime $date_of_birth The date of birth. * * @return $this */ @@ -514,7 +514,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -543,7 +543,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The email address. * * @return $this */ @@ -572,7 +572,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -601,7 +601,7 @@ public function getGender() /** * Sets gender * - * @param \Wallee\Sdk\Model\Gender $gender + * @param \Wallee\Sdk\Model\Gender $gender The gender. * * @return $this */ @@ -626,7 +626,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -655,7 +655,7 @@ public function getLegalOrganizationForm() /** * Sets legal_organization_form * - * @param \Wallee\Sdk\Model\LegalOrganizationForm $legal_organization_form + * @param \Wallee\Sdk\Model\LegalOrganizationForm $legal_organization_form The legal form of the organization. * * @return $this */ @@ -680,7 +680,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -709,7 +709,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -738,7 +738,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -767,7 +767,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -792,7 +792,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -821,7 +821,7 @@ public function getSalesTaxNumber() /** * Sets sales_tax_number * - * @param string $sales_tax_number + * @param string $sales_tax_number The sales tax number of the organization. * * @return $this */ @@ -850,7 +850,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -879,7 +879,7 @@ public function getSocialSecurityNumber() /** * Sets social_security_number * - * @param string $social_security_number + * @param string $social_security_number The social security number. * * @return $this */ @@ -908,7 +908,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -937,7 +937,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CustomerPostalAddressCreate.php b/wallee-sdk/lib/Model/CustomerPostalAddressCreate.php index 2f96cb6..608fdab 100644 --- a/wallee-sdk/lib/Model/CustomerPostalAddressCreate.php +++ b/wallee-sdk/lib/Model/CustomerPostalAddressCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerPostalAddressCreate implements ModelInterface, ArrayAccess @@ -406,7 +406,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -435,7 +435,7 @@ public function getCommercialRegisterNumber() /** * Sets commercial_register_number * - * @param string $commercial_register_number + * @param string $commercial_register_number The commercial registration number of the organization. * * @return $this */ @@ -464,7 +464,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter country code (ISO 3166 format). * * @return $this */ @@ -489,7 +489,7 @@ public function getDateOfBirth() /** * Sets date_of_birth * - * @param \DateTime $date_of_birth + * @param \DateTime $date_of_birth The date of birth. * * @return $this */ @@ -514,7 +514,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -543,7 +543,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The email address. * * @return $this */ @@ -572,7 +572,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -601,7 +601,7 @@ public function getGender() /** * Sets gender * - * @param \Wallee\Sdk\Model\Gender $gender + * @param \Wallee\Sdk\Model\Gender $gender The gender. * * @return $this */ @@ -626,7 +626,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -655,7 +655,7 @@ public function getLegalOrganizationForm() /** * Sets legal_organization_form * - * @param int $legal_organization_form + * @param int $legal_organization_form The legal form of the organization. * * @return $this */ @@ -680,7 +680,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -709,7 +709,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -738,7 +738,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -767,7 +767,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -792,7 +792,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -821,7 +821,7 @@ public function getSalesTaxNumber() /** * Sets sales_tax_number * - * @param string $sales_tax_number + * @param string $sales_tax_number The sales tax number of the organization. * * @return $this */ @@ -850,7 +850,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -879,7 +879,7 @@ public function getSocialSecurityNumber() /** * Sets social_security_number * - * @param string $social_security_number + * @param string $social_security_number The social security number. * * @return $this */ @@ -908,7 +908,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -937,7 +937,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/CustomersPresence.php b/wallee-sdk/lib/Model/CustomersPresence.php index 50703cf..1c1ff13 100644 --- a/wallee-sdk/lib/Model/CustomersPresence.php +++ b/wallee-sdk/lib/Model/CustomersPresence.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomersPresence diff --git a/wallee-sdk/lib/Model/DataCollectionType.php b/wallee-sdk/lib/Model/DataCollectionType.php index 61eb8d7..7828989 100644 --- a/wallee-sdk/lib/Model/DataCollectionType.php +++ b/wallee-sdk/lib/Model/DataCollectionType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DataCollectionType diff --git a/wallee-sdk/lib/Model/DatabaseTranslatedString.php b/wallee-sdk/lib/Model/DatabaseTranslatedString.php deleted file mode 100644 index a278d30..0000000 --- a/wallee-sdk/lib/Model/DatabaseTranslatedString.php +++ /dev/null @@ -1,366 +0,0 @@ - 'string[]', - 'display_name' => 'string', - 'items' => '\Wallee\Sdk\Model\DatabaseTranslatedStringItem[]' - ]; - - /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - */ - protected static $swaggerFormats = [ - 'available_languages' => null, - 'display_name' => null, - 'items' => null - ]; - - /** - * Array of attributes where the key is the local name, - * and the value is the original name - * - * @var string[] - */ - protected static $attributeMap = [ - 'available_languages' => 'availableLanguages', - 'display_name' => 'displayName', - 'items' => 'items' - ]; - - /** - * Array of attributes to setter functions (for deserialization of responses) - * - * @var string[] - */ - protected static $setters = [ - 'available_languages' => 'setAvailableLanguages', - 'display_name' => 'setDisplayName', - 'items' => 'setItems' - ]; - - /** - * Array of attributes to getter functions (for serialization of requests) - * - * @var string[] - */ - protected static $getters = [ - 'available_languages' => 'getAvailableLanguages', - 'display_name' => 'getDisplayName', - 'items' => 'getItems' - ]; - - - - /** - * Associative array for storing property values - * - * @var mixed[] - */ - protected $container = []; - - /** - * Constructor - * - * @param mixed[] $data Associated array of property values - * initializing the model - */ - public function __construct(array $data = null) - { - - $this->container['available_languages'] = isset($data['available_languages']) ? $data['available_languages'] : null; - - $this->container['display_name'] = isset($data['display_name']) ? $data['display_name'] : null; - - $this->container['items'] = isset($data['items']) ? $data['items'] : null; - - } - - /** - * Show all the invalid properties with reasons. - * - * @return array invalid properties with reasons - */ - public function listInvalidProperties() - { - $invalidProperties = []; - - return $invalidProperties; - } - - /** - * Array of property to type mappings. Used for (de)serialization - * - * @return array - */ - public static function swaggerTypes() - { - return self::$swaggerTypes; - } - - /** - * Array of property to format mappings. Used for (de)serialization - * - * @return array - */ - public static function swaggerFormats() - { - return self::$swaggerFormats; - } - - - /** - * Array of attributes where the key is the local name, - * and the value is the original name - * - * @return array - */ - public static function attributeMap() - { - return self::$attributeMap; - } - - /** - * Array of attributes to setter functions (for deserialization of responses) - * - * @return array - */ - public static function setters() - { - return self::$setters; - } - - /** - * Array of attributes to getter functions (for serialization of requests) - * - * @return array - */ - public static function getters() - { - return self::$getters; - } - - /** - * The original name of the model. - * - * @return string - */ - public function getModelName() - { - return self::$swaggerModelName; - } - - - - /** - * Validate all the properties in the model - * return true if all passed - * - * @return bool True if all properties are valid - */ - public function valid() - { - return count($this->listInvalidProperties()) === 0; - } - - - - /** - * Gets available_languages - * - * @return string[] - */ - public function getAvailableLanguages() - { - return $this->container['available_languages']; - } - - /** - * Sets available_languages - * - * @param string[] $available_languages - * - * @return $this - */ - public function setAvailableLanguages($available_languages) - { - $this->container['available_languages'] = $available_languages; - - return $this; - } - - - /** - * Gets display_name - * - * @return string - */ - public function getDisplayName() - { - return $this->container['display_name']; - } - - /** - * Sets display_name - * - * @param string $display_name - * - * @return $this - */ - public function setDisplayName($display_name) - { - $this->container['display_name'] = $display_name; - - return $this; - } - - - /** - * Gets items - * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringItem[] - */ - public function getItems() - { - return $this->container['items']; - } - - /** - * Sets items - * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringItem[] $items - * - * @return $this - */ - public function setItems($items) - { - $this->container['items'] = $items; - - return $this; - } - - /** - * Returns true if offset exists. False otherwise. - * - * @param integer $offset Offset - * - * @return boolean - */ - #[\ReturnTypeWillChange] - public function offsetExists($offset) - { - return isset($this->container[$offset]); - } - - /** - * Gets offset. - * - * @param integer $offset Offset - * - * @return mixed - */ - #[\ReturnTypeWillChange] - public function offsetGet($offset) - { - return isset($this->container[$offset]) ? $this->container[$offset] : null; - } - - /** - * Sets value based on offset. - * - * @param integer $offset Offset - * @param mixed $value Value to be set - * - * @return void - */ - #[\ReturnTypeWillChange] - public function offsetSet($offset, $value) - { - if (is_null($offset)) { - $this->container[] = $value; - } else { - $this->container[$offset] = $value; - } - } - - /** - * Unsets offset. - * - * @param integer $offset Offset - * - * @return void - */ - #[\ReturnTypeWillChange] - public function offsetUnset($offset) - { - unset($this->container[$offset]); - } - - /** - * Gets the string presentation of the object - * - * @return string - */ - public function __toString() - { - if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print - return json_encode( - ObjectSerializer::sanitizeForSerialization($this), - JSON_PRETTY_PRINT - ); - } - - return json_encode(ObjectSerializer::sanitizeForSerialization($this)); - } -} - - diff --git a/wallee-sdk/lib/Model/DatabaseTranslatedStringItem.php b/wallee-sdk/lib/Model/DatabaseTranslatedStringItem.php deleted file mode 100644 index 9bc9140..0000000 --- a/wallee-sdk/lib/Model/DatabaseTranslatedStringItem.php +++ /dev/null @@ -1,374 +0,0 @@ - 'string', - 'language_code' => 'string', - 'translation' => 'string' - ]; - - /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - */ - protected static $swaggerFormats = [ - 'language' => null, - 'language_code' => null, - 'translation' => null - ]; - - /** - * Array of attributes where the key is the local name, - * and the value is the original name - * - * @var string[] - */ - protected static $attributeMap = [ - 'language' => 'language', - 'language_code' => 'languageCode', - 'translation' => 'translation' - ]; - - /** - * Array of attributes to setter functions (for deserialization of responses) - * - * @var string[] - */ - protected static $setters = [ - 'language' => 'setLanguage', - 'language_code' => 'setLanguageCode', - 'translation' => 'setTranslation' - ]; - - /** - * Array of attributes to getter functions (for serialization of requests) - * - * @var string[] - */ - protected static $getters = [ - 'language' => 'getLanguage', - 'language_code' => 'getLanguageCode', - 'translation' => 'getTranslation' - ]; - - - - /** - * Associative array for storing property values - * - * @var mixed[] - */ - protected $container = []; - - /** - * Constructor - * - * @param mixed[] $data Associated array of property values - * initializing the model - */ - public function __construct(array $data = null) - { - - $this->container['language'] = isset($data['language']) ? $data['language'] : null; - - $this->container['language_code'] = isset($data['language_code']) ? $data['language_code'] : null; - - $this->container['translation'] = isset($data['translation']) ? $data['translation'] : null; - - } - - /** - * Show all the invalid properties with reasons. - * - * @return array invalid properties with reasons - */ - public function listInvalidProperties() - { - $invalidProperties = []; - - if (!is_null($this->container['translation']) && (mb_strlen($this->container['translation']) > 16777216)) { - $invalidProperties[] = "invalid value for 'translation', the character length must be smaller than or equal to 16777216."; - } - - return $invalidProperties; - } - - /** - * Array of property to type mappings. Used for (de)serialization - * - * @return array - */ - public static function swaggerTypes() - { - return self::$swaggerTypes; - } - - /** - * Array of property to format mappings. Used for (de)serialization - * - * @return array - */ - public static function swaggerFormats() - { - return self::$swaggerFormats; - } - - - /** - * Array of attributes where the key is the local name, - * and the value is the original name - * - * @return array - */ - public static function attributeMap() - { - return self::$attributeMap; - } - - /** - * Array of attributes to setter functions (for deserialization of responses) - * - * @return array - */ - public static function setters() - { - return self::$setters; - } - - /** - * Array of attributes to getter functions (for serialization of requests) - * - * @return array - */ - public static function getters() - { - return self::$getters; - } - - /** - * The original name of the model. - * - * @return string - */ - public function getModelName() - { - return self::$swaggerModelName; - } - - - - /** - * Validate all the properties in the model - * return true if all passed - * - * @return bool True if all properties are valid - */ - public function valid() - { - return count($this->listInvalidProperties()) === 0; - } - - - - /** - * Gets language - * - * @return string - */ - public function getLanguage() - { - return $this->container['language']; - } - - /** - * Sets language - * - * @param string $language - * - * @return $this - */ - public function setLanguage($language) - { - $this->container['language'] = $language; - - return $this; - } - - - /** - * Gets language_code - * - * @return string - */ - public function getLanguageCode() - { - return $this->container['language_code']; - } - - /** - * Sets language_code - * - * @param string $language_code - * - * @return $this - */ - public function setLanguageCode($language_code) - { - $this->container['language_code'] = $language_code; - - return $this; - } - - - /** - * Gets translation - * - * @return string - */ - public function getTranslation() - { - return $this->container['translation']; - } - - /** - * Sets translation - * - * @param string $translation - * - * @return $this - */ - public function setTranslation($translation) - { - if (!is_null($translation) && (mb_strlen($translation) > 16777216)) { - throw new \InvalidArgumentException('invalid length for $translation when calling DatabaseTranslatedStringItem., must be smaller than or equal to 16777216.'); - } - - $this->container['translation'] = $translation; - - return $this; - } - - /** - * Returns true if offset exists. False otherwise. - * - * @param integer $offset Offset - * - * @return boolean - */ - #[\ReturnTypeWillChange] - public function offsetExists($offset) - { - return isset($this->container[$offset]); - } - - /** - * Gets offset. - * - * @param integer $offset Offset - * - * @return mixed - */ - #[\ReturnTypeWillChange] - public function offsetGet($offset) - { - return isset($this->container[$offset]) ? $this->container[$offset] : null; - } - - /** - * Sets value based on offset. - * - * @param integer $offset Offset - * @param mixed $value Value to be set - * - * @return void - */ - #[\ReturnTypeWillChange] - public function offsetSet($offset, $value) - { - if (is_null($offset)) { - $this->container[] = $value; - } else { - $this->container[$offset] = $value; - } - } - - /** - * Unsets offset. - * - * @param integer $offset Offset - * - * @return void - */ - #[\ReturnTypeWillChange] - public function offsetUnset($offset) - { - unset($this->container[$offset]); - } - - /** - * Gets the string presentation of the object - * - * @return string - */ - public function __toString() - { - if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print - return json_encode( - ObjectSerializer::sanitizeForSerialization($this), - JSON_PRETTY_PRINT - ); - } - - return json_encode(ObjectSerializer::sanitizeForSerialization($this)); - } -} - - diff --git a/wallee-sdk/lib/Model/DatabaseTranslatedStringItemCreate.php b/wallee-sdk/lib/Model/DatabaseTranslatedStringItemCreate.php deleted file mode 100644 index 57033eb..0000000 --- a/wallee-sdk/lib/Model/DatabaseTranslatedStringItemCreate.php +++ /dev/null @@ -1,345 +0,0 @@ - 'string', - 'translation' => 'string' - ]; - - /** - * Array of property to format mappings. Used for (de)serialization - * - * @var string[] - */ - protected static $swaggerFormats = [ - 'language' => null, - 'translation' => null - ]; - - /** - * Array of attributes where the key is the local name, - * and the value is the original name - * - * @var string[] - */ - protected static $attributeMap = [ - 'language' => 'language', - 'translation' => 'translation' - ]; - - /** - * Array of attributes to setter functions (for deserialization of responses) - * - * @var string[] - */ - protected static $setters = [ - 'language' => 'setLanguage', - 'translation' => 'setTranslation' - ]; - - /** - * Array of attributes to getter functions (for serialization of requests) - * - * @var string[] - */ - protected static $getters = [ - 'language' => 'getLanguage', - 'translation' => 'getTranslation' - ]; - - - - /** - * Associative array for storing property values - * - * @var mixed[] - */ - protected $container = []; - - /** - * Constructor - * - * @param mixed[] $data Associated array of property values - * initializing the model - */ - public function __construct(array $data = null) - { - - $this->container['language'] = isset($data['language']) ? $data['language'] : null; - - $this->container['translation'] = isset($data['translation']) ? $data['translation'] : null; - - } - - /** - * Show all the invalid properties with reasons. - * - * @return array invalid properties with reasons - */ - public function listInvalidProperties() - { - $invalidProperties = []; - - if ($this->container['language'] === null) { - $invalidProperties[] = "'language' can't be null"; - } - if (!is_null($this->container['translation']) && (mb_strlen($this->container['translation']) > 16777216)) { - $invalidProperties[] = "invalid value for 'translation', the character length must be smaller than or equal to 16777216."; - } - - return $invalidProperties; - } - - /** - * Array of property to type mappings. Used for (de)serialization - * - * @return array - */ - public static function swaggerTypes() - { - return self::$swaggerTypes; - } - - /** - * Array of property to format mappings. Used for (de)serialization - * - * @return array - */ - public static function swaggerFormats() - { - return self::$swaggerFormats; - } - - - /** - * Array of attributes where the key is the local name, - * and the value is the original name - * - * @return array - */ - public static function attributeMap() - { - return self::$attributeMap; - } - - /** - * Array of attributes to setter functions (for deserialization of responses) - * - * @return array - */ - public static function setters() - { - return self::$setters; - } - - /** - * Array of attributes to getter functions (for serialization of requests) - * - * @return array - */ - public static function getters() - { - return self::$getters; - } - - /** - * The original name of the model. - * - * @return string - */ - public function getModelName() - { - return self::$swaggerModelName; - } - - - - /** - * Validate all the properties in the model - * return true if all passed - * - * @return bool True if all properties are valid - */ - public function valid() - { - return count($this->listInvalidProperties()) === 0; - } - - - - /** - * Gets language - * - * @return string - */ - public function getLanguage() - { - return $this->container['language']; - } - - /** - * Sets language - * - * @param string $language - * - * @return $this - */ - public function setLanguage($language) - { - $this->container['language'] = $language; - - return $this; - } - - - /** - * Gets translation - * - * @return string - */ - public function getTranslation() - { - return $this->container['translation']; - } - - /** - * Sets translation - * - * @param string $translation - * - * @return $this - */ - public function setTranslation($translation) - { - if (!is_null($translation) && (mb_strlen($translation) > 16777216)) { - throw new \InvalidArgumentException('invalid length for $translation when calling DatabaseTranslatedStringItemCreate., must be smaller than or equal to 16777216.'); - } - - $this->container['translation'] = $translation; - - return $this; - } - - /** - * Returns true if offset exists. False otherwise. - * - * @param integer $offset Offset - * - * @return boolean - */ - #[\ReturnTypeWillChange] - public function offsetExists($offset) - { - return isset($this->container[$offset]); - } - - /** - * Gets offset. - * - * @param integer $offset Offset - * - * @return mixed - */ - #[\ReturnTypeWillChange] - public function offsetGet($offset) - { - return isset($this->container[$offset]) ? $this->container[$offset] : null; - } - - /** - * Sets value based on offset. - * - * @param integer $offset Offset - * @param mixed $value Value to be set - * - * @return void - */ - #[\ReturnTypeWillChange] - public function offsetSet($offset, $value) - { - if (is_null($offset)) { - $this->container[] = $value; - } else { - $this->container[$offset] = $value; - } - } - - /** - * Unsets offset. - * - * @param integer $offset Offset - * - * @return void - */ - #[\ReturnTypeWillChange] - public function offsetUnset($offset) - { - unset($this->container[$offset]); - } - - /** - * Gets the string presentation of the object - * - * @return string - */ - public function __toString() - { - if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print - return json_encode( - ObjectSerializer::sanitizeForSerialization($this), - JSON_PRETTY_PRINT - ); - } - - return json_encode(ObjectSerializer::sanitizeForSerialization($this)); - } -} - - diff --git a/wallee-sdk/lib/Model/DebtCollectionCase.php b/wallee-sdk/lib/Model/DebtCollectionCase.php index daeab65..fc0b81b 100644 --- a/wallee-sdk/lib/Model/DebtCollectionCase.php +++ b/wallee-sdk/lib/Model/DebtCollectionCase.php @@ -29,7 +29,7 @@ * @category Class * @description The debt collection case represents a try to collect the money from the debtor. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionCase implements ModelInterface, ArrayAccess @@ -1123,7 +1123,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/DebtCollectionCaseCreate.php b/wallee-sdk/lib/Model/DebtCollectionCaseCreate.php index 62b957a..cde0ee8 100644 --- a/wallee-sdk/lib/Model/DebtCollectionCaseCreate.php +++ b/wallee-sdk/lib/Model/DebtCollectionCaseCreate.php @@ -27,7 +27,7 @@ * @category Class * @description The debt collection case represents a try to collect the money from the debtor. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionCaseCreate extends AbstractDebtCollectionCaseUpdate diff --git a/wallee-sdk/lib/Model/DebtCollectionCaseDocument.php b/wallee-sdk/lib/Model/DebtCollectionCaseDocument.php index 333c60d..51457a4 100644 --- a/wallee-sdk/lib/Model/DebtCollectionCaseDocument.php +++ b/wallee-sdk/lib/Model/DebtCollectionCaseDocument.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionCaseDocument implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/DebtCollectionCaseSource.php b/wallee-sdk/lib/Model/DebtCollectionCaseSource.php index 4c758b8..3183ee5 100644 --- a/wallee-sdk/lib/Model/DebtCollectionCaseSource.php +++ b/wallee-sdk/lib/Model/DebtCollectionCaseSource.php @@ -29,7 +29,7 @@ * @category Class * @description The debt collection case source represents the origin of the case. It allows to understand from where the amount receivable is coming from. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionCaseSource implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/DebtCollectionCaseState.php b/wallee-sdk/lib/Model/DebtCollectionCaseState.php index 4daf681..25fd981 100644 --- a/wallee-sdk/lib/Model/DebtCollectionCaseState.php +++ b/wallee-sdk/lib/Model/DebtCollectionCaseState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionCaseState diff --git a/wallee-sdk/lib/Model/DebtCollectionCaseUpdate.php b/wallee-sdk/lib/Model/DebtCollectionCaseUpdate.php index 5317597..2802b08 100644 --- a/wallee-sdk/lib/Model/DebtCollectionCaseUpdate.php +++ b/wallee-sdk/lib/Model/DebtCollectionCaseUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description The debt collection case represents a try to collect the money from the debtor. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionCaseUpdate extends AbstractDebtCollectionCaseUpdate diff --git a/wallee-sdk/lib/Model/DebtCollectionEnvironment.php b/wallee-sdk/lib/Model/DebtCollectionEnvironment.php index 180dbcd..b15f80d 100644 --- a/wallee-sdk/lib/Model/DebtCollectionEnvironment.php +++ b/wallee-sdk/lib/Model/DebtCollectionEnvironment.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionEnvironment diff --git a/wallee-sdk/lib/Model/DebtCollectionReceipt.php b/wallee-sdk/lib/Model/DebtCollectionReceipt.php index a0f03b1..4c9a5c7 100644 --- a/wallee-sdk/lib/Model/DebtCollectionReceipt.php +++ b/wallee-sdk/lib/Model/DebtCollectionReceipt.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionReceipt implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/DebtCollectionReceiptSource.php b/wallee-sdk/lib/Model/DebtCollectionReceiptSource.php index 8030289..834a60b 100644 --- a/wallee-sdk/lib/Model/DebtCollectionReceiptSource.php +++ b/wallee-sdk/lib/Model/DebtCollectionReceiptSource.php @@ -29,7 +29,7 @@ * @category Class * @description The debt collection receipt source represents the origin of a particular part of the collected amount. It allows to understand from where the amount is coming from, e.g. if it was added manually or in some other way. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionReceiptSource implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/DebtCollector.php b/wallee-sdk/lib/Model/DebtCollector.php index 46963ba..b8db39f 100644 --- a/wallee-sdk/lib/Model/DebtCollector.php +++ b/wallee-sdk/lib/Model/DebtCollector.php @@ -29,7 +29,7 @@ * @category Class * @description The debt collector connects to an external service to process the debt collection case and as such directs the debt collection process. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollector implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/DebtCollectorCondition.php b/wallee-sdk/lib/Model/DebtCollectorCondition.php index 35f723d..12b1706 100644 --- a/wallee-sdk/lib/Model/DebtCollectorCondition.php +++ b/wallee-sdk/lib/Model/DebtCollectorCondition.php @@ -29,7 +29,7 @@ * @category Class * @description A condition controls under which circumstances a collector configuration is applied to a debt collection case. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectorCondition implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/DebtCollectorConditionType.php b/wallee-sdk/lib/Model/DebtCollectorConditionType.php index 7018dd3..81ddca2 100644 --- a/wallee-sdk/lib/Model/DebtCollectorConditionType.php +++ b/wallee-sdk/lib/Model/DebtCollectorConditionType.php @@ -29,7 +29,7 @@ * @category Class * @description The debt collection condition type controls how a condition is applied to a case. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectorConditionType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/DebtCollectorConfiguration.php b/wallee-sdk/lib/Model/DebtCollectorConfiguration.php index 1fcd316..fe811fc 100644 --- a/wallee-sdk/lib/Model/DebtCollectorConfiguration.php +++ b/wallee-sdk/lib/Model/DebtCollectorConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description The debt collector configuration defines the behavior of the collection process for a particular collector. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectorConfiguration implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/DeliveryIndication.php b/wallee-sdk/lib/Model/DeliveryIndication.php index 8057319..2d0481e 100644 --- a/wallee-sdk/lib/Model/DeliveryIndication.php +++ b/wallee-sdk/lib/Model/DeliveryIndication.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DeliveryIndication extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/DeliveryIndicationDecisionReason.php b/wallee-sdk/lib/Model/DeliveryIndicationDecisionReason.php index 8e3fb9b..5dbd87b 100644 --- a/wallee-sdk/lib/Model/DeliveryIndicationDecisionReason.php +++ b/wallee-sdk/lib/Model/DeliveryIndicationDecisionReason.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DeliveryIndicationDecisionReason implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/DeliveryIndicationState.php b/wallee-sdk/lib/Model/DeliveryIndicationState.php index 198cc52..700fe4e 100644 --- a/wallee-sdk/lib/Model/DeliveryIndicationState.php +++ b/wallee-sdk/lib/Model/DeliveryIndicationState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DeliveryIndicationState diff --git a/wallee-sdk/lib/Model/DocumentTemplate.php b/wallee-sdk/lib/Model/DocumentTemplate.php index 6d20bc8..660aef7 100644 --- a/wallee-sdk/lib/Model/DocumentTemplate.php +++ b/wallee-sdk/lib/Model/DocumentTemplate.php @@ -29,7 +29,7 @@ * @category Class * @description A document template contains the customizations for a particular document template type. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DocumentTemplate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/DocumentTemplateType.php b/wallee-sdk/lib/Model/DocumentTemplateType.php index febde8c..9d844ac 100644 --- a/wallee-sdk/lib/Model/DocumentTemplateType.php +++ b/wallee-sdk/lib/Model/DocumentTemplateType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DocumentTemplateType implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/DocumentTemplateTypeGroup.php b/wallee-sdk/lib/Model/DocumentTemplateTypeGroup.php index e387fd1..4405375 100644 --- a/wallee-sdk/lib/Model/DocumentTemplateTypeGroup.php +++ b/wallee-sdk/lib/Model/DocumentTemplateTypeGroup.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DocumentTemplateTypeGroup implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/EntityExportRequest.php b/wallee-sdk/lib/Model/EntityExportRequest.php index f1b0687..9199bd5 100644 --- a/wallee-sdk/lib/Model/EntityExportRequest.php +++ b/wallee-sdk/lib/Model/EntityExportRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The entity property export request contains the information required to create an export of a list of entities. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class EntityExportRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/EntityQuery.php b/wallee-sdk/lib/Model/EntityQuery.php index dff40b4..43cc987 100644 --- a/wallee-sdk/lib/Model/EntityQuery.php +++ b/wallee-sdk/lib/Model/EntityQuery.php @@ -29,7 +29,7 @@ * @category Class * @description The entity query allows to search for specific entities by providing filters. This is similar to a SQL query. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class EntityQuery implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/EntityQueryFilter.php b/wallee-sdk/lib/Model/EntityQueryFilter.php index 719930e..a68103b 100644 --- a/wallee-sdk/lib/Model/EntityQueryFilter.php +++ b/wallee-sdk/lib/Model/EntityQueryFilter.php @@ -29,7 +29,7 @@ * @category Class * @description The query filter allows to restrict the entities which are returned. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class EntityQueryFilter implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/EntityQueryFilterType.php b/wallee-sdk/lib/Model/EntityQueryFilterType.php index b94608f..c0c5f2a 100644 --- a/wallee-sdk/lib/Model/EntityQueryFilterType.php +++ b/wallee-sdk/lib/Model/EntityQueryFilterType.php @@ -27,7 +27,7 @@ * @category Class * @description The filter type defines how the filter is interpreted. Depending of the type different properties are relevant on the filter itself. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class EntityQueryFilterType diff --git a/wallee-sdk/lib/Model/EntityQueryOrderBy.php b/wallee-sdk/lib/Model/EntityQueryOrderBy.php index 71dfa9b..a9ea4c1 100644 --- a/wallee-sdk/lib/Model/EntityQueryOrderBy.php +++ b/wallee-sdk/lib/Model/EntityQueryOrderBy.php @@ -29,7 +29,7 @@ * @category Class * @description The 'order by' allows to order the returned entities. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class EntityQueryOrderBy implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/EntityQueryOrderByType.php b/wallee-sdk/lib/Model/EntityQueryOrderByType.php index 0ea0494..9848323 100644 --- a/wallee-sdk/lib/Model/EntityQueryOrderByType.php +++ b/wallee-sdk/lib/Model/EntityQueryOrderByType.php @@ -27,7 +27,7 @@ * @category Class * @description The 'order by' type specifies how the result is sorted. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class EntityQueryOrderByType diff --git a/wallee-sdk/lib/Model/Environment.php b/wallee-sdk/lib/Model/Environment.php index 914115c..e2e4e63 100644 --- a/wallee-sdk/lib/Model/Environment.php +++ b/wallee-sdk/lib/Model/Environment.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Environment diff --git a/wallee-sdk/lib/Model/ExternalTransferBankTransaction.php b/wallee-sdk/lib/Model/ExternalTransferBankTransaction.php index 3700b40..39cc85f 100644 --- a/wallee-sdk/lib/Model/ExternalTransferBankTransaction.php +++ b/wallee-sdk/lib/Model/ExternalTransferBankTransaction.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ExternalTransferBankTransaction implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/FailureCategory.php b/wallee-sdk/lib/Model/FailureCategory.php index bd3b3c1..a65952f 100644 --- a/wallee-sdk/lib/Model/FailureCategory.php +++ b/wallee-sdk/lib/Model/FailureCategory.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class FailureCategory diff --git a/wallee-sdk/lib/Model/FailureReason.php b/wallee-sdk/lib/Model/FailureReason.php index c209108..c78ae1b 100644 --- a/wallee-sdk/lib/Model/FailureReason.php +++ b/wallee-sdk/lib/Model/FailureReason.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class FailureReason implements ModelInterface, ArrayAccess @@ -51,7 +51,6 @@ class FailureReason implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'category' => '\Wallee\Sdk\Model\FailureCategory', 'description' => 'map[string,string]', - 'features' => 'int[]', 'id' => 'int', 'name' => 'map[string,string]' ]; @@ -64,7 +63,6 @@ class FailureReason implements ModelInterface, ArrayAccess protected static $swaggerFormats = [ 'category' => null, 'description' => null, - 'features' => 'int64', 'id' => 'int64', 'name' => null ]; @@ -78,7 +76,6 @@ class FailureReason implements ModelInterface, ArrayAccess protected static $attributeMap = [ 'category' => 'category', 'description' => 'description', - 'features' => 'features', 'id' => 'id', 'name' => 'name' ]; @@ -91,7 +88,6 @@ class FailureReason implements ModelInterface, ArrayAccess protected static $setters = [ 'category' => 'setCategory', 'description' => 'setDescription', - 'features' => 'setFeatures', 'id' => 'setId', 'name' => 'setName' ]; @@ -104,7 +100,6 @@ class FailureReason implements ModelInterface, ArrayAccess protected static $getters = [ 'category' => 'getCategory', 'description' => 'getDescription', - 'features' => 'getFeatures', 'id' => 'getId', 'name' => 'getName' ]; @@ -131,8 +126,6 @@ public function __construct(array $data = null) $this->container['description'] = isset($data['description']) ? $data['description'] : null; - $this->container['features'] = isset($data['features']) ? $data['features'] : null; - $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -241,7 +234,7 @@ public function getCategory() /** * Sets category * - * @param \Wallee\Sdk\Model\FailureCategory $category + * @param \Wallee\Sdk\Model\FailureCategory $category The category that the failure reason belongs to. * * @return $this */ @@ -266,7 +259,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -278,31 +271,6 @@ public function setDescription($description) } - /** - * Gets features - * - * @return int[] - */ - public function getFeatures() - { - return $this->container['features']; - } - - /** - * Sets features - * - * @param int[] $features - * - * @return $this - */ - public function setFeatures($features) - { - $this->container['features'] = $features; - - return $this; - } - - /** * Gets id * @@ -341,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Feature.php b/wallee-sdk/lib/Model/Feature.php index 9708a15..a7c4f42 100644 --- a/wallee-sdk/lib/Model/Feature.php +++ b/wallee-sdk/lib/Model/Feature.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Feature implements ModelInterface, ArrayAccess @@ -269,7 +269,7 @@ public function getBeta() /** * Sets beta * - * @param bool $beta + * @param bool $beta Whether the feature is in beta stage and there may still be some issues. * * @return $this */ @@ -294,7 +294,7 @@ public function getCategory() /** * Sets category * - * @param \Wallee\Sdk\Model\FeatureCategory $category + * @param \Wallee\Sdk\Model\FeatureCategory $category The category that the feature belongs to. * * @return $this */ @@ -319,7 +319,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -369,7 +369,7 @@ public function getLogoPath() /** * Sets logo_path * - * @param string $logo_path + * @param string $logo_path The path to the feature's logo image. * * @return $this */ @@ -394,7 +394,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -419,7 +419,7 @@ public function getRequiredFeatures() /** * Sets required_features * - * @param int[] $required_features + * @param int[] $required_features The features that must be enabled for this feature to work properly. * * @return $this */ @@ -444,7 +444,7 @@ public function getSortOrder() /** * Sets sort_order * - * @param int $sort_order + * @param int $sort_order When listing features, they can be sorted by this number. * * @return $this */ diff --git a/wallee-sdk/lib/Model/FeatureCategory.php b/wallee-sdk/lib/Model/FeatureCategory.php index f304120..609d6d0 100644 --- a/wallee-sdk/lib/Model/FeatureCategory.php +++ b/wallee-sdk/lib/Model/FeatureCategory.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class FeatureCategory implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -284,7 +284,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getOrderWeight() /** * Sets order_weight * - * @param int $order_weight + * @param int $order_weight When listing feature categories, they can be sorted by this number. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Gender.php b/wallee-sdk/lib/Model/Gender.php index 23d4e6e..6d12dae 100644 --- a/wallee-sdk/lib/Model/Gender.php +++ b/wallee-sdk/lib/Model/Gender.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Gender diff --git a/wallee-sdk/lib/Model/HumanUser.php b/wallee-sdk/lib/Model/HumanUser.php index 63a19bc..bee5aca 100644 --- a/wallee-sdk/lib/Model/HumanUser.php +++ b/wallee-sdk/lib/Model/HumanUser.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class HumanUser implements ModelInterface, ArrayAccess @@ -56,8 +56,8 @@ class HumanUser implements ModelInterface, ArrayAccess 'lastname' => 'string', 'mobile_phone_number' => 'string', 'mobile_phone_verified' => 'bool', - 'primary_account' => '\Wallee\Sdk\Model\Account', - 'scope' => '\Wallee\Sdk\Model\Scope', + 'primary_account' => 'int', + 'scope' => 'int', 'time_zone' => 'string', 'two_factor_enabled' => 'bool', 'two_factor_type' => '\Wallee\Sdk\Model\TwoFactorAuthenticationType' @@ -76,8 +76,8 @@ class HumanUser implements ModelInterface, ArrayAccess 'lastname' => null, 'mobile_phone_number' => null, 'mobile_phone_verified' => null, - 'primary_account' => null, - 'scope' => null, + 'primary_account' => 'int64', + 'scope' => 'int64', 'time_zone' => null, 'two_factor_enabled' => null, 'two_factor_type' => null @@ -306,7 +306,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address The email address of the user. + * @param string $email_address The user's email address. * * @return $this */ @@ -335,7 +335,7 @@ public function getEmailAddressVerified() /** * Sets email_address_verified * - * @param bool $email_address_verified Defines whether a user is verified or not. + * @param bool $email_address_verified Whether the user's email address has been verified. * * @return $this */ @@ -360,7 +360,7 @@ public function getFirstname() /** * Sets firstname * - * @param string $firstname The first name of the user. + * @param string $firstname The user's first name. * * @return $this */ @@ -389,7 +389,7 @@ public function getLanguage() /** * Sets language * - * @param string $language The preferred language of the user. + * @param string $language The user's preferred language. * * @return $this */ @@ -414,7 +414,7 @@ public function getLastname() /** * Sets lastname * - * @param string $lastname The last name of the user. + * @param string $lastname The user's last name. * * @return $this */ @@ -443,7 +443,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The user's mobile phone number. * * @return $this */ @@ -472,7 +472,7 @@ public function getMobilePhoneVerified() /** * Sets mobile_phone_verified * - * @param bool $mobile_phone_verified Defines whether a users mobile phone number is verified or not. + * @param bool $mobile_phone_verified Whether the user's mobile phone number has been verified. * * @return $this */ @@ -487,7 +487,7 @@ public function setMobilePhoneVerified($mobile_phone_verified) /** * Gets primary_account * - * @return \Wallee\Sdk\Model\Account + * @return int */ public function getPrimaryAccount() { @@ -497,7 +497,7 @@ public function getPrimaryAccount() /** * Sets primary_account * - * @param \Wallee\Sdk\Model\Account $primary_account The primary account links the user to a specific account. + * @param int $primary_account The primary account that the user belongs to. * * @return $this */ @@ -512,7 +512,7 @@ public function setPrimaryAccount($primary_account) /** * Gets scope * - * @return \Wallee\Sdk\Model\Scope + * @return int */ public function getScope() { @@ -522,7 +522,7 @@ public function getScope() /** * Sets scope * - * @param \Wallee\Sdk\Model\Scope $scope The scope to which the user belongs to. + * @param int $scope The scope that the user belongs to. * * @return $this */ @@ -547,7 +547,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone which is applied for the user. If no timezone is specified the browser is used to determine an appropriate time zone. + * @param string $time_zone The user's time zone. If none is specified, the one provided by the browser will be used. * * @return $this */ @@ -572,7 +572,7 @@ public function getTwoFactorEnabled() /** * Sets two_factor_enabled * - * @param bool $two_factor_enabled Defines whether two-factor authentication is enabled for this user. + * @param bool $two_factor_enabled Whether two-factor authentication is enabled for this user. * * @return $this */ @@ -597,7 +597,7 @@ public function getTwoFactorType() /** * Sets two_factor_type * - * @param \Wallee\Sdk\Model\TwoFactorAuthenticationType $two_factor_type + * @param \Wallee\Sdk\Model\TwoFactorAuthenticationType $two_factor_type The type of two-factor authentication that is enabled for the user. * * @return $this */ diff --git a/wallee-sdk/lib/Model/HumanUserCreate.php b/wallee-sdk/lib/Model/HumanUserCreate.php index 9b8be8f..57dff24 100644 --- a/wallee-sdk/lib/Model/HumanUserCreate.php +++ b/wallee-sdk/lib/Model/HumanUserCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class HumanUserCreate extends AbstractHumanUserUpdate @@ -223,7 +223,7 @@ public function getPrimaryAccount() /** * Sets primary_account * - * @param int $primary_account The primary account links the user to a specific account. + * @param int $primary_account The primary account that the user belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/HumanUserUpdate.php b/wallee-sdk/lib/Model/HumanUserUpdate.php index cc93127..cb638c7 100644 --- a/wallee-sdk/lib/Model/HumanUserUpdate.php +++ b/wallee-sdk/lib/Model/HumanUserUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class HumanUserUpdate extends AbstractHumanUserUpdate diff --git a/wallee-sdk/lib/Model/InstallmentCalculatedPlan.php b/wallee-sdk/lib/Model/InstallmentCalculatedPlan.php index 3f4e02f..6ec5dbe 100644 --- a/wallee-sdk/lib/Model/InstallmentCalculatedPlan.php +++ b/wallee-sdk/lib/Model/InstallmentCalculatedPlan.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentCalculatedPlan implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/InstallmentCalculatedSlice.php b/wallee-sdk/lib/Model/InstallmentCalculatedSlice.php index 0b70090..3fbfde3 100644 --- a/wallee-sdk/lib/Model/InstallmentCalculatedSlice.php +++ b/wallee-sdk/lib/Model/InstallmentCalculatedSlice.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentCalculatedSlice implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/InstallmentPayment.php b/wallee-sdk/lib/Model/InstallmentPayment.php index 6795f64..71c6506 100644 --- a/wallee-sdk/lib/Model/InstallmentPayment.php +++ b/wallee-sdk/lib/Model/InstallmentPayment.php @@ -29,7 +29,7 @@ * @category Class * @description An installment payment represents a payment paid in multiple slices. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPayment implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/InstallmentPaymentSlice.php b/wallee-sdk/lib/Model/InstallmentPaymentSlice.php index 985eab9..279de1e 100644 --- a/wallee-sdk/lib/Model/InstallmentPaymentSlice.php +++ b/wallee-sdk/lib/Model/InstallmentPaymentSlice.php @@ -27,7 +27,7 @@ * @category Class * @description An installment payment slice represents a single transaction of money from the buyer to the merchant. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPaymentSlice extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/InstallmentPaymentSliceState.php b/wallee-sdk/lib/Model/InstallmentPaymentSliceState.php index bec3d9a..f224b98 100644 --- a/wallee-sdk/lib/Model/InstallmentPaymentSliceState.php +++ b/wallee-sdk/lib/Model/InstallmentPaymentSliceState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPaymentSliceState diff --git a/wallee-sdk/lib/Model/InstallmentPaymentState.php b/wallee-sdk/lib/Model/InstallmentPaymentState.php index 1d1c03a..5b40dd5 100644 --- a/wallee-sdk/lib/Model/InstallmentPaymentState.php +++ b/wallee-sdk/lib/Model/InstallmentPaymentState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPaymentState diff --git a/wallee-sdk/lib/Model/InstallmentPlanConfiguration.php b/wallee-sdk/lib/Model/InstallmentPlanConfiguration.php index cb43ef5..d4fd6cf 100644 --- a/wallee-sdk/lib/Model/InstallmentPlanConfiguration.php +++ b/wallee-sdk/lib/Model/InstallmentPlanConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description The installment plan allows to setup a template for an installment. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPlanConfiguration implements ModelInterface, ArrayAccess @@ -64,7 +64,7 @@ class InstallmentPlanConfiguration implements ModelInterface, ArrayAccess 'state' => '\Wallee\Sdk\Model\CreationEntityState', 'tax_class' => '\Wallee\Sdk\Model\TaxClass', 'terms_and_conditions' => '\Wallee\Sdk\Model\ModelResourcePath', - 'title' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'title' => 'map[string,string]', 'version' => 'int' ]; @@ -698,7 +698,7 @@ public function setTermsAndConditions($terms_and_conditions) /** * Gets title * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getTitle() { @@ -708,7 +708,7 @@ public function getTitle() /** * Sets title * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $title The title of the installment plan is used within the payment process. The title is visible to the buyer. + * @param map[string,string] $title The title of the installment plan is used within the payment process. The title is visible to the buyer. * * @return $this */ diff --git a/wallee-sdk/lib/Model/InstallmentPlanSliceConfiguration.php b/wallee-sdk/lib/Model/InstallmentPlanSliceConfiguration.php index f79f085..5290f2c 100644 --- a/wallee-sdk/lib/Model/InstallmentPlanSliceConfiguration.php +++ b/wallee-sdk/lib/Model/InstallmentPlanSliceConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description The installment plan slice defines a single slice of an installment plan. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPlanSliceConfiguration implements ModelInterface, ArrayAccess @@ -50,7 +50,7 @@ class InstallmentPlanSliceConfiguration implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'id' => 'int', - 'line_item_title' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'line_item_title' => 'map[string,string]', 'linked_space_id' => 'int', 'period' => 'string', 'plan' => '\Wallee\Sdk\Model\InstallmentPlanConfiguration', @@ -291,7 +291,7 @@ public function setId($id) /** * Gets line_item_title * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getLineItemTitle() { @@ -301,7 +301,7 @@ public function getLineItemTitle() /** * Sets line_item_title * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $line_item_title The title of this slices line items. The title is visible to the buyer. + * @param map[string,string] $line_item_title The title of this slices line items. The title is visible to the buyer. * * @return $this */ diff --git a/wallee-sdk/lib/Model/InternalTransferBankTransaction.php b/wallee-sdk/lib/Model/InternalTransferBankTransaction.php index 9ec6c27..60789d8 100644 --- a/wallee-sdk/lib/Model/InternalTransferBankTransaction.php +++ b/wallee-sdk/lib/Model/InternalTransferBankTransaction.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InternalTransferBankTransaction implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/InvoiceReconciliationRecord.php b/wallee-sdk/lib/Model/InvoiceReconciliationRecord.php index 611f705..faebacb 100644 --- a/wallee-sdk/lib/Model/InvoiceReconciliationRecord.php +++ b/wallee-sdk/lib/Model/InvoiceReconciliationRecord.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReconciliationRecord extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/InvoiceReconciliationRecordInvoiceLink.php b/wallee-sdk/lib/Model/InvoiceReconciliationRecordInvoiceLink.php index ed9c3de..4ccb456 100644 --- a/wallee-sdk/lib/Model/InvoiceReconciliationRecordInvoiceLink.php +++ b/wallee-sdk/lib/Model/InvoiceReconciliationRecordInvoiceLink.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReconciliationRecordInvoiceLink implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/InvoiceReconciliationRecordRejectionStatus.php b/wallee-sdk/lib/Model/InvoiceReconciliationRecordRejectionStatus.php index c464ea3..6d62af2 100644 --- a/wallee-sdk/lib/Model/InvoiceReconciliationRecordRejectionStatus.php +++ b/wallee-sdk/lib/Model/InvoiceReconciliationRecordRejectionStatus.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReconciliationRecordRejectionStatus diff --git a/wallee-sdk/lib/Model/InvoiceReconciliationRecordState.php b/wallee-sdk/lib/Model/InvoiceReconciliationRecordState.php index c88964d..042ff27 100644 --- a/wallee-sdk/lib/Model/InvoiceReconciliationRecordState.php +++ b/wallee-sdk/lib/Model/InvoiceReconciliationRecordState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReconciliationRecordState diff --git a/wallee-sdk/lib/Model/InvoiceReconciliationRecordType.php b/wallee-sdk/lib/Model/InvoiceReconciliationRecordType.php index fef3bd2..ba60cda 100644 --- a/wallee-sdk/lib/Model/InvoiceReconciliationRecordType.php +++ b/wallee-sdk/lib/Model/InvoiceReconciliationRecordType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReconciliationRecordType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/InvoiceReimbursement.php b/wallee-sdk/lib/Model/InvoiceReimbursement.php index ea13fcb..b214a4d 100644 --- a/wallee-sdk/lib/Model/InvoiceReimbursement.php +++ b/wallee-sdk/lib/Model/InvoiceReimbursement.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReimbursement implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/InvoiceReimbursementState.php b/wallee-sdk/lib/Model/InvoiceReimbursementState.php index f0b3a15..1b31ce9 100644 --- a/wallee-sdk/lib/Model/InvoiceReimbursementState.php +++ b/wallee-sdk/lib/Model/InvoiceReimbursementState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReimbursementState diff --git a/wallee-sdk/lib/Model/InvoiceReimbursementWithRefundReference.php b/wallee-sdk/lib/Model/InvoiceReimbursementWithRefundReference.php index d9311ea..791c5e5 100644 --- a/wallee-sdk/lib/Model/InvoiceReimbursementWithRefundReference.php +++ b/wallee-sdk/lib/Model/InvoiceReimbursementWithRefundReference.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReimbursementWithRefundReference extends InvoiceReimbursement diff --git a/wallee-sdk/lib/Model/Label.php b/wallee-sdk/lib/Model/Label.php index 123c61f..1902566 100644 --- a/wallee-sdk/lib/Model/Label.php +++ b/wallee-sdk/lib/Model/Label.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Label implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/LabelDescriptor.php b/wallee-sdk/lib/Model/LabelDescriptor.php index 7aa5b67..be0d2b2 100644 --- a/wallee-sdk/lib/Model/LabelDescriptor.php +++ b/wallee-sdk/lib/Model/LabelDescriptor.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LabelDescriptor implements ModelInterface, ArrayAccess @@ -262,7 +262,7 @@ public function getCategory() /** * Sets category * - * @param \Wallee\Sdk\Model\LabelDescriptorCategory $category + * @param \Wallee\Sdk\Model\LabelDescriptorCategory $category The label's category. * * @return $this */ @@ -287,7 +287,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -312,7 +312,7 @@ public function getFeatures() /** * Sets features * - * @param int[] $features + * @param int[] $features The features that this label belongs to. * * @return $this */ @@ -337,7 +337,7 @@ public function getGroup() /** * Sets group * - * @param int $group + * @param int $group The group that this label belongs to. * * @return $this */ @@ -387,7 +387,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -412,7 +412,7 @@ public function getType() /** * Sets type * - * @param int $type + * @param int $type The type of the label's value. * * @return $this */ @@ -437,7 +437,7 @@ public function getWeight() /** * Sets weight * - * @param int $weight + * @param int $weight When listing labels, they can be sorted by this number. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LabelDescriptorCategory.php b/wallee-sdk/lib/Model/LabelDescriptorCategory.php index f23e6fc..2958989 100644 --- a/wallee-sdk/lib/Model/LabelDescriptorCategory.php +++ b/wallee-sdk/lib/Model/LabelDescriptorCategory.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LabelDescriptorCategory diff --git a/wallee-sdk/lib/Model/LabelDescriptorGroup.php b/wallee-sdk/lib/Model/LabelDescriptorGroup.php index c360f46..fe1bf6b 100644 --- a/wallee-sdk/lib/Model/LabelDescriptorGroup.php +++ b/wallee-sdk/lib/Model/LabelDescriptorGroup.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LabelDescriptorGroup implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -284,7 +284,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getWeight() /** * Sets weight * - * @param int $weight + * @param int $weight When listing label groups, they can be sorted by this number. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LabelDescriptorType.php b/wallee-sdk/lib/Model/LabelDescriptorType.php index 0e25463..83e6fff 100644 --- a/wallee-sdk/lib/Model/LabelDescriptorType.php +++ b/wallee-sdk/lib/Model/LabelDescriptorType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LabelDescriptorType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LegalOrganizationForm.php b/wallee-sdk/lib/Model/LegalOrganizationForm.php index 74c27cd..29c6bde 100644 --- a/wallee-sdk/lib/Model/LegalOrganizationForm.php +++ b/wallee-sdk/lib/Model/LegalOrganizationForm.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LegalOrganizationForm implements ModelInterface, ArrayAccess @@ -241,7 +241,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter code of the country the legal organization form is used in (ISO 3166-1 alpha-2 format). * * @return $this */ @@ -266,7 +266,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\LocalizedString[] $description + * @param \Wallee\Sdk\Model\LocalizedString[] $description The localized descriptions of the legal organization form. * * @return $this */ @@ -291,7 +291,7 @@ public function getEnglishDescription() /** * Sets english_description * - * @param string $english_description + * @param string $english_description The English name of the legal organization form. * * @return $this */ @@ -341,7 +341,7 @@ public function getShortcut() /** * Sets shortcut * - * @param \Wallee\Sdk\Model\LocalizedString[] $shortcut + * @param \Wallee\Sdk\Model\LocalizedString[] $shortcut The localized shortcuts of the legal organization form. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LineItem.php b/wallee-sdk/lib/Model/LineItem.php index 96557c8..70be273 100644 --- a/wallee-sdk/lib/Model/LineItem.php +++ b/wallee-sdk/lib/Model/LineItem.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LineItem implements ModelInterface, ArrayAccess @@ -369,7 +369,7 @@ public function getAggregatedTaxRate() /** * Sets aggregated_tax_rate * - * @param float $aggregated_tax_rate The aggregated tax rate is the sum of all tax rates of the line item. + * @param float $aggregated_tax_rate The total tax rate applied to the item, calculated from the rates of all tax lines. * * @return $this */ @@ -394,7 +394,7 @@ public function getAmountExcludingTax() /** * Sets amount_excluding_tax * - * @param float $amount_excluding_tax + * @param float $amount_excluding_tax The line item price with discounts applied, excluding taxes. * * @return $this */ @@ -419,7 +419,7 @@ public function getAmountIncludingTax() /** * Sets amount_including_tax * - * @param float $amount_including_tax + * @param float $amount_including_tax The line item price with discounts applied, including taxes. * * @return $this */ @@ -444,7 +444,7 @@ public function getAttributes() /** * Sets attributes * - * @param map[string,\Wallee\Sdk\Model\LineItemAttribute] $attributes + * @param map[string,\Wallee\Sdk\Model\LineItemAttribute] $attributes A map of custom information for the item. * * @return $this */ @@ -469,7 +469,7 @@ public function getDiscountExcludingTax() /** * Sets discount_excluding_tax * - * @param float $discount_excluding_tax + * @param float $discount_excluding_tax The discount allocated to the item, excluding taxes. * * @return $this */ @@ -494,7 +494,7 @@ public function getDiscountIncludingTax() /** * Sets discount_including_tax * - * @param float $discount_including_tax + * @param float $discount_including_tax The discount allocated to the item, including taxes. * * @return $this */ @@ -519,7 +519,7 @@ public function getName() /** * Sets name * - * @param string $name + * @param string $name The name of the product, ideally in the customer's language. * * @return $this */ @@ -551,7 +551,7 @@ public function getQuantity() /** * Sets quantity * - * @param float $quantity + * @param float $quantity The number of items that were purchased. * * @return $this */ @@ -576,7 +576,7 @@ public function getShippingRequired() /** * Sets shipping_required * - * @param bool $shipping_required + * @param bool $shipping_required Whether the item required shipping. * * @return $this */ @@ -601,7 +601,7 @@ public function getSku() /** * Sets sku * - * @param string $sku + * @param string $sku The SKU (stock-keeping unit) of the product. * * @return $this */ @@ -630,7 +630,7 @@ public function getTaxAmount() /** * Sets tax_amount * - * @param float $tax_amount + * @param float $tax_amount The sum of all taxes applied to the item. * * @return $this */ @@ -655,7 +655,7 @@ public function getTaxAmountPerUnit() /** * Sets tax_amount_per_unit * - * @param float $tax_amount_per_unit + * @param float $tax_amount_per_unit The calculated tax amount per unit. * * @return $this */ @@ -680,7 +680,7 @@ public function getTaxes() /** * Sets taxes * - * @param \Wallee\Sdk\Model\Tax[] $taxes + * @param \Wallee\Sdk\Model\Tax[] $taxes A set of tax lines, each of which specifies a tax applied to the item. * * @return $this */ @@ -705,7 +705,7 @@ public function getType() /** * Sets type * - * @param \Wallee\Sdk\Model\LineItemType $type + * @param \Wallee\Sdk\Model\LineItemType $type The type of the line item. * * @return $this */ @@ -730,7 +730,7 @@ public function getUndiscountedAmountExcludingTax() /** * Sets undiscounted_amount_excluding_tax * - * @param float $undiscounted_amount_excluding_tax + * @param float $undiscounted_amount_excluding_tax The line item price with discounts not applied, excluding taxes. * * @return $this */ @@ -755,7 +755,7 @@ public function getUndiscountedAmountIncludingTax() /** * Sets undiscounted_amount_including_tax * - * @param float $undiscounted_amount_including_tax + * @param float $undiscounted_amount_including_tax The line item price with discounts not applied, including taxes. * * @return $this */ @@ -780,7 +780,7 @@ public function getUndiscountedUnitPriceExcludingTax() /** * Sets undiscounted_unit_price_excluding_tax * - * @param float $undiscounted_unit_price_excluding_tax + * @param float $undiscounted_unit_price_excluding_tax The calculated price per unit with discounts not applied, excluding taxes. * * @return $this */ @@ -805,7 +805,7 @@ public function getUndiscountedUnitPriceIncludingTax() /** * Sets undiscounted_unit_price_including_tax * - * @param float $undiscounted_unit_price_including_tax + * @param float $undiscounted_unit_price_including_tax The calculated price per unit with discounts not applied, including taxes. * * @return $this */ @@ -830,7 +830,7 @@ public function getUniqueId() /** * Sets unique_id * - * @param string $unique_id The unique id identifies the line item within the set of line items associated with the transaction. + * @param string $unique_id The unique identifier of the line item within the set of line items. * * @return $this */ @@ -859,7 +859,7 @@ public function getUnitPriceExcludingTax() /** * Sets unit_price_excluding_tax * - * @param float $unit_price_excluding_tax + * @param float $unit_price_excluding_tax The calculated price per unit with discounts applied, excluding taxes. * * @return $this */ @@ -884,7 +884,7 @@ public function getUnitPriceIncludingTax() /** * Sets unit_price_including_tax * - * @param float $unit_price_including_tax + * @param float $unit_price_including_tax The calculated price per unit with discounts applied, including taxes. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LineItemAttribute.php b/wallee-sdk/lib/Model/LineItemAttribute.php index ae05acf..51cbec4 100644 --- a/wallee-sdk/lib/Model/LineItemAttribute.php +++ b/wallee-sdk/lib/Model/LineItemAttribute.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LineItemAttribute implements ModelInterface, ArrayAccess @@ -228,7 +228,7 @@ public function getLabel() /** * Sets label * - * @param string $label + * @param string $label The label describing the line item attribute. * * @return $this */ @@ -257,7 +257,7 @@ public function getValue() /** * Sets value * - * @param string $value + * @param string $value The value of the line item attribute. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LineItemAttributeCreate.php b/wallee-sdk/lib/Model/LineItemAttributeCreate.php index a6af98b..6cf68d9 100644 --- a/wallee-sdk/lib/Model/LineItemAttributeCreate.php +++ b/wallee-sdk/lib/Model/LineItemAttributeCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LineItemAttributeCreate implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getLabel() /** * Sets label * - * @param string $label + * @param string $label The label describing the line item attribute. * * @return $this */ @@ -263,7 +263,7 @@ public function getValue() /** * Sets value * - * @param string $value + * @param string $value The value of the line item attribute. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LineItemCreate.php b/wallee-sdk/lib/Model/LineItemCreate.php index 16e8e1f..df65eb4 100644 --- a/wallee-sdk/lib/Model/LineItemCreate.php +++ b/wallee-sdk/lib/Model/LineItemCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LineItemCreate implements ModelInterface, ArrayAccess @@ -307,7 +307,7 @@ public function getAmountIncludingTax() /** * Sets amount_including_tax * - * @param float $amount_including_tax + * @param float $amount_including_tax The line item price with discounts applied, including taxes. * * @return $this */ @@ -332,7 +332,7 @@ public function getAttributes() /** * Sets attributes * - * @param map[string,\Wallee\Sdk\Model\LineItemAttributeCreate] $attributes + * @param map[string,\Wallee\Sdk\Model\LineItemAttributeCreate] $attributes A map of custom information for the item. * * @return $this */ @@ -357,7 +357,7 @@ public function getDiscountIncludingTax() /** * Sets discount_including_tax * - * @param float $discount_including_tax + * @param float $discount_including_tax The discount allocated to the item, including taxes. * * @return $this */ @@ -382,7 +382,7 @@ public function getName() /** * Sets name * - * @param string $name + * @param string $name The name of the product, ideally in the customer's language. * * @return $this */ @@ -414,7 +414,7 @@ public function getQuantity() /** * Sets quantity * - * @param float $quantity + * @param float $quantity The number of items that were purchased. * * @return $this */ @@ -439,7 +439,7 @@ public function getShippingRequired() /** * Sets shipping_required * - * @param bool $shipping_required + * @param bool $shipping_required Whether the item required shipping. * * @return $this */ @@ -464,7 +464,7 @@ public function getSku() /** * Sets sku * - * @param string $sku + * @param string $sku The SKU (stock-keeping unit) of the product. * * @return $this */ @@ -493,7 +493,7 @@ public function getTaxes() /** * Sets taxes * - * @param \Wallee\Sdk\Model\TaxCreate[] $taxes + * @param \Wallee\Sdk\Model\TaxCreate[] $taxes A set of tax lines, each of which specifies a tax applied to the item. * * @return $this */ @@ -518,7 +518,7 @@ public function getType() /** * Sets type * - * @param \Wallee\Sdk\Model\LineItemType $type + * @param \Wallee\Sdk\Model\LineItemType $type The type of the line item. * * @return $this */ @@ -543,7 +543,7 @@ public function getUniqueId() /** * Sets unique_id * - * @param string $unique_id The unique id identifies the line item within the set of line items associated with the transaction. + * @param string $unique_id The unique identifier of the line item within the set of line items. * * @return $this */ diff --git a/wallee-sdk/lib/Model/LineItemReduction.php b/wallee-sdk/lib/Model/LineItemReduction.php index cdeeaad..92a7c61 100644 --- a/wallee-sdk/lib/Model/LineItemReduction.php +++ b/wallee-sdk/lib/Model/LineItemReduction.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LineItemReduction implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/LineItemReductionCreate.php b/wallee-sdk/lib/Model/LineItemReductionCreate.php index 6a4f2e7..048716d 100644 --- a/wallee-sdk/lib/Model/LineItemReductionCreate.php +++ b/wallee-sdk/lib/Model/LineItemReductionCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LineItemReductionCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/LineItemType.php b/wallee-sdk/lib/Model/LineItemType.php index dc98a2f..0bcd1ac 100644 --- a/wallee-sdk/lib/Model/LineItemType.php +++ b/wallee-sdk/lib/Model/LineItemType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LineItemType diff --git a/wallee-sdk/lib/Model/LocalizedString.php b/wallee-sdk/lib/Model/LocalizedString.php index c64cfc9..0ab1cd1 100644 --- a/wallee-sdk/lib/Model/LocalizedString.php +++ b/wallee-sdk/lib/Model/LocalizedString.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LocalizedString implements ModelInterface, ArrayAccess @@ -49,7 +49,6 @@ class LocalizedString implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - 'display_name' => 'string', 'language' => 'string', 'string' => 'string' ]; @@ -60,7 +59,6 @@ class LocalizedString implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ - 'display_name' => null, 'language' => null, 'string' => null ]; @@ -72,7 +70,6 @@ class LocalizedString implements ModelInterface, ArrayAccess * @var string[] */ protected static $attributeMap = [ - 'display_name' => 'displayName', 'language' => 'language', 'string' => 'string' ]; @@ -83,7 +80,6 @@ class LocalizedString implements ModelInterface, ArrayAccess * @var string[] */ protected static $setters = [ - 'display_name' => 'setDisplayName', 'language' => 'setLanguage', 'string' => 'setString' ]; @@ -94,7 +90,6 @@ class LocalizedString implements ModelInterface, ArrayAccess * @var string[] */ protected static $getters = [ - 'display_name' => 'getDisplayName', 'language' => 'getLanguage', 'string' => 'getString' ]; @@ -117,8 +112,6 @@ class LocalizedString implements ModelInterface, ArrayAccess public function __construct(array $data = null) { - $this->container['display_name'] = isset($data['display_name']) ? $data['display_name'] : null; - $this->container['language'] = isset($data['language']) ? $data['language'] : null; $this->container['string'] = isset($data['string']) ? $data['string'] : null; @@ -214,31 +207,6 @@ public function valid() - /** - * Gets display_name - * - * @return string - */ - public function getDisplayName() - { - return $this->container['display_name']; - } - - /** - * Sets display_name - * - * @param string $display_name - * - * @return $this - */ - public function setDisplayName($display_name) - { - $this->container['display_name'] = $display_name; - - return $this; - } - - /** * Gets language * @@ -252,7 +220,7 @@ public function getLanguage() /** * Sets language * - * @param string $language + * @param string $language The term's language. * * @return $this */ @@ -277,7 +245,7 @@ public function getString() /** * Sets string * - * @param string $string + * @param string $string The localized term. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ManualTask.php b/wallee-sdk/lib/Model/ManualTask.php index aa7abd3..d47aa4d 100644 --- a/wallee-sdk/lib/Model/ManualTask.php +++ b/wallee-sdk/lib/Model/ManualTask.php @@ -27,9 +27,9 @@ * ManualTask model * * @category Class - * @description A manual task requires a manual intervention by a human. + * @description A manual task requires the manual intervention of a human. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ManualTask implements ModelInterface, ArrayAccess @@ -56,7 +56,6 @@ class ManualTask implements ModelInterface, ArrayAccess 'id' => 'int', 'linked_space_id' => 'int', 'planned_purge_date' => '\DateTime', - 'space_id' => 'int', 'state' => '\Wallee\Sdk\Model\ManualTaskState', 'type' => 'int' ]; @@ -74,7 +73,6 @@ class ManualTask implements ModelInterface, ArrayAccess 'id' => 'int64', 'linked_space_id' => 'int64', 'planned_purge_date' => 'date-time', - 'space_id' => 'int64', 'state' => null, 'type' => 'int64' ]; @@ -93,7 +91,6 @@ class ManualTask implements ModelInterface, ArrayAccess 'id' => 'id', 'linked_space_id' => 'linkedSpaceId', 'planned_purge_date' => 'plannedPurgeDate', - 'space_id' => 'spaceId', 'state' => 'state', 'type' => 'type' ]; @@ -111,7 +108,6 @@ class ManualTask implements ModelInterface, ArrayAccess 'id' => 'setId', 'linked_space_id' => 'setLinkedSpaceId', 'planned_purge_date' => 'setPlannedPurgeDate', - 'space_id' => 'setSpaceId', 'state' => 'setState', 'type' => 'setType' ]; @@ -129,7 +125,6 @@ class ManualTask implements ModelInterface, ArrayAccess 'id' => 'getId', 'linked_space_id' => 'getLinkedSpaceId', 'planned_purge_date' => 'getPlannedPurgeDate', - 'space_id' => 'getSpaceId', 'state' => 'getState', 'type' => 'getType' ]; @@ -166,8 +161,6 @@ public function __construct(array $data = null) $this->container['planned_purge_date'] = isset($data['planned_purge_date']) ? $data['planned_purge_date'] : null; - $this->container['space_id'] = isset($data['space_id']) ? $data['space_id'] : null; - $this->container['state'] = isset($data['state']) ? $data['state'] : null; $this->container['type'] = isset($data['type']) ? $data['type'] : null; @@ -276,7 +269,7 @@ public function getActions() /** * Sets actions * - * @param int[] $actions + * @param int[] $actions The actions that can be triggered to handle the manual task. * * @return $this */ @@ -301,7 +294,7 @@ public function getContextEntityId() /** * Sets context_entity_id * - * @param int $context_entity_id The context entity ID links the manual task to the entity which caused its creation. + * @param int $context_entity_id The ID of the entity the manual task is linked to. * * @return $this */ @@ -351,7 +344,7 @@ public function getExpiresOn() /** * Sets expires_on * - * @param \DateTime $expires_on The expiry date indicates until when the manual task has to be executed. + * @param \DateTime $expires_on The date and time until when the manual task has to be handled. * * @return $this */ @@ -438,31 +431,6 @@ public function setPlannedPurgeDate($planned_purge_date) } - /** - * Gets space_id - * - * @return int - */ - public function getSpaceId() - { - return $this->container['space_id']; - } - - /** - * Sets space_id - * - * @param int $space_id - * - * @return $this - */ - public function setSpaceId($space_id) - { - $this->container['space_id'] = $space_id; - - return $this; - } - - /** * Gets state * @@ -501,7 +469,7 @@ public function getType() /** * Sets type * - * @param int $type The type categorizes the manual task. + * @param int $type The manual task's type. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ManualTaskAction.php b/wallee-sdk/lib/Model/ManualTaskAction.php index 6b7c81f..d2673b3 100644 --- a/wallee-sdk/lib/Model/ManualTaskAction.php +++ b/wallee-sdk/lib/Model/ManualTaskAction.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ManualTaskAction implements ModelInterface, ArrayAccess @@ -259,7 +259,7 @@ public function getLabel() /** * Sets label * - * @param map[string,string] $label + * @param map[string,string] $label The action's label. * * @return $this */ @@ -284,7 +284,7 @@ public function getStyle() /** * Sets style * - * @param \Wallee\Sdk\Model\ManualTaskActionStyle $style + * @param \Wallee\Sdk\Model\ManualTaskActionStyle $style The action's style. * * @return $this */ @@ -309,7 +309,7 @@ public function getTaskType() /** * Sets task_type * - * @param int $task_type + * @param int $task_type The type of manual tasks this action belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ManualTaskActionStyle.php b/wallee-sdk/lib/Model/ManualTaskActionStyle.php index 0b41efc..f1d2a68 100644 --- a/wallee-sdk/lib/Model/ManualTaskActionStyle.php +++ b/wallee-sdk/lib/Model/ManualTaskActionStyle.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ManualTaskActionStyle diff --git a/wallee-sdk/lib/Model/ManualTaskState.php b/wallee-sdk/lib/Model/ManualTaskState.php index 2ee9972..e8b02a8 100644 --- a/wallee-sdk/lib/Model/ManualTaskState.php +++ b/wallee-sdk/lib/Model/ManualTaskState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ManualTaskState diff --git a/wallee-sdk/lib/Model/ManualTaskType.php b/wallee-sdk/lib/Model/ManualTaskType.php index 61b336a..04e1ad7 100644 --- a/wallee-sdk/lib/Model/ManualTaskType.php +++ b/wallee-sdk/lib/Model/ManualTaskType.php @@ -29,7 +29,7 @@ * @category Class * @description The manual task type indicates what kind of manual task is required to be executed by the human. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ManualTaskType implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -259,7 +259,7 @@ public function getFeatures() /** * Sets features * - * @param int[] $features + * @param int[] $features The features that this type belongs to. * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/MetricUsage.php b/wallee-sdk/lib/Model/MetricUsage.php index c4bcf83..b3a6e1c 100644 --- a/wallee-sdk/lib/Model/MetricUsage.php +++ b/wallee-sdk/lib/Model/MetricUsage.php @@ -29,7 +29,7 @@ * @category Class * @description The metric usage provides details about the consumption of a particular metric. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class MetricUsage implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ModelResourcePath.php b/wallee-sdk/lib/Model/ModelResourcePath.php index f69ad9d..77dc95d 100644 --- a/wallee-sdk/lib/Model/ModelResourcePath.php +++ b/wallee-sdk/lib/Model/ModelResourcePath.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ModelResourcePath implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/OneClickPaymentMode.php b/wallee-sdk/lib/Model/OneClickPaymentMode.php index 9805f24..8b872fd 100644 --- a/wallee-sdk/lib/Model/OneClickPaymentMode.php +++ b/wallee-sdk/lib/Model/OneClickPaymentMode.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class OneClickPaymentMode diff --git a/wallee-sdk/lib/Model/PaymentAdjustment.php b/wallee-sdk/lib/Model/PaymentAdjustment.php index 2e43bfe..b000332 100644 --- a/wallee-sdk/lib/Model/PaymentAdjustment.php +++ b/wallee-sdk/lib/Model/PaymentAdjustment.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAdjustment implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAdjustmentType.php b/wallee-sdk/lib/Model/PaymentAdjustmentType.php index 89aad2b..e51a124 100644 --- a/wallee-sdk/lib/Model/PaymentAdjustmentType.php +++ b/wallee-sdk/lib/Model/PaymentAdjustmentType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAdjustmentType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentAppChargeAttemptTargetState.php b/wallee-sdk/lib/Model/PaymentAppChargeAttemptTargetState.php index d8efcc2..3a5b4ff 100644 --- a/wallee-sdk/lib/Model/PaymentAppChargeAttemptTargetState.php +++ b/wallee-sdk/lib/Model/PaymentAppChargeAttemptTargetState.php @@ -27,7 +27,7 @@ * @category Class * @description The target state indicates the state that should be set on the charge attempt. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppChargeAttemptTargetState diff --git a/wallee-sdk/lib/Model/PaymentAppChargeAttemptUpdateRequest.php b/wallee-sdk/lib/Model/PaymentAppChargeAttemptUpdateRequest.php index 505a340..6cd4c5a 100644 --- a/wallee-sdk/lib/Model/PaymentAppChargeAttemptUpdateRequest.php +++ b/wallee-sdk/lib/Model/PaymentAppChargeAttemptUpdateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The charge attempt update request allows to change the state of a charge attempt. The charge attempt must be linked with a processor that was created by the payment Web App that invokes the operation. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppChargeAttemptUpdateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppCompletionConfiguration.php b/wallee-sdk/lib/Model/PaymentAppCompletionConfiguration.php index d45d405..8c12ab5 100644 --- a/wallee-sdk/lib/Model/PaymentAppCompletionConfiguration.php +++ b/wallee-sdk/lib/Model/PaymentAppCompletionConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppCompletionConfiguration implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppCompletionConfigurationCreate.php b/wallee-sdk/lib/Model/PaymentAppCompletionConfigurationCreate.php index b200952..406816d 100644 --- a/wallee-sdk/lib/Model/PaymentAppCompletionConfigurationCreate.php +++ b/wallee-sdk/lib/Model/PaymentAppCompletionConfigurationCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppCompletionConfigurationCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppCompletionTargetState.php b/wallee-sdk/lib/Model/PaymentAppCompletionTargetState.php index 223db33..08dc2b9 100644 --- a/wallee-sdk/lib/Model/PaymentAppCompletionTargetState.php +++ b/wallee-sdk/lib/Model/PaymentAppCompletionTargetState.php @@ -27,7 +27,7 @@ * @category Class * @description The target state indicates the state that should be set on the completion. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppCompletionTargetState diff --git a/wallee-sdk/lib/Model/PaymentAppCompletionUpdateRequest.php b/wallee-sdk/lib/Model/PaymentAppCompletionUpdateRequest.php index e4eab15..00decc7 100644 --- a/wallee-sdk/lib/Model/PaymentAppCompletionUpdateRequest.php +++ b/wallee-sdk/lib/Model/PaymentAppCompletionUpdateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The completion update request allows to change the state of a completion. The completion must be linked with a processor that was created by the payment Web App that invokes the operation. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppCompletionUpdateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppConnector.php b/wallee-sdk/lib/Model/PaymentAppConnector.php index 6608b1e..2b5ccf3 100644 --- a/wallee-sdk/lib/Model/PaymentAppConnector.php +++ b/wallee-sdk/lib/Model/PaymentAppConnector.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppConnector implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppConnectorCreationRequest.php b/wallee-sdk/lib/Model/PaymentAppConnectorCreationRequest.php index a1d15e4..a88a123 100644 --- a/wallee-sdk/lib/Model/PaymentAppConnectorCreationRequest.php +++ b/wallee-sdk/lib/Model/PaymentAppConnectorCreationRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppConnectorCreationRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppConnectorState.php b/wallee-sdk/lib/Model/PaymentAppConnectorState.php index 4621e7b..dec96f3 100644 --- a/wallee-sdk/lib/Model/PaymentAppConnectorState.php +++ b/wallee-sdk/lib/Model/PaymentAppConnectorState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppConnectorState diff --git a/wallee-sdk/lib/Model/PaymentAppProcessor.php b/wallee-sdk/lib/Model/PaymentAppProcessor.php index 5bd855b..1399c41 100644 --- a/wallee-sdk/lib/Model/PaymentAppProcessor.php +++ b/wallee-sdk/lib/Model/PaymentAppProcessor.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppProcessor implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppProcessorCreationRequest.php b/wallee-sdk/lib/Model/PaymentAppProcessorCreationRequest.php index 4f0bd70..4cf100d 100644 --- a/wallee-sdk/lib/Model/PaymentAppProcessorCreationRequest.php +++ b/wallee-sdk/lib/Model/PaymentAppProcessorCreationRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppProcessorCreationRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppProcessorState.php b/wallee-sdk/lib/Model/PaymentAppProcessorState.php index c836514..1161181 100644 --- a/wallee-sdk/lib/Model/PaymentAppProcessorState.php +++ b/wallee-sdk/lib/Model/PaymentAppProcessorState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppProcessorState diff --git a/wallee-sdk/lib/Model/PaymentAppRefundConfiguration.php b/wallee-sdk/lib/Model/PaymentAppRefundConfiguration.php index 65abc85..012b5c4 100644 --- a/wallee-sdk/lib/Model/PaymentAppRefundConfiguration.php +++ b/wallee-sdk/lib/Model/PaymentAppRefundConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppRefundConfiguration implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppRefundConfigurationCreate.php b/wallee-sdk/lib/Model/PaymentAppRefundConfigurationCreate.php index 297e248..869d4a1 100644 --- a/wallee-sdk/lib/Model/PaymentAppRefundConfigurationCreate.php +++ b/wallee-sdk/lib/Model/PaymentAppRefundConfigurationCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppRefundConfigurationCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppRefundTargetState.php b/wallee-sdk/lib/Model/PaymentAppRefundTargetState.php index 318d5ac..7894f60 100644 --- a/wallee-sdk/lib/Model/PaymentAppRefundTargetState.php +++ b/wallee-sdk/lib/Model/PaymentAppRefundTargetState.php @@ -27,7 +27,7 @@ * @category Class * @description The target state indicates the state that should be set on the refund. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppRefundTargetState diff --git a/wallee-sdk/lib/Model/PaymentAppRefundUpdateRequest.php b/wallee-sdk/lib/Model/PaymentAppRefundUpdateRequest.php index 83543b1..77a7440 100644 --- a/wallee-sdk/lib/Model/PaymentAppRefundUpdateRequest.php +++ b/wallee-sdk/lib/Model/PaymentAppRefundUpdateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The refund update request allows to change the state of a refund. The refund must be linked with a processor that was created by the payment Web App that invokes the operation. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppRefundUpdateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentAppVoidTargetState.php b/wallee-sdk/lib/Model/PaymentAppVoidTargetState.php index 43f13c7..2c69f72 100644 --- a/wallee-sdk/lib/Model/PaymentAppVoidTargetState.php +++ b/wallee-sdk/lib/Model/PaymentAppVoidTargetState.php @@ -27,7 +27,7 @@ * @category Class * @description The target state indicates the state that should be set on the void. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppVoidTargetState diff --git a/wallee-sdk/lib/Model/PaymentAppVoidUpdateRequest.php b/wallee-sdk/lib/Model/PaymentAppVoidUpdateRequest.php index 050e9aa..1e762b6 100644 --- a/wallee-sdk/lib/Model/PaymentAppVoidUpdateRequest.php +++ b/wallee-sdk/lib/Model/PaymentAppVoidUpdateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The void update request allows to change the state of a void. The void must be linked with a processor that was created by the payment Web App that invokes the operation. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentAppVoidUpdateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentConnector.php b/wallee-sdk/lib/Model/PaymentConnector.php index 7be7a23..44acdd7 100644 --- a/wallee-sdk/lib/Model/PaymentConnector.php +++ b/wallee-sdk/lib/Model/PaymentConnector.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentConnector implements ModelInterface, ArrayAccess @@ -53,13 +53,13 @@ class PaymentConnector implements ModelInterface, ArrayAccess 'deprecated' => 'bool', 'deprecation_reason' => 'map[string,string]', 'description' => 'map[string,string]', - 'feature' => '\Wallee\Sdk\Model\Feature', 'id' => 'int', 'name' => 'map[string,string]', 'payment_method' => 'int', 'payment_method_brand' => '\Wallee\Sdk\Model\PaymentMethodBrand', 'primary_risk_taker' => '\Wallee\Sdk\Model\PaymentPrimaryRiskTaker', 'processor' => 'int', + 'supported_currencies' => 'string[]', 'supported_customers_presences' => '\Wallee\Sdk\Model\CustomersPresence[]', 'supported_features' => 'int[]' ]; @@ -74,13 +74,13 @@ class PaymentConnector implements ModelInterface, ArrayAccess 'deprecated' => null, 'deprecation_reason' => null, 'description' => null, - 'feature' => null, 'id' => 'int64', 'name' => null, 'payment_method' => 'int64', 'payment_method_brand' => null, 'primary_risk_taker' => null, 'processor' => 'int64', + 'supported_currencies' => null, 'supported_customers_presences' => null, 'supported_features' => 'int64' ]; @@ -96,13 +96,13 @@ class PaymentConnector implements ModelInterface, ArrayAccess 'deprecated' => 'deprecated', 'deprecation_reason' => 'deprecationReason', 'description' => 'description', - 'feature' => 'feature', 'id' => 'id', 'name' => 'name', 'payment_method' => 'paymentMethod', 'payment_method_brand' => 'paymentMethodBrand', 'primary_risk_taker' => 'primaryRiskTaker', 'processor' => 'processor', + 'supported_currencies' => 'supportedCurrencies', 'supported_customers_presences' => 'supportedCustomersPresences', 'supported_features' => 'supportedFeatures' ]; @@ -117,13 +117,13 @@ class PaymentConnector implements ModelInterface, ArrayAccess 'deprecated' => 'setDeprecated', 'deprecation_reason' => 'setDeprecationReason', 'description' => 'setDescription', - 'feature' => 'setFeature', 'id' => 'setId', 'name' => 'setName', 'payment_method' => 'setPaymentMethod', 'payment_method_brand' => 'setPaymentMethodBrand', 'primary_risk_taker' => 'setPrimaryRiskTaker', 'processor' => 'setProcessor', + 'supported_currencies' => 'setSupportedCurrencies', 'supported_customers_presences' => 'setSupportedCustomersPresences', 'supported_features' => 'setSupportedFeatures' ]; @@ -138,13 +138,13 @@ class PaymentConnector implements ModelInterface, ArrayAccess 'deprecated' => 'getDeprecated', 'deprecation_reason' => 'getDeprecationReason', 'description' => 'getDescription', - 'feature' => 'getFeature', 'id' => 'getId', 'name' => 'getName', 'payment_method' => 'getPaymentMethod', 'payment_method_brand' => 'getPaymentMethodBrand', 'primary_risk_taker' => 'getPrimaryRiskTaker', 'processor' => 'getProcessor', + 'supported_currencies' => 'getSupportedCurrencies', 'supported_customers_presences' => 'getSupportedCustomersPresences', 'supported_features' => 'getSupportedFeatures' ]; @@ -175,8 +175,6 @@ public function __construct(array $data = null) $this->container['description'] = isset($data['description']) ? $data['description'] : null; - $this->container['feature'] = isset($data['feature']) ? $data['feature'] : null; - $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -189,6 +187,8 @@ public function __construct(array $data = null) $this->container['processor'] = isset($data['processor']) ? $data['processor'] : null; + $this->container['supported_currencies'] = isset($data['supported_currencies']) ? $data['supported_currencies'] : null; + $this->container['supported_customers_presences'] = isset($data['supported_customers_presences']) ? $data['supported_customers_presences'] : null; $this->container['supported_features'] = isset($data['supported_features']) ? $data['supported_features'] : null; @@ -297,7 +297,7 @@ public function getDataCollectionType() /** * Sets data_collection_type * - * @param \Wallee\Sdk\Model\DataCollectionType $data_collection_type + * @param \Wallee\Sdk\Model\DataCollectionType $data_collection_type The data collection type specifies how the payment information is collected. * * @return $this */ @@ -322,7 +322,7 @@ public function getDeprecated() /** * Sets deprecated * - * @param bool $deprecated + * @param bool $deprecated Whether the object was deprecated. * * @return $this */ @@ -347,7 +347,7 @@ public function getDeprecationReason() /** * Sets deprecation_reason * - * @param map[string,string] $deprecation_reason + * @param map[string,string] $deprecation_reason The deprecation reason describes why the object was deprecated. * * @return $this */ @@ -372,7 +372,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -384,31 +384,6 @@ public function setDescription($description) } - /** - * Gets feature - * - * @return \Wallee\Sdk\Model\Feature - */ - public function getFeature() - { - return $this->container['feature']; - } - - /** - * Sets feature - * - * @param \Wallee\Sdk\Model\Feature $feature - * - * @return $this - */ - public function setFeature($feature) - { - $this->container['feature'] = $feature; - - return $this; - } - - /** * Gets id * @@ -447,7 +422,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -472,7 +447,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param int $payment_method + * @param int $payment_method The payment method that the connector supports. * * @return $this */ @@ -497,7 +472,7 @@ public function getPaymentMethodBrand() /** * Sets payment_method_brand * - * @param \Wallee\Sdk\Model\PaymentMethodBrand $payment_method_brand + * @param \Wallee\Sdk\Model\PaymentMethodBrand $payment_method_brand The specific brand that this payment connector supports. * * @return $this */ @@ -522,7 +497,7 @@ public function getPrimaryRiskTaker() /** * Sets primary_risk_taker * - * @param \Wallee\Sdk\Model\PaymentPrimaryRiskTaker $primary_risk_taker + * @param \Wallee\Sdk\Model\PaymentPrimaryRiskTaker $primary_risk_taker The entity that bears the main risk in the event that a contracting party fails to meet its obligations. * * @return $this */ @@ -547,7 +522,7 @@ public function getProcessor() /** * Sets processor * - * @param int $processor + * @param int $processor The processor that the connector belongs to. * * @return $this */ @@ -559,6 +534,31 @@ public function setProcessor($processor) } + /** + * Gets supported_currencies + * + * @return string[] + */ + public function getSupportedCurrencies() + { + return $this->container['supported_currencies']; + } + + /** + * Sets supported_currencies + * + * @param string[] $supported_currencies The currencies that are supported by the connector. + * + * @return $this + */ + public function setSupportedCurrencies($supported_currencies) + { + $this->container['supported_currencies'] = $supported_currencies; + + return $this; + } + + /** * Gets supported_customers_presences * @@ -572,7 +572,7 @@ public function getSupportedCustomersPresences() /** * Sets supported_customers_presences * - * @param \Wallee\Sdk\Model\CustomersPresence[] $supported_customers_presences + * @param \Wallee\Sdk\Model\CustomersPresence[] $supported_customers_presences The types of customer's presence that are supported by the connector. * * @return $this */ @@ -597,7 +597,7 @@ public function getSupportedFeatures() /** * Sets supported_features * - * @param int[] $supported_features + * @param int[] $supported_features The features that are supported by the connector. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentConnectorConfiguration.php b/wallee-sdk/lib/Model/PaymentConnectorConfiguration.php index c2b855a..e5b12d9 100644 --- a/wallee-sdk/lib/Model/PaymentConnectorConfiguration.php +++ b/wallee-sdk/lib/Model/PaymentConnectorConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentConnectorConfiguration implements ModelInterface, ArrayAccess @@ -55,6 +55,7 @@ class PaymentConnectorConfiguration implements ModelInterface, ArrayAccess 'enabled_sales_channels' => '\Wallee\Sdk\Model\SalesChannel[]', 'enabled_space_views' => 'int[]', 'id' => 'int', + 'image_path' => 'string', 'linked_space_id' => 'int', 'name' => 'string', 'payment_method_configuration' => '\Wallee\Sdk\Model\PaymentMethodConfiguration', @@ -77,6 +78,7 @@ class PaymentConnectorConfiguration implements ModelInterface, ArrayAccess 'enabled_sales_channels' => null, 'enabled_space_views' => 'int64', 'id' => 'int64', + 'image_path' => null, 'linked_space_id' => 'int64', 'name' => null, 'payment_method_configuration' => null, @@ -100,6 +102,7 @@ class PaymentConnectorConfiguration implements ModelInterface, ArrayAccess 'enabled_sales_channels' => 'enabledSalesChannels', 'enabled_space_views' => 'enabledSpaceViews', 'id' => 'id', + 'image_path' => 'imagePath', 'linked_space_id' => 'linkedSpaceId', 'name' => 'name', 'payment_method_configuration' => 'paymentMethodConfiguration', @@ -122,6 +125,7 @@ class PaymentConnectorConfiguration implements ModelInterface, ArrayAccess 'enabled_sales_channels' => 'setEnabledSalesChannels', 'enabled_space_views' => 'setEnabledSpaceViews', 'id' => 'setId', + 'image_path' => 'setImagePath', 'linked_space_id' => 'setLinkedSpaceId', 'name' => 'setName', 'payment_method_configuration' => 'setPaymentMethodConfiguration', @@ -144,6 +148,7 @@ class PaymentConnectorConfiguration implements ModelInterface, ArrayAccess 'enabled_sales_channels' => 'getEnabledSalesChannels', 'enabled_space_views' => 'getEnabledSpaceViews', 'id' => 'getId', + 'image_path' => 'getImagePath', 'linked_space_id' => 'getLinkedSpaceId', 'name' => 'getName', 'payment_method_configuration' => 'getPaymentMethodConfiguration', @@ -184,6 +189,8 @@ public function __construct(array $data = null) $this->container['id'] = isset($data['id']) ? $data['id'] : null; + $this->container['image_path'] = isset($data['image_path']) ? $data['image_path'] : null; + $this->container['linked_space_id'] = isset($data['linked_space_id']) ? $data['linked_space_id'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -308,7 +315,7 @@ public function getApplicableForTransactionProcessing() /** * Sets applicable_for_transaction_processing * - * @param bool $applicable_for_transaction_processing This property indicates if the connector is currently used for processing transactions. In case either the payment method configuration or the processor configuration is not active the connector will not be used even though the connector state is active. + * @param bool $applicable_for_transaction_processing Whether this connector configuration is enabled for processing payments, taking into account the state of the processor and payment method configurations. * * @return $this */ @@ -333,7 +340,7 @@ public function getConditions() /** * Sets conditions * - * @param int[] $conditions If a transaction meet all selected conditions the connector configuration will be used to process the transaction otherwise the next connector configuration in line will be chosen according to the priorities. + * @param int[] $conditions Conditions allow you to define criteria that a transaction must fulfill in order for the connector configuration to be considered for processing the payment. * * @return $this */ @@ -358,7 +365,7 @@ public function getConnector() /** * Sets connector * - * @param int $connector + * @param int $connector The connector that the configuration is for. * * @return $this */ @@ -383,7 +390,7 @@ public function getEnabledSalesChannels() /** * Sets enabled_sales_channels * - * @param \Wallee\Sdk\Model\SalesChannel[] $enabled_sales_channels Defines the sales channels the connector configuration is enabled for. In case the set is empty, the connector configuration is enabled for all sales channels. + * @param \Wallee\Sdk\Model\SalesChannel[] $enabled_sales_channels The sales channels for which the connector configuration is enabled. If empty, it is enabled for all sales channels. * * @return $this */ @@ -408,7 +415,7 @@ public function getEnabledSpaceViews() /** * Sets enabled_space_views * - * @param int[] $enabled_space_views The connector configuration is only enabled for the selected space views. In case the set is empty the connector configuration is enabled for all space views. + * @param int[] $enabled_space_views The space views for which the connector configuration is enabled. If empty, it is enabled for all space views. * * @return $this */ @@ -445,6 +452,31 @@ public function setId($id) } + /** + * Gets image_path + * + * @return string + */ + public function getImagePath() + { + return $this->container['image_path']; + } + + /** + * Sets image_path + * + * @param string $image_path The URL to the connector's image. + * + * @return $this + */ + public function setImagePath($image_path) + { + $this->container['image_path'] = $image_path; + + return $this; + } + + /** * Gets linked_space_id * @@ -483,7 +515,7 @@ public function getName() /** * Sets name * - * @param string $name The connector configuration name is used internally to identify the configuration in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the connector configuration. * * @return $this */ @@ -512,7 +544,7 @@ public function getPaymentMethodConfiguration() /** * Sets payment_method_configuration * - * @param \Wallee\Sdk\Model\PaymentMethodConfiguration $payment_method_configuration + * @param \Wallee\Sdk\Model\PaymentMethodConfiguration $payment_method_configuration The payment method configuration that the connector configuration belongs to. * * @return $this */ @@ -562,7 +594,7 @@ public function getPriority() /** * Sets priority * - * @param int $priority The priority will define the order of choice of the connector configurations. The lower the value, the higher the priority is going to be. This value can also be a negative number in case you are adding a new configuration that you want to have a high priority and you dont want to change the priority of all the other configurations. + * @param int $priority The priority that determines the order in which connector configurations are taken into account when processing a payment. Low values are considered first. * * @return $this */ @@ -587,7 +619,7 @@ public function getProcessorConfiguration() /** * Sets processor_configuration * - * @param \Wallee\Sdk\Model\PaymentProcessorConfiguration $processor_configuration + * @param \Wallee\Sdk\Model\PaymentProcessorConfiguration $processor_configuration The processor configuration that the connector configuration belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentConnectorFeature.php b/wallee-sdk/lib/Model/PaymentConnectorFeature.php index 652aa1c..9942e3b 100644 --- a/wallee-sdk/lib/Model/PaymentConnectorFeature.php +++ b/wallee-sdk/lib/Model/PaymentConnectorFeature.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentConnectorFeature implements ModelInterface, ArrayAccess @@ -50,7 +50,6 @@ class PaymentConnectorFeature implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'display_name' => 'string', - 'feature' => '\Wallee\Sdk\Model\Feature', 'id' => 'int' ]; @@ -61,7 +60,6 @@ class PaymentConnectorFeature implements ModelInterface, ArrayAccess */ protected static $swaggerFormats = [ 'display_name' => null, - 'feature' => null, 'id' => 'int64' ]; @@ -73,7 +71,6 @@ class PaymentConnectorFeature implements ModelInterface, ArrayAccess */ protected static $attributeMap = [ 'display_name' => 'displayName', - 'feature' => 'feature', 'id' => 'id' ]; @@ -84,7 +81,6 @@ class PaymentConnectorFeature implements ModelInterface, ArrayAccess */ protected static $setters = [ 'display_name' => 'setDisplayName', - 'feature' => 'setFeature', 'id' => 'setId' ]; @@ -95,7 +91,6 @@ class PaymentConnectorFeature implements ModelInterface, ArrayAccess */ protected static $getters = [ 'display_name' => 'getDisplayName', - 'feature' => 'getFeature', 'id' => 'getId' ]; @@ -119,8 +114,6 @@ public function __construct(array $data = null) $this->container['display_name'] = isset($data['display_name']) ? $data['display_name'] : null; - $this->container['feature'] = isset($data['feature']) ? $data['feature'] : null; - $this->container['id'] = isset($data['id']) ? $data['id'] : null; } @@ -227,7 +220,7 @@ public function getDisplayName() /** * Sets display_name * - * @param string $display_name + * @param string $display_name The name of the feature. * * @return $this */ @@ -239,31 +232,6 @@ public function setDisplayName($display_name) } - /** - * Gets feature - * - * @return \Wallee\Sdk\Model\Feature - */ - public function getFeature() - { - return $this->container['feature']; - } - - /** - * Sets feature - * - * @param \Wallee\Sdk\Model\Feature $feature - * - * @return $this - */ - public function setFeature($feature) - { - $this->container['feature'] = $feature; - - return $this; - } - - /** * Gets id * diff --git a/wallee-sdk/lib/Model/PaymentContract.php b/wallee-sdk/lib/Model/PaymentContract.php index 6f3db75..4c75c99 100644 --- a/wallee-sdk/lib/Model/PaymentContract.php +++ b/wallee-sdk/lib/Model/PaymentContract.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentContract implements ModelInterface, ArrayAccess @@ -57,6 +57,7 @@ class PaymentContract implements ModelInterface, ArrayAccess 'created_on' => '\DateTime', 'external_id' => 'string', 'id' => 'int', + 'last_modified_date' => '\DateTime', 'rejected_on' => '\DateTime', 'rejection_reason' => '\Wallee\Sdk\Model\FailureReason', 'start_terminating_on' => '\DateTime', @@ -80,6 +81,7 @@ class PaymentContract implements ModelInterface, ArrayAccess 'created_on' => 'date-time', 'external_id' => null, 'id' => 'int64', + 'last_modified_date' => 'date-time', 'rejected_on' => 'date-time', 'rejection_reason' => null, 'start_terminating_on' => 'date-time', @@ -104,6 +106,7 @@ class PaymentContract implements ModelInterface, ArrayAccess 'created_on' => 'createdOn', 'external_id' => 'externalId', 'id' => 'id', + 'last_modified_date' => 'lastModifiedDate', 'rejected_on' => 'rejectedOn', 'rejection_reason' => 'rejectionReason', 'start_terminating_on' => 'startTerminatingOn', @@ -127,6 +130,7 @@ class PaymentContract implements ModelInterface, ArrayAccess 'created_on' => 'setCreatedOn', 'external_id' => 'setExternalId', 'id' => 'setId', + 'last_modified_date' => 'setLastModifiedDate', 'rejected_on' => 'setRejectedOn', 'rejection_reason' => 'setRejectionReason', 'start_terminating_on' => 'setStartTerminatingOn', @@ -150,6 +154,7 @@ class PaymentContract implements ModelInterface, ArrayAccess 'created_on' => 'getCreatedOn', 'external_id' => 'getExternalId', 'id' => 'getId', + 'last_modified_date' => 'getLastModifiedDate', 'rejected_on' => 'getRejectedOn', 'rejection_reason' => 'getRejectionReason', 'start_terminating_on' => 'getStartTerminatingOn', @@ -193,6 +198,8 @@ public function __construct(array $data = null) $this->container['id'] = isset($data['id']) ? $data['id'] : null; + $this->container['last_modified_date'] = isset($data['last_modified_date']) ? $data['last_modified_date'] : null; + $this->container['rejected_on'] = isset($data['rejected_on']) ? $data['rejected_on'] : null; $this->container['rejection_reason'] = isset($data['rejection_reason']) ? $data['rejection_reason'] : null; @@ -311,7 +318,7 @@ public function getAccount() /** * Sets account * - * @param \Wallee\Sdk\Model\Account $account + * @param \Wallee\Sdk\Model\Account $account This account that the contract belongs to. * * @return $this */ @@ -336,7 +343,7 @@ public function getActivatedOn() /** * Sets activated_on * - * @param \DateTime $activated_on + * @param \DateTime $activated_on The date and time when the contract was activated. * * @return $this */ @@ -361,7 +368,7 @@ public function getContractIdentifier() /** * Sets contract_identifier * - * @param string $contract_identifier + * @param string $contract_identifier The identifier of the contract. * * @return $this */ @@ -386,7 +393,7 @@ public function getContractType() /** * Sets contract_type * - * @param \Wallee\Sdk\Model\PaymentContractType $contract_type + * @param \Wallee\Sdk\Model\PaymentContractType $contract_type The type of the contract. * * @return $this */ @@ -411,7 +418,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param \Wallee\Sdk\Model\User $created_by + * @param \Wallee\Sdk\Model\User $created_by The ID of the user the contract was created by. * * @return $this */ @@ -498,6 +505,31 @@ public function setId($id) } + /** + * Gets last_modified_date + * + * @return \DateTime + */ + public function getLastModifiedDate() + { + return $this->container['last_modified_date']; + } + + /** + * Sets last_modified_date + * + * @param \DateTime $last_modified_date The date and time when the object was last modified. + * + * @return $this + */ + public function setLastModifiedDate($last_modified_date) + { + $this->container['last_modified_date'] = $last_modified_date; + + return $this; + } + + /** * Gets rejected_on * @@ -511,7 +543,7 @@ public function getRejectedOn() /** * Sets rejected_on * - * @param \DateTime $rejected_on + * @param \DateTime $rejected_on The date and time when the contract was rejected. * * @return $this */ @@ -536,7 +568,7 @@ public function getRejectionReason() /** * Sets rejection_reason * - * @param \Wallee\Sdk\Model\FailureReason $rejection_reason + * @param \Wallee\Sdk\Model\FailureReason $rejection_reason The reason for rejecting the contract. * * @return $this */ @@ -561,7 +593,7 @@ public function getStartTerminatingOn() /** * Sets start_terminating_on * - * @param \DateTime $start_terminating_on + * @param \DateTime $start_terminating_on The date and time when the termination process of the contract was started. * * @return $this */ @@ -611,7 +643,7 @@ public function getTerminatedBy() /** * Sets terminated_by * - * @param \Wallee\Sdk\Model\User $terminated_by + * @param \Wallee\Sdk\Model\User $terminated_by The ID of the user the contract was terminated by. * * @return $this */ @@ -636,7 +668,7 @@ public function getTerminatedOn() /** * Sets terminated_on * - * @param \DateTime $terminated_on + * @param \DateTime $terminated_on The date and time when the contract was terminated. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentContractState.php b/wallee-sdk/lib/Model/PaymentContractState.php index 703a5a3..487e677 100644 --- a/wallee-sdk/lib/Model/PaymentContractState.php +++ b/wallee-sdk/lib/Model/PaymentContractState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentContractState diff --git a/wallee-sdk/lib/Model/PaymentContractType.php b/wallee-sdk/lib/Model/PaymentContractType.php index 4181aef..7971989 100644 --- a/wallee-sdk/lib/Model/PaymentContractType.php +++ b/wallee-sdk/lib/Model/PaymentContractType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentContractType implements ModelInterface, ArrayAccess @@ -50,7 +50,6 @@ class PaymentContractType implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'description' => 'map[string,string]', - 'feature' => '\Wallee\Sdk\Model\Feature', 'id' => 'int', 'name' => 'map[string,string]' ]; @@ -62,7 +61,6 @@ class PaymentContractType implements ModelInterface, ArrayAccess */ protected static $swaggerFormats = [ 'description' => null, - 'feature' => null, 'id' => 'int64', 'name' => null ]; @@ -75,7 +73,6 @@ class PaymentContractType implements ModelInterface, ArrayAccess */ protected static $attributeMap = [ 'description' => 'description', - 'feature' => 'feature', 'id' => 'id', 'name' => 'name' ]; @@ -87,7 +84,6 @@ class PaymentContractType implements ModelInterface, ArrayAccess */ protected static $setters = [ 'description' => 'setDescription', - 'feature' => 'setFeature', 'id' => 'setId', 'name' => 'setName' ]; @@ -99,7 +95,6 @@ class PaymentContractType implements ModelInterface, ArrayAccess */ protected static $getters = [ 'description' => 'getDescription', - 'feature' => 'getFeature', 'id' => 'getId', 'name' => 'getName' ]; @@ -124,8 +119,6 @@ public function __construct(array $data = null) $this->container['description'] = isset($data['description']) ? $data['description'] : null; - $this->container['feature'] = isset($data['feature']) ? $data['feature'] : null; - $this->container['id'] = isset($data['id']) ? $data['id'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -234,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -246,31 +239,6 @@ public function setDescription($description) } - /** - * Gets feature - * - * @return \Wallee\Sdk\Model\Feature - */ - public function getFeature() - { - return $this->container['feature']; - } - - /** - * Sets feature - * - * @param \Wallee\Sdk\Model\Feature $feature - * - * @return $this - */ - public function setFeature($feature) - { - $this->container['feature'] = $feature; - - return $this; - } - - /** * Gets id * @@ -309,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentInformationHash.php b/wallee-sdk/lib/Model/PaymentInformationHash.php index a7d5305..a1addfb 100644 --- a/wallee-sdk/lib/Model/PaymentInformationHash.php +++ b/wallee-sdk/lib/Model/PaymentInformationHash.php @@ -29,7 +29,7 @@ * @category Class * @description A payment information hash is calculated based on the information entered by the user. The same input leads to the same hash. The hash is collision free. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentInformationHash implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentInformationHashType.php b/wallee-sdk/lib/Model/PaymentInformationHashType.php index 69bb221..e240bb0 100644 --- a/wallee-sdk/lib/Model/PaymentInformationHashType.php +++ b/wallee-sdk/lib/Model/PaymentInformationHashType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentInformationHashType implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentInitiationAdviceFile.php b/wallee-sdk/lib/Model/PaymentInitiationAdviceFile.php index d35ee88..b273bc6 100644 --- a/wallee-sdk/lib/Model/PaymentInitiationAdviceFile.php +++ b/wallee-sdk/lib/Model/PaymentInitiationAdviceFile.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentInitiationAdviceFile implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentInitiationAdviceFileState.php b/wallee-sdk/lib/Model/PaymentInitiationAdviceFileState.php index e05083f..b6d53cc 100644 --- a/wallee-sdk/lib/Model/PaymentInitiationAdviceFileState.php +++ b/wallee-sdk/lib/Model/PaymentInitiationAdviceFileState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentInitiationAdviceFileState diff --git a/wallee-sdk/lib/Model/PaymentLink.php b/wallee-sdk/lib/Model/PaymentLink.php index caaf4f0..d6f2215 100644 --- a/wallee-sdk/lib/Model/PaymentLink.php +++ b/wallee-sdk/lib/Model/PaymentLink.php @@ -29,7 +29,7 @@ * @category Class * @description The payment link defines an URL to automatically create transactions. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentLink implements ModelInterface, ArrayAccess @@ -568,7 +568,7 @@ public function getLineItems() /** * Sets line_items * - * @param \Wallee\Sdk\Model\LineItem[] $line_items The line items allows to define the line items for this payment link. When the line items are defined they cannot be overridden through the request parameters. + * @param \Wallee\Sdk\Model\LineItem[] $line_items The line items allows to define the line items for this payment link. When the line items are defined they cannot be overridden through the request parameters. If no amount for the payment link is defined, the additional checkout page to enter the amount is shown to the consumer. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentLinkActive.php b/wallee-sdk/lib/Model/PaymentLinkActive.php index 4733d73..01673fd 100644 --- a/wallee-sdk/lib/Model/PaymentLinkActive.php +++ b/wallee-sdk/lib/Model/PaymentLinkActive.php @@ -27,7 +27,7 @@ * @category Class * @description The payment link defines an URL to automatically create transactions. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentLinkActive extends PaymentLinkUpdate diff --git a/wallee-sdk/lib/Model/PaymentLinkAddressHandlingMode.php b/wallee-sdk/lib/Model/PaymentLinkAddressHandlingMode.php index f632771..53a144c 100644 --- a/wallee-sdk/lib/Model/PaymentLinkAddressHandlingMode.php +++ b/wallee-sdk/lib/Model/PaymentLinkAddressHandlingMode.php @@ -27,7 +27,7 @@ * @category Class * @description The address handling mode controls if the address is required and how it is enforced to be provided. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentLinkAddressHandlingMode diff --git a/wallee-sdk/lib/Model/PaymentLinkCreate.php b/wallee-sdk/lib/Model/PaymentLinkCreate.php index e13dda7..4fd16b9 100644 --- a/wallee-sdk/lib/Model/PaymentLinkCreate.php +++ b/wallee-sdk/lib/Model/PaymentLinkCreate.php @@ -27,7 +27,7 @@ * @category Class * @description The payment link defines an URL to automatically create transactions. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentLinkCreate extends AbstractPaymentLinkUpdate diff --git a/wallee-sdk/lib/Model/PaymentLinkProtectionMode.php b/wallee-sdk/lib/Model/PaymentLinkProtectionMode.php index d5063bb..4b788a6 100644 --- a/wallee-sdk/lib/Model/PaymentLinkProtectionMode.php +++ b/wallee-sdk/lib/Model/PaymentLinkProtectionMode.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentLinkProtectionMode diff --git a/wallee-sdk/lib/Model/PaymentLinkUpdate.php b/wallee-sdk/lib/Model/PaymentLinkUpdate.php index 929b539..8a385ce 100644 --- a/wallee-sdk/lib/Model/PaymentLinkUpdate.php +++ b/wallee-sdk/lib/Model/PaymentLinkUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description The payment link defines an URL to automatically create transactions. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentLinkUpdate implements ModelInterface, ArrayAccess @@ -532,7 +532,7 @@ public function getLineItems() /** * Sets line_items * - * @param \Wallee\Sdk\Model\LineItemCreate[] $line_items The line items allows to define the line items for this payment link. When the line items are defined they cannot be overridden through the request parameters. + * @param \Wallee\Sdk\Model\LineItemCreate[] $line_items The line items allows to define the line items for this payment link. When the line items are defined they cannot be overridden through the request parameters. If no amount for the payment link is defined, the additional checkout page to enter the amount is shown to the consumer. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentMethod.php b/wallee-sdk/lib/Model/PaymentMethod.php index e64a7bf..d592c8e 100644 --- a/wallee-sdk/lib/Model/PaymentMethod.php +++ b/wallee-sdk/lib/Model/PaymentMethod.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentMethod implements ModelInterface, ArrayAccess @@ -255,7 +255,7 @@ public function getDataCollectionTypes() /** * Sets data_collection_types * - * @param \Wallee\Sdk\Model\DataCollectionType[] $data_collection_types + * @param \Wallee\Sdk\Model\DataCollectionType[] $data_collection_types The data collection types that are supported by the payment method. * * @return $this */ @@ -280,7 +280,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -330,7 +330,7 @@ public function getImagePath() /** * Sets image_path * - * @param string $image_path + * @param string $image_path The path to the payment method's image which is displayed to the customer. * * @return $this */ @@ -380,7 +380,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -405,7 +405,7 @@ public function getSupportedCurrencies() /** * Sets supported_currencies * - * @param string[] $supported_currencies + * @param string[] $supported_currencies The currencies that are supported by the payment method. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentMethodBrand.php b/wallee-sdk/lib/Model/PaymentMethodBrand.php index 84d4883..417405d 100644 --- a/wallee-sdk/lib/Model/PaymentMethodBrand.php +++ b/wallee-sdk/lib/Model/PaymentMethodBrand.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentMethodBrand implements ModelInterface, ArrayAccess @@ -248,7 +248,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -323,7 +323,7 @@ public function getImagePath() /** * Sets image_path * - * @param string $image_path + * @param string $image_path The path to the payment brand's image which is displayed to the customer. * * @return $this */ @@ -348,7 +348,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -373,7 +373,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param int $payment_method + * @param int $payment_method The payment method that the brand belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentMethodConfiguration.php b/wallee-sdk/lib/Model/PaymentMethodConfiguration.php index 91125d9..617ff59 100644 --- a/wallee-sdk/lib/Model/PaymentMethodConfiguration.php +++ b/wallee-sdk/lib/Model/PaymentMethodConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description The payment method configuration builds the base to connect with different payment method connectors. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentMethodConfiguration implements ModelInterface, ArrayAccess @@ -50,7 +50,7 @@ class PaymentMethodConfiguration implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'data_collection_type' => '\Wallee\Sdk\Model\DataCollectionType', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'description' => 'map[string,string]', 'id' => 'int', 'image_resource_path' => '\Wallee\Sdk\Model\ModelResourcePath', 'linked_space_id' => 'int', @@ -64,7 +64,7 @@ class PaymentMethodConfiguration implements ModelInterface, ArrayAccess 'sort_order' => 'int', 'space_id' => 'int', 'state' => '\Wallee\Sdk\Model\CreationEntityState', - 'title' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'title' => 'map[string,string]', 'version' => 'int' ]; @@ -329,7 +329,7 @@ public function getDataCollectionType() /** * Sets data_collection_type * - * @param \Wallee\Sdk\Model\DataCollectionType $data_collection_type The data collection type determines who is collecting the payment information. This can be done either by the processor (offsite) or by our application (onsite). + * @param \Wallee\Sdk\Model\DataCollectionType $data_collection_type The data collection type specifies how the payment information is collected. * * @return $this */ @@ -344,7 +344,7 @@ public function setDataCollectionType($data_collection_type) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getDescription() { @@ -354,7 +354,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $description The payment method configuration description can be used to show a text during the payment process. Choose an appropriate description as it will be displayed to your customer. + * @param map[string,string] $description A custom description for the payment method which is displayed to the customer. * * @return $this */ @@ -404,7 +404,7 @@ public function getImageResourcePath() /** * Sets image_resource_path * - * @param \Wallee\Sdk\Model\ModelResourcePath $image_resource_path The image of the payment method configuration overrides the default image of the payment method. + * @param \Wallee\Sdk\Model\ModelResourcePath $image_resource_path The resource path to a custom image for the payment method which is displayed to the customer. * * @return $this */ @@ -454,7 +454,7 @@ public function getName() /** * Sets name * - * @param string $name The payment method configuration name is used internally to identify the payment method configuration. For example the name is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the payment method configuration. * * @return $this */ @@ -483,7 +483,7 @@ public function getOneClickPaymentMode() /** * Sets one_click_payment_mode * - * @param \Wallee\Sdk\Model\OneClickPaymentMode $one_click_payment_mode When the buyer is present on the payment page or within the iFrame the payment details can be stored automatically. The buyer will be able to use the stored payment details for subsequent transactions. When the transaction already contains a token one-click payments are disabled anyway + * @param \Wallee\Sdk\Model\OneClickPaymentMode $one_click_payment_mode The one-click payment mode determines whether the customer can save their payment details for later payments. * * @return $this */ @@ -508,7 +508,7 @@ public function getPaymentMethod() /** * Sets payment_method * - * @param int $payment_method + * @param int $payment_method The payment method that the configuration is for. * * @return $this */ @@ -558,7 +558,7 @@ public function getResolvedDescription() /** * Sets resolved_description * - * @param map[string,string] $resolved_description The resolved description uses the specified description or the default one when it is not overridden. + * @param map[string,string] $resolved_description The description for the payment method that is actually displayed to the customer. This is either the custom description, if defined, or otherwise the payment method's default one. * * @return $this */ @@ -583,7 +583,7 @@ public function getResolvedImageUrl() /** * Sets resolved_image_url * - * @param string $resolved_image_url The resolved URL of the image to use with this payment method. + * @param string $resolved_image_url The image URL for the payment method that is actually displayed to the customer. This is either the custom image, if defined, or otherwise the payment method's default one. * * @return $this */ @@ -608,7 +608,7 @@ public function getResolvedTitle() /** * Sets resolved_title * - * @param map[string,string] $resolved_title The resolved title uses the specified title or the default one when it is not overridden. + * @param map[string,string] $resolved_title The title for the payment method that is actually displayed to the customer. This is either the custom title, if defined, or otherwise the payment method's default one. * * @return $this */ @@ -633,7 +633,7 @@ public function getSortOrder() /** * Sets sort_order * - * @param int $sort_order The sort order of the payment method determines the ordering of the methods shown to the user during the payment process. + * @param int $sort_order When listing payment methods, they can be sorted by this number. * * @return $this */ @@ -658,7 +658,7 @@ public function getSpaceId() /** * Sets space_id * - * @param int $space_id + * @param int $space_id The ID of the space this object belongs to. * * @return $this */ @@ -698,7 +698,7 @@ public function setState($state) /** * Gets title * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getTitle() { @@ -708,7 +708,7 @@ public function getTitle() /** * Sets title * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $title The title of the payment method configuration is used within the payment process. The title is visible to the customer. + * @param map[string,string] $title A custom title for the payment method which is displayed to the customer. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentPrimaryRiskTaker.php b/wallee-sdk/lib/Model/PaymentPrimaryRiskTaker.php index 25fd5a8..43eba92 100644 --- a/wallee-sdk/lib/Model/PaymentPrimaryRiskTaker.php +++ b/wallee-sdk/lib/Model/PaymentPrimaryRiskTaker.php @@ -27,7 +27,7 @@ * @category Class * @description The primary risk taker will have the main loss when one party of the contract does not fulfill the contractual duties. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentPrimaryRiskTaker diff --git a/wallee-sdk/lib/Model/PaymentProcessor.php b/wallee-sdk/lib/Model/PaymentProcessor.php index 1f52771..f9e1043 100644 --- a/wallee-sdk/lib/Model/PaymentProcessor.php +++ b/wallee-sdk/lib/Model/PaymentProcessor.php @@ -27,9 +27,9 @@ * PaymentProcessor model * * @category Class - * @description + * @description Payment processors handle the connection to third part companies (payment service providers) that technically manage payment transactions and therefore process payments. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentProcessor implements ModelInterface, ArrayAccess @@ -51,7 +51,6 @@ class PaymentProcessor implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'company_name' => 'map[string,string]', 'description' => 'map[string,string]', - 'feature' => 'int', 'headquarters_location' => 'map[string,string]', 'id' => 'int', 'logo_path' => 'string', @@ -67,7 +66,6 @@ class PaymentProcessor implements ModelInterface, ArrayAccess protected static $swaggerFormats = [ 'company_name' => null, 'description' => null, - 'feature' => 'int64', 'headquarters_location' => null, 'id' => 'int64', 'logo_path' => null, @@ -84,7 +82,6 @@ class PaymentProcessor implements ModelInterface, ArrayAccess protected static $attributeMap = [ 'company_name' => 'companyName', 'description' => 'description', - 'feature' => 'feature', 'headquarters_location' => 'headquartersLocation', 'id' => 'id', 'logo_path' => 'logoPath', @@ -100,7 +97,6 @@ class PaymentProcessor implements ModelInterface, ArrayAccess protected static $setters = [ 'company_name' => 'setCompanyName', 'description' => 'setDescription', - 'feature' => 'setFeature', 'headquarters_location' => 'setHeadquartersLocation', 'id' => 'setId', 'logo_path' => 'setLogoPath', @@ -116,7 +112,6 @@ class PaymentProcessor implements ModelInterface, ArrayAccess protected static $getters = [ 'company_name' => 'getCompanyName', 'description' => 'getDescription', - 'feature' => 'getFeature', 'headquarters_location' => 'getHeadquartersLocation', 'id' => 'getId', 'logo_path' => 'getLogoPath', @@ -146,8 +141,6 @@ public function __construct(array $data = null) $this->container['description'] = isset($data['description']) ? $data['description'] : null; - $this->container['feature'] = isset($data['feature']) ? $data['feature'] : null; - $this->container['headquarters_location'] = isset($data['headquarters_location']) ? $data['headquarters_location'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; @@ -262,7 +255,7 @@ public function getCompanyName() /** * Sets company_name * - * @param map[string,string] $company_name + * @param map[string,string] $company_name The name of the company to which the processor belongs. * * @return $this */ @@ -287,7 +280,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -299,31 +292,6 @@ public function setDescription($description) } - /** - * Gets feature - * - * @return int - */ - public function getFeature() - { - return $this->container['feature']; - } - - /** - * Sets feature - * - * @param int $feature - * - * @return $this - */ - public function setFeature($feature) - { - $this->container['feature'] = $feature; - - return $this; - } - - /** * Gets headquarters_location * @@ -337,7 +305,7 @@ public function getHeadquartersLocation() /** * Sets headquarters_location * - * @param map[string,string] $headquarters_location + * @param map[string,string] $headquarters_location Where the processor's headquarters are located. * * @return $this */ @@ -387,7 +355,7 @@ public function getLogoPath() /** * Sets logo_path * - * @param string $logo_path + * @param string $logo_path The path to the logo image of the processor. * * @return $this */ @@ -412,7 +380,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -437,7 +405,7 @@ public function getProductName() /** * Sets product_name * - * @param map[string,string] $product_name + * @param map[string,string] $product_name The name of the processor's product. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentProcessorConfiguration.php b/wallee-sdk/lib/Model/PaymentProcessorConfiguration.php index c0050fa..17d80d6 100644 --- a/wallee-sdk/lib/Model/PaymentProcessorConfiguration.php +++ b/wallee-sdk/lib/Model/PaymentProcessorConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentProcessorConfiguration implements ModelInterface, ArrayAccess @@ -273,7 +273,7 @@ public function getApplicationManaged() /** * Sets application_managed * - * @param bool $application_managed The configuration is managed by the application and cannot be changed via the user interface. + * @param bool $application_managed Whether the processor configuration is managed by the application and therefore cannot be changed. * * @return $this */ @@ -298,7 +298,7 @@ public function getContractId() /** * Sets contract_id * - * @param int $contract_id The contract links the processor configuration with the contract that is used to process payments. + * @param int $contract_id The ID of the payment contract the processor configuration is linked to. * * @return $this */ @@ -373,7 +373,7 @@ public function getName() /** * Sets name * - * @param string $name The processor configuration name is used internally to identify a specific processor configuration. For example the name is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the payment method configuration. * * @return $this */ @@ -427,7 +427,7 @@ public function getProcessor() /** * Sets processor * - * @param int $processor A processor handles the connection to a third part company (a Payment Service Provider) that technically manages the transaction and therefore processes the payment. For the same processor multiple processor configuration can be setup. + * @param int $processor The payment processor that the configuration is for. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminal.php b/wallee-sdk/lib/Model/PaymentTerminal.php index 13034cb..6849cb5 100644 --- a/wallee-sdk/lib/Model/PaymentTerminal.php +++ b/wallee-sdk/lib/Model/PaymentTerminal.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminal implements ModelInterface, ArrayAccess @@ -51,6 +51,8 @@ class PaymentTerminal implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'configuration_version' => '\Wallee\Sdk\Model\PaymentTerminalConfigurationVersion', 'default_currency' => 'string', + 'device_name' => 'string', + 'device_serial_number' => 'string', 'external_id' => 'string', 'id' => 'int', 'identifier' => 'string', @@ -71,6 +73,8 @@ class PaymentTerminal implements ModelInterface, ArrayAccess protected static $swaggerFormats = [ 'configuration_version' => null, 'default_currency' => null, + 'device_name' => null, + 'device_serial_number' => null, 'external_id' => null, 'id' => 'int64', 'identifier' => null, @@ -92,6 +96,8 @@ class PaymentTerminal implements ModelInterface, ArrayAccess protected static $attributeMap = [ 'configuration_version' => 'configurationVersion', 'default_currency' => 'defaultCurrency', + 'device_name' => 'deviceName', + 'device_serial_number' => 'deviceSerialNumber', 'external_id' => 'externalId', 'id' => 'id', 'identifier' => 'identifier', @@ -112,6 +118,8 @@ class PaymentTerminal implements ModelInterface, ArrayAccess protected static $setters = [ 'configuration_version' => 'setConfigurationVersion', 'default_currency' => 'setDefaultCurrency', + 'device_name' => 'setDeviceName', + 'device_serial_number' => 'setDeviceSerialNumber', 'external_id' => 'setExternalId', 'id' => 'setId', 'identifier' => 'setIdentifier', @@ -132,6 +140,8 @@ class PaymentTerminal implements ModelInterface, ArrayAccess protected static $getters = [ 'configuration_version' => 'getConfigurationVersion', 'default_currency' => 'getDefaultCurrency', + 'device_name' => 'getDeviceName', + 'device_serial_number' => 'getDeviceSerialNumber', 'external_id' => 'getExternalId', 'id' => 'getId', 'identifier' => 'getIdentifier', @@ -166,6 +176,10 @@ public function __construct(array $data = null) $this->container['default_currency'] = isset($data['default_currency']) ? $data['default_currency'] : null; + $this->container['device_name'] = isset($data['device_name']) ? $data['device_name'] : null; + + $this->container['device_serial_number'] = isset($data['device_serial_number']) ? $data['device_serial_number'] : null; + $this->container['external_id'] = isset($data['external_id']) ? $data['external_id'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; @@ -294,7 +308,7 @@ public function getConfigurationVersion() /** * Sets configuration_version * - * @param \Wallee\Sdk\Model\PaymentTerminalConfigurationVersion $configuration_version + * @param \Wallee\Sdk\Model\PaymentTerminalConfigurationVersion $configuration_version The configuration that is assigned to the terminal and determines how it works. * * @return $this */ @@ -319,7 +333,7 @@ public function getDefaultCurrency() /** * Sets default_currency * - * @param string $default_currency + * @param string $default_currency The default currency of the terminal. * * @return $this */ @@ -331,6 +345,56 @@ public function setDefaultCurrency($default_currency) } + /** + * Gets device_name + * + * @return string + */ + public function getDeviceName() + { + return $this->container['device_name']; + } + + /** + * Sets device_name + * + * @param string $device_name The name of the device that is currently linked to the payment terminal. + * + * @return $this + */ + public function setDeviceName($device_name) + { + $this->container['device_name'] = $device_name; + + return $this; + } + + + /** + * Gets device_serial_number + * + * @return string + */ + public function getDeviceSerialNumber() + { + return $this->container['device_serial_number']; + } + + /** + * Sets device_serial_number + * + * @param string $device_serial_number The serial number of the device that is currently linked to the payment terminal. + * + * @return $this + */ + public function setDeviceSerialNumber($device_serial_number) + { + $this->container['device_serial_number'] = $device_serial_number; + + return $this; + } + + /** * Gets external_id * @@ -394,7 +458,7 @@ public function getIdentifier() /** * Sets identifier * - * @param string $identifier The identifier uniquely identifies the terminal. Normally it is visible on the device or in the display of the device. + * @param string $identifier The unique identifier of the terminal, that is displayed on the device. * * @return $this */ @@ -444,7 +508,7 @@ public function getLocationVersion() /** * Sets location_version * - * @param \Wallee\Sdk\Model\PaymentTerminalLocationVersion $location_version + * @param \Wallee\Sdk\Model\PaymentTerminalLocationVersion $location_version The physical location where the terminal is used. * * @return $this */ @@ -469,7 +533,7 @@ public function getName() /** * Sets name * - * @param string $name The terminal name is used internally to identify the terminal in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the payment terminal. * * @return $this */ @@ -548,7 +612,7 @@ public function getType() /** * Sets type * - * @param \Wallee\Sdk\Model\PaymentTerminalType $type + * @param \Wallee\Sdk\Model\PaymentTerminalType $type The type of the payment terminal. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminalAddress.php b/wallee-sdk/lib/Model/PaymentTerminalAddress.php index b584d94..4a9284e 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalAddress.php +++ b/wallee-sdk/lib/Model/PaymentTerminalAddress.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalAddress implements ModelInterface, ArrayAccess @@ -324,7 +324,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -349,7 +349,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter country code (ISO 3166 format). * * @return $this */ @@ -374,7 +374,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -403,7 +403,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The email address. * * @return $this */ @@ -432,7 +432,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -457,7 +457,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -482,7 +482,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -511,7 +511,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -536,7 +536,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -561,7 +561,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -586,7 +586,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -611,7 +611,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -640,7 +640,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -669,7 +669,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminalConfiguration.php b/wallee-sdk/lib/Model/PaymentTerminalConfiguration.php index f283b3a..13db6ba 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalConfiguration.php +++ b/wallee-sdk/lib/Model/PaymentTerminalConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalConfiguration implements ModelInterface, ArrayAccess @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param string $name The terminal configuration name is used internally to identify the terminal in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the payment terminal configuration. * * @return $this */ @@ -388,7 +388,7 @@ public function getType() /** * Sets type * - * @param \Wallee\Sdk\Model\PaymentTerminalType $type + * @param \Wallee\Sdk\Model\PaymentTerminalType $type The type of payment terminals that this configuration can be assigned to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminalConfigurationState.php b/wallee-sdk/lib/Model/PaymentTerminalConfigurationState.php index 6d30373..d1559c7 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalConfigurationState.php +++ b/wallee-sdk/lib/Model/PaymentTerminalConfigurationState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalConfigurationState diff --git a/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersion.php b/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersion.php index e4ad7fb..7e0e8a4 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersion.php +++ b/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersion.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalConfigurationVersion implements ModelInterface, ArrayAccess @@ -304,7 +304,7 @@ public function getConfiguration() /** * Sets configuration * - * @param \Wallee\Sdk\Model\PaymentTerminalConfiguration $configuration + * @param \Wallee\Sdk\Model\PaymentTerminalConfiguration $configuration The payment terminal configuration that the version belongs to. * * @return $this */ @@ -329,7 +329,7 @@ public function getConnectorConfigurations() /** * Sets connector_configurations * - * @param int[] $connector_configurations + * @param int[] $connector_configurations The payment connector configurations that are available on the payment terminal. * * @return $this */ @@ -354,7 +354,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by + * @param int $created_by The ID of the user the payment terminal configuration version was created by. * * @return $this */ @@ -404,7 +404,7 @@ public function getDefaultCurrency() /** * Sets default_currency * - * @param string $default_currency The currency is derived by default from the terminal location. By setting a specific currency the derived currency is overridden. + * @param string $default_currency The default currency that is used if none is set on the payment terminal itself. If it is empty, the currency is derived from the location of the terminal. * * @return $this */ @@ -479,7 +479,7 @@ public function getMaintenanceWindowDuration() /** * Sets maintenance_window_duration * - * @param string $maintenance_window_duration + * @param string $maintenance_window_duration The permitted duration of the terminals maintenance window. * * @return $this */ @@ -504,7 +504,7 @@ public function getMaintenanceWindowStart() /** * Sets maintenance_window_start * - * @param string $maintenance_window_start + * @param string $maintenance_window_start The start time of the terminal's maintenance window. * * @return $this */ @@ -579,7 +579,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone + * @param string $time_zone The time zone of the payment terminal used to determine the maintenance window. * * @return $this */ @@ -629,7 +629,7 @@ public function getVersionAppliedImmediately() /** * Sets version_applied_immediately * - * @param bool $version_applied_immediately + * @param bool $version_applied_immediately Whether payment terminals are immediately updated to this configuration version. If not, it will be applied during the maintenance window. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersionState.php b/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersionState.php index 8b0fe51..9e8d04b 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersionState.php +++ b/wallee-sdk/lib/Model/PaymentTerminalConfigurationVersionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalConfigurationVersionState diff --git a/wallee-sdk/lib/Model/PaymentTerminalDccTransactionSum.php b/wallee-sdk/lib/Model/PaymentTerminalDccTransactionSum.php index 2fb7826..6ba4954 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalDccTransactionSum.php +++ b/wallee-sdk/lib/Model/PaymentTerminalDccTransactionSum.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalDccTransactionSum implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentTerminalLocation.php b/wallee-sdk/lib/Model/PaymentTerminalLocation.php index c4e0af7..8902352 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalLocation.php +++ b/wallee-sdk/lib/Model/PaymentTerminalLocation.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalLocation implements ModelInterface, ArrayAccess @@ -334,7 +334,7 @@ public function getName() /** * Sets name * - * @param string $name The terminal location name is used internally to identify the terminal in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the payment terminal location. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminalLocationState.php b/wallee-sdk/lib/Model/PaymentTerminalLocationState.php index 232c570..4a2a2ce 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalLocationState.php +++ b/wallee-sdk/lib/Model/PaymentTerminalLocationState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalLocationState diff --git a/wallee-sdk/lib/Model/PaymentTerminalLocationVersion.php b/wallee-sdk/lib/Model/PaymentTerminalLocationVersion.php index 1fa1843..30ae790 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalLocationVersion.php +++ b/wallee-sdk/lib/Model/PaymentTerminalLocationVersion.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalLocationVersion implements ModelInterface, ArrayAccess @@ -283,7 +283,7 @@ public function getAddress() /** * Sets address * - * @param \Wallee\Sdk\Model\PaymentTerminalAddress $address + * @param \Wallee\Sdk\Model\PaymentTerminalAddress $address The postal address of the location where the payment terminals are used. * * @return $this */ @@ -308,7 +308,7 @@ public function getContactAddress() /** * Sets contact_address * - * @param \Wallee\Sdk\Model\PaymentTerminalAddress $contact_address + * @param \Wallee\Sdk\Model\PaymentTerminalAddress $contact_address The contact details if the person responsible for the payment terminals at this location. * * @return $this */ @@ -333,7 +333,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by + * @param int $created_by The ID of the user the payment terminal location version was created by. * * @return $this */ @@ -433,7 +433,7 @@ public function getLocation() /** * Sets location * - * @param \Wallee\Sdk\Model\PaymentTerminalLocation $location + * @param \Wallee\Sdk\Model\PaymentTerminalLocation $location The payment terminal location that the version belongs to. * * @return $this */ @@ -533,7 +533,7 @@ public function getVersionAppliedImmediately() /** * Sets version_applied_immediately * - * @param bool $version_applied_immediately + * @param bool $version_applied_immediately Whether payment terminals are immediately updated to this configuration version. If not, it will be applied during the maintenance window. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminalLocationVersionState.php b/wallee-sdk/lib/Model/PaymentTerminalLocationVersionState.php index e25d3b8..8254977 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalLocationVersionState.php +++ b/wallee-sdk/lib/Model/PaymentTerminalLocationVersionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalLocationVersionState diff --git a/wallee-sdk/lib/Model/PaymentTerminalReceiptType.php b/wallee-sdk/lib/Model/PaymentTerminalReceiptType.php index 065f757..a9b7d57 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalReceiptType.php +++ b/wallee-sdk/lib/Model/PaymentTerminalReceiptType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalReceiptType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PaymentTerminalState.php b/wallee-sdk/lib/Model/PaymentTerminalState.php index 5fcebe9..ad7500e 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalState.php +++ b/wallee-sdk/lib/Model/PaymentTerminalState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalState diff --git a/wallee-sdk/lib/Model/PaymentTerminalTransactionSum.php b/wallee-sdk/lib/Model/PaymentTerminalTransactionSum.php index 6506489..3a3af28 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalTransactionSum.php +++ b/wallee-sdk/lib/Model/PaymentTerminalTransactionSum.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalTransactionSum implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentTerminalTransactionSummary.php b/wallee-sdk/lib/Model/PaymentTerminalTransactionSummary.php index 6a650e5..34d3d52 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalTransactionSummary.php +++ b/wallee-sdk/lib/Model/PaymentTerminalTransactionSummary.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalTransactionSummary implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentTerminalTransactionSummaryFetchRequest.php b/wallee-sdk/lib/Model/PaymentTerminalTransactionSummaryFetchRequest.php index e852537..f664f6a 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalTransactionSummaryFetchRequest.php +++ b/wallee-sdk/lib/Model/PaymentTerminalTransactionSummaryFetchRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The receipt fetch request allows to retrieve the receipt documents for a terminal transaction. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalTransactionSummaryFetchRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PaymentTerminalType.php b/wallee-sdk/lib/Model/PaymentTerminalType.php index 31653eb..77155f8 100644 --- a/wallee-sdk/lib/Model/PaymentTerminalType.php +++ b/wallee-sdk/lib/Model/PaymentTerminalType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalType implements ModelInterface, ArrayAccess @@ -227,7 +227,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -277,7 +277,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Permission.php b/wallee-sdk/lib/Model/Permission.php index 99a0c25..56da683 100644 --- a/wallee-sdk/lib/Model/Permission.php +++ b/wallee-sdk/lib/Model/Permission.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Permission implements ModelInterface, ArrayAccess @@ -283,7 +283,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -308,7 +308,7 @@ public function getFeature() /** * Sets feature * - * @param int $feature + * @param int $feature The feature that this permission belongs to. * * @return $this */ @@ -333,7 +333,7 @@ public function getGroup() /** * Sets group * - * @param bool $group + * @param bool $group Whether this is a permission group. * * @return $this */ @@ -383,7 +383,7 @@ public function getLeaf() /** * Sets leaf * - * @param bool $leaf + * @param bool $leaf Whether this is a leaf in the tree of permissions, and not a group. * * @return $this */ @@ -408,7 +408,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -433,7 +433,7 @@ public function getParent() /** * Sets parent * - * @param int $parent + * @param int $parent The group that this permission belongs to. * * @return $this */ @@ -458,7 +458,7 @@ public function getPathToRoot() /** * Sets path_to_root * - * @param int[] $path_to_root + * @param int[] $path_to_root All parents of this permission up to the root of the permission tree. * * @return $this */ @@ -483,7 +483,7 @@ public function getTitle() /** * Sets title * - * @param map[string,string] $title + * @param map[string,string] $title The localized name of the object. * * @return $this */ @@ -508,7 +508,7 @@ public function getTwoFactorRequired() /** * Sets two_factor_required * - * @param bool $two_factor_required + * @param bool $two_factor_required Whether users with this permission are required to enable two-factor authentication. * * @return $this */ diff --git a/wallee-sdk/lib/Model/PersistableCurrencyAmount.php b/wallee-sdk/lib/Model/PersistableCurrencyAmount.php index 7989cd9..34a65a5 100644 --- a/wallee-sdk/lib/Model/PersistableCurrencyAmount.php +++ b/wallee-sdk/lib/Model/PersistableCurrencyAmount.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PersistableCurrencyAmount implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/PersistableCurrencyAmountUpdate.php b/wallee-sdk/lib/Model/PersistableCurrencyAmountUpdate.php index 63cb478..3dc712a 100644 --- a/wallee-sdk/lib/Model/PersistableCurrencyAmountUpdate.php +++ b/wallee-sdk/lib/Model/PersistableCurrencyAmountUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PersistableCurrencyAmountUpdate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ProductFeeType.php b/wallee-sdk/lib/Model/ProductFeeType.php index d512110..8612c43 100644 --- a/wallee-sdk/lib/Model/ProductFeeType.php +++ b/wallee-sdk/lib/Model/ProductFeeType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductFeeType diff --git a/wallee-sdk/lib/Model/ProductMeteredFee.php b/wallee-sdk/lib/Model/ProductMeteredFee.php index 5e904dc..00b80dd 100644 --- a/wallee-sdk/lib/Model/ProductMeteredFee.php +++ b/wallee-sdk/lib/Model/ProductMeteredFee.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductMeteredFee implements ModelInterface, ArrayAccess @@ -50,11 +50,11 @@ class ProductMeteredFee implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'component' => '\Wallee\Sdk\Model\SubscriptionProductComponent', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'description' => 'map[string,string]', 'id' => 'int', 'linked_space_id' => 'int', 'metric' => '\Wallee\Sdk\Model\SubscriptionMetric', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'tier_pricing' => '\Wallee\Sdk\Model\ProductMeteredTierPricing', 'type' => '\Wallee\Sdk\Model\ProductFeeType', 'version' => 'int' @@ -284,7 +284,7 @@ public function setComponent($component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getDescription() { @@ -294,7 +294,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. + * @param map[string,string] $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. * * @return $this */ @@ -384,7 +384,7 @@ public function setMetric($metric) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -394,7 +394,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name The name of the fee should describe for the subscriber in few words for what the fee is for. + * @param map[string,string] $name The name of the fee should describe for the subscriber in few words for what the fee is for. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ProductMeteredFeeUpdate.php b/wallee-sdk/lib/Model/ProductMeteredFeeUpdate.php index d72303f..bd87c88 100644 --- a/wallee-sdk/lib/Model/ProductMeteredFeeUpdate.php +++ b/wallee-sdk/lib/Model/ProductMeteredFeeUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductMeteredFeeUpdate implements ModelInterface, ArrayAccess @@ -52,9 +52,9 @@ class ProductMeteredFeeUpdate implements ModelInterface, ArrayAccess 'id' => 'int', 'version' => 'int', 'component' => 'int', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'description' => 'map[string,string]', 'metric' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'name' => 'map[string,string]', 'tier_pricing' => '\Wallee\Sdk\Model\ProductMeteredTierPricing' ]; @@ -326,7 +326,7 @@ public function setComponent($component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getDescription() { @@ -336,7 +336,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. + * @param map[string,string] $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. * * @return $this */ @@ -376,7 +376,7 @@ public function setMetric($metric) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -386,7 +386,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name The name of the fee should describe for the subscriber in few words for what the fee is for. + * @param map[string,string] $name The name of the fee should describe for the subscriber in few words for what the fee is for. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ProductMeteredTierFee.php b/wallee-sdk/lib/Model/ProductMeteredTierFee.php index f43c08d..99cfb13 100644 --- a/wallee-sdk/lib/Model/ProductMeteredTierFee.php +++ b/wallee-sdk/lib/Model/ProductMeteredTierFee.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductMeteredTierFee implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ProductMeteredTierFeeUpdate.php b/wallee-sdk/lib/Model/ProductMeteredTierFeeUpdate.php index f758128..e4fe172 100644 --- a/wallee-sdk/lib/Model/ProductMeteredTierFeeUpdate.php +++ b/wallee-sdk/lib/Model/ProductMeteredTierFeeUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductMeteredTierFeeUpdate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ProductMeteredTierPricing.php b/wallee-sdk/lib/Model/ProductMeteredTierPricing.php index 08a8a61..db41fc3 100644 --- a/wallee-sdk/lib/Model/ProductMeteredTierPricing.php +++ b/wallee-sdk/lib/Model/ProductMeteredTierPricing.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductMeteredTierPricing diff --git a/wallee-sdk/lib/Model/ProductPeriodFee.php b/wallee-sdk/lib/Model/ProductPeriodFee.php index d7a8c19..a7fc50e 100644 --- a/wallee-sdk/lib/Model/ProductPeriodFee.php +++ b/wallee-sdk/lib/Model/ProductPeriodFee.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductPeriodFee implements ModelInterface, ArrayAccess @@ -50,11 +50,11 @@ class ProductPeriodFee implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'component' => '\Wallee\Sdk\Model\SubscriptionProductComponent', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'description' => 'map[string,string]', 'id' => 'int', - 'ledger_entry_title' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'ledger_entry_title' => 'map[string,string]', 'linked_space_id' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'number_of_free_trial_periods' => 'int', 'period_fee' => '\Wallee\Sdk\Model\PersistableCurrencyAmount[]', 'type' => '\Wallee\Sdk\Model\ProductFeeType', @@ -291,7 +291,7 @@ public function setComponent($component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getDescription() { @@ -301,7 +301,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. + * @param map[string,string] $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. * * @return $this */ @@ -341,7 +341,7 @@ public function setId($id) /** * Gets ledger_entry_title * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getLedgerEntryTitle() { @@ -351,7 +351,7 @@ public function getLedgerEntryTitle() /** * Sets ledger_entry_title * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $ledger_entry_title The ledger entry title will be used for the title in the ledger entry and in the invoice. + * @param map[string,string] $ledger_entry_title The ledger entry title will be used for the title in the ledger entry and in the invoice. * * @return $this */ @@ -391,7 +391,7 @@ public function setLinkedSpaceId($linked_space_id) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -401,7 +401,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name The name of the fee should describe for the subscriber in few words for what the fee is for. + * @param map[string,string] $name The name of the fee should describe for the subscriber in few words for what the fee is for. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ProductPeriodFeeUpdate.php b/wallee-sdk/lib/Model/ProductPeriodFeeUpdate.php index ccdf439..e527183 100644 --- a/wallee-sdk/lib/Model/ProductPeriodFeeUpdate.php +++ b/wallee-sdk/lib/Model/ProductPeriodFeeUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductPeriodFeeUpdate implements ModelInterface, ArrayAccess @@ -52,9 +52,9 @@ class ProductPeriodFeeUpdate implements ModelInterface, ArrayAccess 'id' => 'int', 'version' => 'int', 'component' => 'int', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', - 'ledger_entry_title' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'description' => 'map[string,string]', + 'ledger_entry_title' => 'map[string,string]', + 'name' => 'map[string,string]', 'number_of_free_trial_periods' => 'int', 'period_fee' => '\Wallee\Sdk\Model\PersistableCurrencyAmountUpdate[]' ]; @@ -333,7 +333,7 @@ public function setComponent($component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getDescription() { @@ -343,7 +343,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. + * @param map[string,string] $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. * * @return $this */ @@ -358,7 +358,7 @@ public function setDescription($description) /** * Gets ledger_entry_title * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getLedgerEntryTitle() { @@ -368,7 +368,7 @@ public function getLedgerEntryTitle() /** * Sets ledger_entry_title * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $ledger_entry_title The ledger entry title will be used for the title in the ledger entry and in the invoice. + * @param map[string,string] $ledger_entry_title The ledger entry title will be used for the title in the ledger entry and in the invoice. * * @return $this */ @@ -383,7 +383,7 @@ public function setLedgerEntryTitle($ledger_entry_title) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -393,7 +393,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name The name of the fee should describe for the subscriber in few words for what the fee is for. + * @param map[string,string] $name The name of the fee should describe for the subscriber in few words for what the fee is for. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ProductSetupFee.php b/wallee-sdk/lib/Model/ProductSetupFee.php index e9ce8c6..b1f98dd 100644 --- a/wallee-sdk/lib/Model/ProductSetupFee.php +++ b/wallee-sdk/lib/Model/ProductSetupFee.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductSetupFee implements ModelInterface, ArrayAccess @@ -50,10 +50,10 @@ class ProductSetupFee implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'component' => '\Wallee\Sdk\Model\SubscriptionProductComponent', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'description' => 'map[string,string]', 'id' => 'int', 'linked_space_id' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'on_downgrade_credited_amount' => '\Wallee\Sdk\Model\PersistableCurrencyAmount[]', 'on_upgrade_credited_amount' => '\Wallee\Sdk\Model\PersistableCurrencyAmount[]', 'setup_fee' => '\Wallee\Sdk\Model\PersistableCurrencyAmount[]', @@ -291,7 +291,7 @@ public function setComponent($component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getDescription() { @@ -301,7 +301,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. + * @param map[string,string] $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. * * @return $this */ @@ -366,7 +366,7 @@ public function setLinkedSpaceId($linked_space_id) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -376,7 +376,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name The name of the fee should describe for the subscriber in few words for what the fee is for. + * @param map[string,string] $name The name of the fee should describe for the subscriber in few words for what the fee is for. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ProductSetupFeeUpdate.php b/wallee-sdk/lib/Model/ProductSetupFeeUpdate.php index 4e21718..c0fb2aa 100644 --- a/wallee-sdk/lib/Model/ProductSetupFeeUpdate.php +++ b/wallee-sdk/lib/Model/ProductSetupFeeUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ProductSetupFeeUpdate implements ModelInterface, ArrayAccess @@ -52,8 +52,8 @@ class ProductSetupFeeUpdate implements ModelInterface, ArrayAccess 'id' => 'int', 'version' => 'int', 'component' => 'int', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'description' => 'map[string,string]', + 'name' => 'map[string,string]', 'on_downgrade_credited_amount' => '\Wallee\Sdk\Model\PersistableCurrencyAmountUpdate[]', 'on_upgrade_credited_amount' => '\Wallee\Sdk\Model\PersistableCurrencyAmountUpdate[]', 'setup_fee' => '\Wallee\Sdk\Model\PersistableCurrencyAmountUpdate[]' @@ -333,7 +333,7 @@ public function setComponent($component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getDescription() { @@ -343,7 +343,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. + * @param map[string,string] $description The description of a component fee describes the fee to the subscriber. The description may be shown in documents or on certain user interfaces. * * @return $this */ @@ -358,7 +358,7 @@ public function setDescription($description) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -368,7 +368,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name The name of the fee should describe for the subscriber in few words for what the fee is for. + * @param map[string,string] $name The name of the fee should describe for the subscriber in few words for what the fee is for. * * @return $this */ diff --git a/wallee-sdk/lib/Model/RecurringIndicator.php b/wallee-sdk/lib/Model/RecurringIndicator.php index 56c22bb..afec153 100644 --- a/wallee-sdk/lib/Model/RecurringIndicator.php +++ b/wallee-sdk/lib/Model/RecurringIndicator.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RecurringIndicator diff --git a/wallee-sdk/lib/Model/Refund.php b/wallee-sdk/lib/Model/Refund.php index 697696f..7a62dcb 100644 --- a/wallee-sdk/lib/Model/Refund.php +++ b/wallee-sdk/lib/Model/Refund.php @@ -29,7 +29,7 @@ * @category Class * @description The refund represents a credit back to the customer. It can be issued by the merchant or by the customer (reversal). * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Refund implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/RefundBankTransaction.php b/wallee-sdk/lib/Model/RefundBankTransaction.php index df873a1..e2b5483 100644 --- a/wallee-sdk/lib/Model/RefundBankTransaction.php +++ b/wallee-sdk/lib/Model/RefundBankTransaction.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundBankTransaction extends TransactionAwareEntity @@ -374,7 +374,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/RefundComment.php b/wallee-sdk/lib/Model/RefundComment.php index 4641a55..41d5915 100644 --- a/wallee-sdk/lib/Model/RefundComment.php +++ b/wallee-sdk/lib/Model/RefundComment.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundComment implements ModelInterface, ArrayAccess @@ -280,7 +280,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ @@ -309,7 +309,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by + * @param int $created_by The ID of the user the comment was created by. * * @return $this */ @@ -359,7 +359,7 @@ public function getEditedBy() /** * Sets edited_by * - * @param int $edited_by + * @param int $edited_by The ID of the user the comment was last updated by. * * @return $this */ @@ -384,7 +384,7 @@ public function getEditedOn() /** * Sets edited_on * - * @param \DateTime $edited_on The date on which the comment was last edited. + * @param \DateTime $edited_on The date and time when the comment was last updated. * * @return $this */ @@ -459,7 +459,7 @@ public function getPinned() /** * Sets pinned * - * @param bool $pinned + * @param bool $pinned Whether the comment is pinned to the top. * * @return $this */ diff --git a/wallee-sdk/lib/Model/RefundCommentActive.php b/wallee-sdk/lib/Model/RefundCommentActive.php index cf020ea..c1d7e1d 100644 --- a/wallee-sdk/lib/Model/RefundCommentActive.php +++ b/wallee-sdk/lib/Model/RefundCommentActive.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundCommentActive extends AbstractRefundCommentActive diff --git a/wallee-sdk/lib/Model/RefundCommentCreate.php b/wallee-sdk/lib/Model/RefundCommentCreate.php index ca5389d..6be2ae8 100644 --- a/wallee-sdk/lib/Model/RefundCommentCreate.php +++ b/wallee-sdk/lib/Model/RefundCommentCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundCommentCreate extends AbstractRefundCommentActive diff --git a/wallee-sdk/lib/Model/RefundCreate.php b/wallee-sdk/lib/Model/RefundCreate.php index bade0be..5476e1f 100644 --- a/wallee-sdk/lib/Model/RefundCreate.php +++ b/wallee-sdk/lib/Model/RefundCreate.php @@ -29,7 +29,7 @@ * @category Class * @description The refund represents a credit back to the customer. It can be issued by the merchant or by the customer (reversal). * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/RefundRecoveryBankTransaction.php b/wallee-sdk/lib/Model/RefundRecoveryBankTransaction.php index b13be2a..5d4327e 100644 --- a/wallee-sdk/lib/Model/RefundRecoveryBankTransaction.php +++ b/wallee-sdk/lib/Model/RefundRecoveryBankTransaction.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundRecoveryBankTransaction extends TransactionAwareEntity @@ -406,7 +406,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/RefundState.php b/wallee-sdk/lib/Model/RefundState.php index 482c148..7a90842 100644 --- a/wallee-sdk/lib/Model/RefundState.php +++ b/wallee-sdk/lib/Model/RefundState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundState diff --git a/wallee-sdk/lib/Model/RefundType.php b/wallee-sdk/lib/Model/RefundType.php index d8596a4..779519b 100644 --- a/wallee-sdk/lib/Model/RefundType.php +++ b/wallee-sdk/lib/Model/RefundType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundType diff --git a/wallee-sdk/lib/Model/RenderedDocument.php b/wallee-sdk/lib/Model/RenderedDocument.php index efe4bdd..25d2f8a 100644 --- a/wallee-sdk/lib/Model/RenderedDocument.php +++ b/wallee-sdk/lib/Model/RenderedDocument.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RenderedDocument implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/RenderedTerminalReceipt.php b/wallee-sdk/lib/Model/RenderedTerminalReceipt.php index e73f8bf..2162ce4 100644 --- a/wallee-sdk/lib/Model/RenderedTerminalReceipt.php +++ b/wallee-sdk/lib/Model/RenderedTerminalReceipt.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RenderedTerminalReceipt implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/RenderedTerminalTransactionSummary.php b/wallee-sdk/lib/Model/RenderedTerminalTransactionSummary.php index 7b7fd2f..749f5e6 100644 --- a/wallee-sdk/lib/Model/RenderedTerminalTransactionSummary.php +++ b/wallee-sdk/lib/Model/RenderedTerminalTransactionSummary.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RenderedTerminalTransactionSummary implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ResourceState.php b/wallee-sdk/lib/Model/ResourceState.php index 136aaad..c263451 100644 --- a/wallee-sdk/lib/Model/ResourceState.php +++ b/wallee-sdk/lib/Model/ResourceState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ResourceState diff --git a/wallee-sdk/lib/Model/RestAddressFormat.php b/wallee-sdk/lib/Model/RestAddressFormat.php index 0aba7ac..f950c57 100644 --- a/wallee-sdk/lib/Model/RestAddressFormat.php +++ b/wallee-sdk/lib/Model/RestAddressFormat.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RestAddressFormat implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getPostCodeExamples() /** * Sets post_code_examples * - * @param string[] $post_code_examples The example post codes allow the user to understand what we expect here. + * @param string[] $post_code_examples A list of sample post codes. * * @return $this */ @@ -259,7 +259,7 @@ public function getPostCodeRegex() /** * Sets post_code_regex * - * @param string $post_code_regex The post code regex is a regular expression which can validates the input of the post code. + * @param string $post_code_regex The regular expression to validate post codes. * * @return $this */ @@ -284,7 +284,7 @@ public function getRequiredFields() /** * Sets required_fields * - * @param \Wallee\Sdk\Model\RestAddressFormatField[] $required_fields The required fields indicate what fields are required within an address to comply with the address format. + * @param \Wallee\Sdk\Model\RestAddressFormatField[] $required_fields The fields that are required in the address format. * * @return $this */ @@ -309,7 +309,7 @@ public function getUsedFields() /** * Sets used_fields * - * @param \Wallee\Sdk\Model\RestAddressFormatField[] $used_fields The used fields indicate what fields are used within this address format. + * @param \Wallee\Sdk\Model\RestAddressFormatField[] $used_fields The fields that are used in the address format. * * @return $this */ diff --git a/wallee-sdk/lib/Model/RestAddressFormatField.php b/wallee-sdk/lib/Model/RestAddressFormatField.php index 3c4edb2..acafc36 100644 --- a/wallee-sdk/lib/Model/RestAddressFormatField.php +++ b/wallee-sdk/lib/Model/RestAddressFormatField.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RestAddressFormatField diff --git a/wallee-sdk/lib/Model/RestCountry.php b/wallee-sdk/lib/Model/RestCountry.php index 7f57b76..a85223b 100644 --- a/wallee-sdk/lib/Model/RestCountry.php +++ b/wallee-sdk/lib/Model/RestCountry.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RestCountry implements ModelInterface, ArrayAccess @@ -49,9 +49,9 @@ class RestCountry implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - 'iso_code2_letter' => 'string', - 'iso_code3_letter' => 'string', 'address_format' => '\Wallee\Sdk\Model\RestAddressFormat', + 'iso_code2' => 'string', + 'iso_code3' => 'string', 'name' => 'string', 'numeric_code' => 'string', 'state_codes' => 'string[]' @@ -63,9 +63,9 @@ class RestCountry implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ - 'iso_code2_letter' => null, - 'iso_code3_letter' => null, 'address_format' => null, + 'iso_code2' => null, + 'iso_code3' => null, 'name' => null, 'numeric_code' => null, 'state_codes' => null @@ -78,9 +78,9 @@ class RestCountry implements ModelInterface, ArrayAccess * @var string[] */ protected static $attributeMap = [ - 'iso_code2_letter' => 'ISOCode2Letter', - 'iso_code3_letter' => 'ISOCode3Letter', 'address_format' => 'addressFormat', + 'iso_code2' => 'isoCode2', + 'iso_code3' => 'isoCode3', 'name' => 'name', 'numeric_code' => 'numericCode', 'state_codes' => 'stateCodes' @@ -92,9 +92,9 @@ class RestCountry implements ModelInterface, ArrayAccess * @var string[] */ protected static $setters = [ - 'iso_code2_letter' => 'setIsoCode2Letter', - 'iso_code3_letter' => 'setIsoCode3Letter', 'address_format' => 'setAddressFormat', + 'iso_code2' => 'setIsoCode2', + 'iso_code3' => 'setIsoCode3', 'name' => 'setName', 'numeric_code' => 'setNumericCode', 'state_codes' => 'setStateCodes' @@ -106,9 +106,9 @@ class RestCountry implements ModelInterface, ArrayAccess * @var string[] */ protected static $getters = [ - 'iso_code2_letter' => 'getIsoCode2Letter', - 'iso_code3_letter' => 'getIsoCode3Letter', 'address_format' => 'getAddressFormat', + 'iso_code2' => 'getIsoCode2', + 'iso_code3' => 'getIsoCode3', 'name' => 'getName', 'numeric_code' => 'getNumericCode', 'state_codes' => 'getStateCodes' @@ -132,11 +132,11 @@ class RestCountry implements ModelInterface, ArrayAccess public function __construct(array $data = null) { - $this->container['iso_code2_letter'] = isset($data['iso_code2_letter']) ? $data['iso_code2_letter'] : null; + $this->container['address_format'] = isset($data['address_format']) ? $data['address_format'] : null; - $this->container['iso_code3_letter'] = isset($data['iso_code3_letter']) ? $data['iso_code3_letter'] : null; + $this->container['iso_code2'] = isset($data['iso_code2']) ? $data['iso_code2'] : null; - $this->container['address_format'] = isset($data['address_format']) ? $data['address_format'] : null; + $this->container['iso_code3'] = isset($data['iso_code3']) ? $data['iso_code3'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; @@ -236,75 +236,75 @@ public function valid() /** - * Gets iso_code2_letter + * Gets address_format * - * @return string + * @return \Wallee\Sdk\Model\RestAddressFormat */ - public function getIsoCode2Letter() + public function getAddressFormat() { - return $this->container['iso_code2_letter']; + return $this->container['address_format']; } /** - * Sets iso_code2_letter + * Sets address_format * - * @param string $iso_code2_letter The ISO code 2 letter identifies the country by two chars as defined in ISO 3166-1 (e.g. US, DE, CH). + * @param \Wallee\Sdk\Model\RestAddressFormat $address_format Specifies the country's way of formatting addresses. * * @return $this */ - public function setIsoCode2Letter($iso_code2_letter) + public function setAddressFormat($address_format) { - $this->container['iso_code2_letter'] = $iso_code2_letter; + $this->container['address_format'] = $address_format; return $this; } /** - * Gets iso_code3_letter + * Gets iso_code2 * * @return string */ - public function getIsoCode3Letter() + public function getIsoCode2() { - return $this->container['iso_code3_letter']; + return $this->container['iso_code2']; } /** - * Sets iso_code3_letter + * Sets iso_code2 * - * @param string $iso_code3_letter The ISO code 3 letter identifies the country by three chars as defined in ISO 3166-1 (e.g. CHE, USA, GBR). + * @param string $iso_code2 The country's two-letter code (ISO 3166-1 alpha-2 format). * * @return $this */ - public function setIsoCode3Letter($iso_code3_letter) + public function setIsoCode2($iso_code2) { - $this->container['iso_code3_letter'] = $iso_code3_letter; + $this->container['iso_code2'] = $iso_code2; return $this; } /** - * Gets address_format + * Gets iso_code3 * - * @return \Wallee\Sdk\Model\RestAddressFormat + * @return string */ - public function getAddressFormat() + public function getIsoCode3() { - return $this->container['address_format']; + return $this->container['iso_code3']; } /** - * Sets address_format + * Sets iso_code3 * - * @param \Wallee\Sdk\Model\RestAddressFormat $address_format The address format of the country indicates how an address has to look like for the country. + * @param string $iso_code3 The country's three-letter code (ISO 3166-1 alpha-3 format). * * @return $this */ - public function setAddressFormat($address_format) + public function setIsoCode3($iso_code3) { - $this->container['address_format'] = $address_format; + $this->container['iso_code3'] = $iso_code3; return $this; } @@ -323,7 +323,7 @@ public function getName() /** * Sets name * - * @param string $name The name labels the country by a name in English. + * @param string $name The name of the country. * * @return $this */ @@ -348,7 +348,7 @@ public function getNumericCode() /** * Sets numeric_code * - * @param string $numeric_code The numeric code identifies the country by a three digit number as defined in ISO 3166-1 (e.g. 840, 826, 756). + * @param string $numeric_code The country's three-digit code (ISO 3166-1 numeric format). * * @return $this */ @@ -373,7 +373,7 @@ public function getStateCodes() /** * Sets state_codes * - * @param string[] $state_codes The state codes field is a list of all states associated with this country. The list contains the identifiers of the states. The identifiers corresponds to the ISO 3166-2 subdivision identifier. + * @param string[] $state_codes The codes of all regions (e.g. states, provinces) of the country (ISO 3166-2 format). * * @return $this */ diff --git a/wallee-sdk/lib/Model/RestCountryState.php b/wallee-sdk/lib/Model/RestCountryState.php index e2a873a..67aedff 100644 --- a/wallee-sdk/lib/Model/RestCountryState.php +++ b/wallee-sdk/lib/Model/RestCountryState.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RestCountryState implements ModelInterface, ArrayAccess @@ -50,6 +50,7 @@ class RestCountryState implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'code' => 'string', + 'country' => 'string', 'country_code' => 'string', 'id' => 'string', 'name' => 'string' @@ -62,6 +63,7 @@ class RestCountryState implements ModelInterface, ArrayAccess */ protected static $swaggerFormats = [ 'code' => null, + 'country' => null, 'country_code' => null, 'id' => null, 'name' => null @@ -75,6 +77,7 @@ class RestCountryState implements ModelInterface, ArrayAccess */ protected static $attributeMap = [ 'code' => 'code', + 'country' => 'country', 'country_code' => 'countryCode', 'id' => 'id', 'name' => 'name' @@ -87,6 +90,7 @@ class RestCountryState implements ModelInterface, ArrayAccess */ protected static $setters = [ 'code' => 'setCode', + 'country' => 'setCountry', 'country_code' => 'setCountryCode', 'id' => 'setId', 'name' => 'setName' @@ -99,6 +103,7 @@ class RestCountryState implements ModelInterface, ArrayAccess */ protected static $getters = [ 'code' => 'getCode', + 'country' => 'getCountry', 'country_code' => 'getCountryCode', 'id' => 'getId', 'name' => 'getName' @@ -124,6 +129,8 @@ public function __construct(array $data = null) $this->container['code'] = isset($data['code']) ? $data['code'] : null; + $this->container['country'] = isset($data['country']) ? $data['country'] : null; + $this->container['country_code'] = isset($data['country_code']) ? $data['country_code'] : null; $this->container['id'] = isset($data['id']) ? $data['id'] : null; @@ -234,7 +241,7 @@ public function getCode() /** * Sets code * - * @param string $code The code of the state identifies the state. The code is typically used within addresses. Some countries may not provide a code. For those the field is null. + * @param string $code The state's code used within addresses. * * @return $this */ @@ -246,6 +253,31 @@ public function setCode($code) } + /** + * Gets country + * + * @return string + */ + public function getCountry() + { + return $this->container['country']; + } + + /** + * Sets country + * + * @param string $country + * + * @return $this + */ + public function setCountry($country) + { + $this->container['country'] = $country; + + return $this; + } + + /** * Gets country_code * @@ -259,7 +291,7 @@ public function getCountryCode() /** * Sets country_code * - * @param string $country_code The country code in ISO two letter format (e.g. UK, DE, CH, US). + * @param string $country_code The two-letter code of the state's country (ISO 3166-1 alpha-2 format). * * @return $this */ @@ -284,7 +316,7 @@ public function getId() /** * Sets id * - * @param string $id The ID of the state corresponds to the subdivision identifier defined in ISO 3166-2. The format consists of the country code followed by a dash and a subdivision identifier. + * @param string $id The state's code in ISO 3166-2 format. * * @return $this */ @@ -309,7 +341,7 @@ public function getName() /** * Sets name * - * @param string $name The name is a human readable label of the state in the language of the region. + * @param string $name The name of the state. * * @return $this */ diff --git a/wallee-sdk/lib/Model/RestCurrency.php b/wallee-sdk/lib/Model/RestCurrency.php index 972a5ad..c5a0056 100644 --- a/wallee-sdk/lib/Model/RestCurrency.php +++ b/wallee-sdk/lib/Model/RestCurrency.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RestCurrency implements ModelInterface, ArrayAccess @@ -51,6 +51,7 @@ class RestCurrency implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'currency_code' => 'string', 'fraction_digits' => 'int', + 'name' => 'string', 'numeric_code' => 'int' ]; @@ -62,6 +63,7 @@ class RestCurrency implements ModelInterface, ArrayAccess protected static $swaggerFormats = [ 'currency_code' => null, 'fraction_digits' => 'int32', + 'name' => null, 'numeric_code' => 'int32' ]; @@ -74,6 +76,7 @@ class RestCurrency implements ModelInterface, ArrayAccess protected static $attributeMap = [ 'currency_code' => 'currencyCode', 'fraction_digits' => 'fractionDigits', + 'name' => 'name', 'numeric_code' => 'numericCode' ]; @@ -85,6 +88,7 @@ class RestCurrency implements ModelInterface, ArrayAccess protected static $setters = [ 'currency_code' => 'setCurrencyCode', 'fraction_digits' => 'setFractionDigits', + 'name' => 'setName', 'numeric_code' => 'setNumericCode' ]; @@ -96,6 +100,7 @@ class RestCurrency implements ModelInterface, ArrayAccess protected static $getters = [ 'currency_code' => 'getCurrencyCode', 'fraction_digits' => 'getFractionDigits', + 'name' => 'getName', 'numeric_code' => 'getNumericCode' ]; @@ -121,6 +126,8 @@ public function __construct(array $data = null) $this->container['fraction_digits'] = isset($data['fraction_digits']) ? $data['fraction_digits'] : null; + $this->container['name'] = isset($data['name']) ? $data['name'] : null; + $this->container['numeric_code'] = isset($data['numeric_code']) ? $data['numeric_code'] : null; } @@ -227,7 +234,7 @@ public function getCurrencyCode() /** * Sets currency_code * - * @param string $currency_code The currency code identifies the currency with the three char long ISO 4217 code (e.g. USD, CHF, EUR). + * @param string $currency_code The currency's three-letter code (ISO 4217 format). * * @return $this */ @@ -252,7 +259,7 @@ public function getFractionDigits() /** * Sets fraction_digits * - * @param int $fraction_digits The fraction digits indicates how many places the currency has. This also indicates with which precision we calculate internally when we do calculations with this currency. + * @param int $fraction_digits The currency's number of decimals. When calculating amounts in this currency, the fraction digits determine the accuracy. * * @return $this */ @@ -264,6 +271,31 @@ public function setFractionDigits($fraction_digits) } + /** + * Gets name + * + * @return string + */ + public function getName() + { + return $this->container['name']; + } + + /** + * Sets name + * + * @param string $name The name of the currency. + * + * @return $this + */ + public function setName($name) + { + $this->container['name'] = $name; + + return $this; + } + + /** * Gets numeric_code * @@ -277,7 +309,7 @@ public function getNumericCode() /** * Sets numeric_code * - * @param int $numeric_code The numeric code identifies the currency with the three digit long ISO 4217 code (e.g. 978, 756, 840). + * @param int $numeric_code The currency's three-digit code (ISO 4217 format). * * @return $this */ diff --git a/wallee-sdk/lib/Model/RestLanguage.php b/wallee-sdk/lib/Model/RestLanguage.php index e1c83c5..edc462a 100644 --- a/wallee-sdk/lib/Model/RestLanguage.php +++ b/wallee-sdk/lib/Model/RestLanguage.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RestLanguage implements ModelInterface, ArrayAccess @@ -53,6 +53,7 @@ class RestLanguage implements ModelInterface, ArrayAccess 'ietf_code' => 'string', 'iso2_code' => 'string', 'iso3_code' => 'string', + 'name' => 'string', 'plural_expression' => 'string', 'primary_of_group' => 'bool' ]; @@ -67,6 +68,7 @@ class RestLanguage implements ModelInterface, ArrayAccess 'ietf_code' => null, 'iso2_code' => null, 'iso3_code' => null, + 'name' => null, 'plural_expression' => null, 'primary_of_group' => null ]; @@ -82,6 +84,7 @@ class RestLanguage implements ModelInterface, ArrayAccess 'ietf_code' => 'ietfCode', 'iso2_code' => 'iso2Code', 'iso3_code' => 'iso3Code', + 'name' => 'name', 'plural_expression' => 'pluralExpression', 'primary_of_group' => 'primaryOfGroup' ]; @@ -96,6 +99,7 @@ class RestLanguage implements ModelInterface, ArrayAccess 'ietf_code' => 'setIetfCode', 'iso2_code' => 'setIso2Code', 'iso3_code' => 'setIso3Code', + 'name' => 'setName', 'plural_expression' => 'setPluralExpression', 'primary_of_group' => 'setPrimaryOfGroup' ]; @@ -110,6 +114,7 @@ class RestLanguage implements ModelInterface, ArrayAccess 'ietf_code' => 'getIetfCode', 'iso2_code' => 'getIso2Code', 'iso3_code' => 'getIso3Code', + 'name' => 'getName', 'plural_expression' => 'getPluralExpression', 'primary_of_group' => 'getPrimaryOfGroup' ]; @@ -140,6 +145,8 @@ public function __construct(array $data = null) $this->container['iso3_code'] = isset($data['iso3_code']) ? $data['iso3_code'] : null; + $this->container['name'] = isset($data['name']) ? $data['name'] : null; + $this->container['plural_expression'] = isset($data['plural_expression']) ? $data['plural_expression'] : null; $this->container['primary_of_group'] = isset($data['primary_of_group']) ? $data['primary_of_group'] : null; @@ -248,7 +255,7 @@ public function getCountryCode() /** * Sets country_code * - * @param string $country_code The country code represents the region of the language as a 2 letter ISO code. + * @param string $country_code The two-letter code of the language's region (ISO 3166-1 alpha-2 format). * * @return $this */ @@ -273,7 +280,7 @@ public function getIetfCode() /** * Sets ietf_code * - * @param string $ietf_code The IETF code represents the language as the two letter ISO code including the region (e.g. en-US). + * @param string $ietf_code The language's IETF tag consisting of the two-letter ISO code and region e.g. en-US, de-CH. * * @return $this */ @@ -298,7 +305,7 @@ public function getIso2Code() /** * Sets iso2_code * - * @param string $iso2_code The ISO 2 letter code represents the language with two letters. + * @param string $iso2_code The language's two-letter code (ISO 639-1 format). * * @return $this */ @@ -323,7 +330,7 @@ public function getIso3Code() /** * Sets iso3_code * - * @param string $iso3_code The ISO 3 letter code represents the language with three letters. + * @param string $iso3_code The language's three-letter code (ISO 639-2/T format). * * @return $this */ @@ -335,6 +342,31 @@ public function setIso3Code($iso3_code) } + /** + * Gets name + * + * @return string + */ + public function getName() + { + return $this->container['name']; + } + + /** + * Sets name + * + * @param string $name The name of the language. + * + * @return $this + */ + public function setName($name) + { + $this->container['name'] = $name; + + return $this; + } + + /** * Gets plural_expression * @@ -348,7 +380,7 @@ public function getPluralExpression() /** * Sets plural_expression * - * @param string $plural_expression The plural expression defines how to map a plural into the language index. This expression is used to determine the plural form for the translations. + * @param string $plural_expression The expression to determine the plural index for a given number of items used to find the proper plural form for translations. * * @return $this */ @@ -373,7 +405,7 @@ public function getPrimaryOfGroup() /** * Sets primary_of_group * - * @param bool $primary_of_group The primary language of a group indicates whether a language is the primary language of a group of languages. The group is determine by the ISO 2 letter code. + * @param bool $primary_of_group Whether this is the primary language in a group of languages. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Role.php b/wallee-sdk/lib/Model/Role.php index 6758e51..203e176 100644 --- a/wallee-sdk/lib/Model/Role.php +++ b/wallee-sdk/lib/Model/Role.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Role implements ModelInterface, ArrayAccess @@ -51,7 +51,7 @@ class Role implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'account' => '\Wallee\Sdk\Model\Account', 'id' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'permissions' => '\Wallee\Sdk\Model\Permission[]', 'planned_purge_date' => '\DateTime', 'state' => '\Wallee\Sdk\Model\RoleState', @@ -262,7 +262,7 @@ public function getAccount() /** * Sets account * - * @param \Wallee\Sdk\Model\Account $account The account to which this role belongs to. This role can only be assigned within the assigned account and the sub accounts of the assigned account. + * @param \Wallee\Sdk\Model\Account $account The account the role belongs to. The role can only be assigned within this account. * * @return $this */ @@ -302,7 +302,7 @@ public function setId($id) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -312,7 +312,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name The name of this role is used to identify the role within administrative interfaces. + * @param map[string,string] $name The name used to identify the role. * * @return $this */ @@ -337,7 +337,7 @@ public function getPermissions() /** * Sets permissions * - * @param \Wallee\Sdk\Model\Permission[] $permissions Set of permissions that are granted to this role. + * @param \Wallee\Sdk\Model\Permission[] $permissions The permissions granted to users with this role. * * @return $this */ @@ -412,7 +412,7 @@ public function getTwoFactorRequired() /** * Sets two_factor_required * - * @param bool $two_factor_required Defines whether having been granted this role will force a user to use two-factor authentication. + * @param bool $two_factor_required Whether users with this role are required to use two-factor authentication. * * @return $this */ diff --git a/wallee-sdk/lib/Model/RoleState.php b/wallee-sdk/lib/Model/RoleState.php index 62e12c4..d42b0ad 100644 --- a/wallee-sdk/lib/Model/RoleState.php +++ b/wallee-sdk/lib/Model/RoleState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RoleState diff --git a/wallee-sdk/lib/Model/SalesChannel.php b/wallee-sdk/lib/Model/SalesChannel.php index d7ba4aa..474d5ff 100644 --- a/wallee-sdk/lib/Model/SalesChannel.php +++ b/wallee-sdk/lib/Model/SalesChannel.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SalesChannel implements ModelInterface, ArrayAccess @@ -53,7 +53,6 @@ class SalesChannel implements ModelInterface, ArrayAccess 'icon' => 'string', 'id' => 'int', 'name' => 'map[string,string]', - 'parent' => '\Wallee\Sdk\Model\SalesChannel', 'sort_order' => 'int' ]; @@ -67,7 +66,6 @@ class SalesChannel implements ModelInterface, ArrayAccess 'icon' => null, 'id' => 'int64', 'name' => null, - 'parent' => null, 'sort_order' => 'int32' ]; @@ -82,7 +80,6 @@ class SalesChannel implements ModelInterface, ArrayAccess 'icon' => 'icon', 'id' => 'id', 'name' => 'name', - 'parent' => 'parent', 'sort_order' => 'sortOrder' ]; @@ -96,7 +93,6 @@ class SalesChannel implements ModelInterface, ArrayAccess 'icon' => 'setIcon', 'id' => 'setId', 'name' => 'setName', - 'parent' => 'setParent', 'sort_order' => 'setSortOrder' ]; @@ -110,7 +106,6 @@ class SalesChannel implements ModelInterface, ArrayAccess 'icon' => 'getIcon', 'id' => 'getId', 'name' => 'getName', - 'parent' => 'getParent', 'sort_order' => 'getSortOrder' ]; @@ -140,8 +135,6 @@ public function __construct(array $data = null) $this->container['name'] = isset($data['name']) ? $data['name'] : null; - $this->container['parent'] = isset($data['parent']) ? $data['parent'] : null; - $this->container['sort_order'] = isset($data['sort_order']) ? $data['sort_order'] : null; } @@ -248,7 +241,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -273,7 +266,7 @@ public function getIcon() /** * Sets icon * - * @param string $icon + * @param string $icon The identifier of the icon that symbolizes the sales channel. * * @return $this */ @@ -323,7 +316,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ @@ -335,31 +328,6 @@ public function setName($name) } - /** - * Gets parent - * - * @return \Wallee\Sdk\Model\SalesChannel - */ - public function getParent() - { - return $this->container['parent']; - } - - /** - * Sets parent - * - * @param \Wallee\Sdk\Model\SalesChannel $parent - * - * @return $this - */ - public function setParent($parent) - { - $this->container['parent'] = $parent; - - return $this; - } - - /** * Gets sort_order * @@ -373,7 +341,7 @@ public function getSortOrder() /** * Sets sort_order * - * @param int $sort_order + * @param int $sort_order When listing sales channels, they can be sorted by this number. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Scope.php b/wallee-sdk/lib/Model/Scope.php index 76f2eb8..2acaf93 100644 --- a/wallee-sdk/lib/Model/Scope.php +++ b/wallee-sdk/lib/Model/Scope.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Scope implements ModelInterface, ArrayAccess @@ -302,7 +302,7 @@ public function getDomainName() /** * Sets domain_name * - * @param string $domain_name The domain name to which this scope is mapped to. + * @param string $domain_name The domain name that belongs to the scope. * * @return $this */ @@ -331,7 +331,7 @@ public function getFeatures() /** * Sets features * - * @param \Wallee\Sdk\Model\Feature[] $features + * @param \Wallee\Sdk\Model\Feature[] $features The list of features that are active in the scope. * * @return $this */ @@ -381,7 +381,7 @@ public function getMachineName() /** * Sets machine_name * - * @param string $machine_name + * @param string $machine_name The name identifying the scope in e.g. URLs. * * @return $this */ @@ -410,7 +410,7 @@ public function getName() /** * Sets name * - * @param string $name The name of the scope is shown to the user where the user should select a scope. + * @param string $name The name used to identify the scope. * * @return $this */ @@ -464,7 +464,7 @@ public function getPort() /** * Sets port * - * @param int $port The port number to which this scope is mapped to. + * @param int $port The port where the scope can be accessed. * * @return $this */ @@ -489,7 +489,7 @@ public function getSslActive() /** * Sets ssl_active * - * @param bool $ssl_active Define whether the scope supports SSL. + * @param bool $ssl_active Whether the scope supports SSL. * * @return $this */ @@ -539,7 +539,7 @@ public function getThemes() /** * Sets themes * - * @param string[] $themes The themes determines how the application layout, look and feel is. By providing multiple themes you can fallback to other themes. + * @param string[] $themes The themes that determine the look and feel of the scope's user interface. A fall-through strategy is applied when building the actual theme. * * @return $this */ @@ -564,7 +564,7 @@ public function getUrl() /** * Sets url * - * @param string $url + * @param string $url The URL where the scope can be accessed. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ServerError.php b/wallee-sdk/lib/Model/ServerError.php index d75b540..5cfafac 100644 --- a/wallee-sdk/lib/Model/ServerError.php +++ b/wallee-sdk/lib/Model/ServerError.php @@ -29,7 +29,7 @@ * @category Class * @description This error is thrown when something unexpected happens on our side. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ServerError implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifyAdditionalLineItemData.php b/wallee-sdk/lib/Model/ShopifyAdditionalLineItemData.php index 707b10a..4f8c29e 100644 --- a/wallee-sdk/lib/Model/ShopifyAdditionalLineItemData.php +++ b/wallee-sdk/lib/Model/ShopifyAdditionalLineItemData.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyAdditionalLineItemData diff --git a/wallee-sdk/lib/Model/ShopifyIntegration.php b/wallee-sdk/lib/Model/ShopifyIntegration.php index 8708454..e779067 100644 --- a/wallee-sdk/lib/Model/ShopifyIntegration.php +++ b/wallee-sdk/lib/Model/ShopifyIntegration.php @@ -29,7 +29,7 @@ * @category Class * @description A Shopify Integration allows to connect a Shopify shop. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyIntegration implements ModelInterface, ArrayAccess @@ -848,7 +848,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ShopifyIntegrationPaymentAppVersion.php b/wallee-sdk/lib/Model/ShopifyIntegrationPaymentAppVersion.php index 358ee6d..eeeaeab 100644 --- a/wallee-sdk/lib/Model/ShopifyIntegrationPaymentAppVersion.php +++ b/wallee-sdk/lib/Model/ShopifyIntegrationPaymentAppVersion.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyIntegrationPaymentAppVersion diff --git a/wallee-sdk/lib/Model/ShopifyIntegrationSubscriptionAppVersion.php b/wallee-sdk/lib/Model/ShopifyIntegrationSubscriptionAppVersion.php index e00c1c0..6b01208 100644 --- a/wallee-sdk/lib/Model/ShopifyIntegrationSubscriptionAppVersion.php +++ b/wallee-sdk/lib/Model/ShopifyIntegrationSubscriptionAppVersion.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyIntegrationSubscriptionAppVersion diff --git a/wallee-sdk/lib/Model/ShopifyRecurringOrder.php b/wallee-sdk/lib/Model/ShopifyRecurringOrder.php index fa0da89..155e7e7 100644 --- a/wallee-sdk/lib/Model/ShopifyRecurringOrder.php +++ b/wallee-sdk/lib/Model/ShopifyRecurringOrder.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyRecurringOrder extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/ShopifyRecurringOrderState.php b/wallee-sdk/lib/Model/ShopifyRecurringOrderState.php index 37592ea..11c9e01 100644 --- a/wallee-sdk/lib/Model/ShopifyRecurringOrderState.php +++ b/wallee-sdk/lib/Model/ShopifyRecurringOrderState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyRecurringOrderState diff --git a/wallee-sdk/lib/Model/ShopifyRecurringOrderUpdateRequest.php b/wallee-sdk/lib/Model/ShopifyRecurringOrderUpdateRequest.php index c57d5c6..2fddeaa 100644 --- a/wallee-sdk/lib/Model/ShopifyRecurringOrderUpdateRequest.php +++ b/wallee-sdk/lib/Model/ShopifyRecurringOrderUpdateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyRecurringOrderUpdateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriber.php b/wallee-sdk/lib/Model/ShopifySubscriber.php index 2909e43..f28ef78 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriber.php +++ b/wallee-sdk/lib/Model/ShopifySubscriber.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriber implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriberActive.php b/wallee-sdk/lib/Model/ShopifySubscriberActive.php index fae0763..cea7ed6 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriberActive.php +++ b/wallee-sdk/lib/Model/ShopifySubscriberActive.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriberActive implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriberCreation.php b/wallee-sdk/lib/Model/ShopifySubscriberCreation.php index b61376f..f66dd38 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriberCreation.php +++ b/wallee-sdk/lib/Model/ShopifySubscriberCreation.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriberCreation implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriberState.php b/wallee-sdk/lib/Model/ShopifySubscriberState.php index 8c2862b..ee73392 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriberState.php +++ b/wallee-sdk/lib/Model/ShopifySubscriberState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriberState diff --git a/wallee-sdk/lib/Model/ShopifySubscription.php b/wallee-sdk/lib/Model/ShopifySubscription.php index 822333c..e4efd6b 100644 --- a/wallee-sdk/lib/Model/ShopifySubscription.php +++ b/wallee-sdk/lib/Model/ShopifySubscription.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscription implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionAddress.php b/wallee-sdk/lib/Model/ShopifySubscriptionAddress.php index 7768880..24a2b37 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionAddress.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionAddress.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionAddress extends Address diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionAddressCreate.php b/wallee-sdk/lib/Model/ShopifySubscriptionAddressCreate.php index 090f94a..88acccb 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionAddressCreate.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionAddressCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionAddressCreate implements ModelInterface, ArrayAccess @@ -390,7 +390,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -415,7 +415,7 @@ public function getCommercialRegisterNumber() /** * Sets commercial_register_number * - * @param string $commercial_register_number + * @param string $commercial_register_number The commercial registration number of the organization. * * @return $this */ @@ -444,7 +444,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter country code (ISO 3166 format). * * @return $this */ @@ -469,7 +469,7 @@ public function getDateOfBirth() /** * Sets date_of_birth * - * @param \DateTime $date_of_birth + * @param \DateTime $date_of_birth The date of birth. * * @return $this */ @@ -494,7 +494,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -523,7 +523,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address + * @param string $email_address The email address. * * @return $this */ @@ -552,7 +552,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -577,7 +577,7 @@ public function getGender() /** * Sets gender * - * @param \Wallee\Sdk\Model\Gender $gender + * @param \Wallee\Sdk\Model\Gender $gender The gender. * * @return $this */ @@ -602,7 +602,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -631,7 +631,7 @@ public function getLegalOrganizationForm() /** * Sets legal_organization_form * - * @param int $legal_organization_form + * @param int $legal_organization_form The legal form of the organization. * * @return $this */ @@ -656,7 +656,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -685,7 +685,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -714,7 +714,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -743,7 +743,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -768,7 +768,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -793,7 +793,7 @@ public function getSalesTaxNumber() /** * Sets sales_tax_number * - * @param string $sales_tax_number + * @param string $sales_tax_number The sales tax number of the organization. * * @return $this */ @@ -822,7 +822,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -851,7 +851,7 @@ public function getSocialSecurityNumber() /** * Sets social_security_number * - * @param string $social_security_number + * @param string $social_security_number The social security number. * * @return $this */ @@ -880,7 +880,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -909,7 +909,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionBillingIntervalUnit.php b/wallee-sdk/lib/Model/ShopifySubscriptionBillingIntervalUnit.php index 9af2009..0f05a52 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionBillingIntervalUnit.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionBillingIntervalUnit.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionBillingIntervalUnit diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionCreationRequest.php b/wallee-sdk/lib/Model/ShopifySubscriptionCreationRequest.php index a00cb34..afc4fba 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionCreationRequest.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionCreationRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionCreationRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionModelBillingConfiguration.php b/wallee-sdk/lib/Model/ShopifySubscriptionModelBillingConfiguration.php index e45590e..4584aa3 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionModelBillingConfiguration.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionModelBillingConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionModelBillingConfiguration implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionModelItem.php b/wallee-sdk/lib/Model/ShopifySubscriptionModelItem.php index 0f57fa9..a385936 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionModelItem.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionModelItem.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionModelItem implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionModelTaxLine.php b/wallee-sdk/lib/Model/ShopifySubscriptionModelTaxLine.php index 54cc70d..5d64259 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionModelTaxLine.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionModelTaxLine.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionModelTaxLine implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionProduct.php b/wallee-sdk/lib/Model/ShopifySubscriptionProduct.php index bde3441..4566366 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionProduct.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionProduct.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionProduct implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionProductCreate.php b/wallee-sdk/lib/Model/ShopifySubscriptionProductCreate.php index 1b82dec..ef88446 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionProductCreate.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionProductCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionProductCreate extends AbstractShopifySubscriptionProductUpdate diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionProductPricingOption.php b/wallee-sdk/lib/Model/ShopifySubscriptionProductPricingOption.php index 7c1b6b0..caca182 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionProductPricingOption.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionProductPricingOption.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionProductPricingOption diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionProductState.php b/wallee-sdk/lib/Model/ShopifySubscriptionProductState.php index a27291d..bfe01ac 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionProductState.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionProductState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionProductState diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionProductUpdate.php b/wallee-sdk/lib/Model/ShopifySubscriptionProductUpdate.php index df24f6e..3bc3058 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionProductUpdate.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionProductUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionProductUpdate extends AbstractShopifySubscriptionProductUpdate diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionState.php b/wallee-sdk/lib/Model/ShopifySubscriptionState.php index 84ad33f..e361c9c 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionState.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionState diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionSuspension.php b/wallee-sdk/lib/Model/ShopifySubscriptionSuspension.php index 226c4d3..86a23e4 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionSuspension.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionSuspension.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionSuspension implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionCreate.php b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionCreate.php index b18b493..ce3c891 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionCreate.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionSuspensionCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionInitiator.php b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionInitiator.php index b83f56c..5d0405a 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionInitiator.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionInitiator.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionSuspensionInitiator diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionState.php b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionState.php index a222b5d..5135e01 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionState.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionSuspensionState diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionType.php b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionType.php index 9f8319b..7532fed 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionType.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionSuspensionType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionSuspensionType diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionUpdateAddressesRequest.php b/wallee-sdk/lib/Model/ShopifySubscriptionUpdateAddressesRequest.php index 194d7a0..19afef3 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionUpdateAddressesRequest.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionUpdateAddressesRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionUpdateAddressesRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionUpdateRequest.php b/wallee-sdk/lib/Model/ShopifySubscriptionUpdateRequest.php index 9ec941e..f92d5c3 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionUpdateRequest.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionUpdateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionUpdateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionVersion.php b/wallee-sdk/lib/Model/ShopifySubscriptionVersion.php index 8ab9c5e..f1468fd 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionVersion.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionVersion.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionVersion implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionVersionItem.php b/wallee-sdk/lib/Model/ShopifySubscriptionVersionItem.php index d79141d..1e1f984 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionVersionItem.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionVersionItem.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionVersionItem implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionVersionItemPriceStrategy.php b/wallee-sdk/lib/Model/ShopifySubscriptionVersionItemPriceStrategy.php index b52dbe9..d64ffa5 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionVersionItemPriceStrategy.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionVersionItemPriceStrategy.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionVersionItemPriceStrategy diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionVersionState.php b/wallee-sdk/lib/Model/ShopifySubscriptionVersionState.php index 94af51a..4bf63c0 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionVersionState.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionVersionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionVersionState diff --git a/wallee-sdk/lib/Model/ShopifySubscriptionWeekday.php b/wallee-sdk/lib/Model/ShopifySubscriptionWeekday.php index 942c967..3638005 100644 --- a/wallee-sdk/lib/Model/ShopifySubscriptionWeekday.php +++ b/wallee-sdk/lib/Model/ShopifySubscriptionWeekday.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionWeekday diff --git a/wallee-sdk/lib/Model/ShopifyTaxLine.php b/wallee-sdk/lib/Model/ShopifyTaxLine.php index 716d2aa..356c6b2 100644 --- a/wallee-sdk/lib/Model/ShopifyTaxLine.php +++ b/wallee-sdk/lib/Model/ShopifyTaxLine.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyTaxLine implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/ShopifyTransaction.php b/wallee-sdk/lib/Model/ShopifyTransaction.php index 3708bee..1d5350f 100644 --- a/wallee-sdk/lib/Model/ShopifyTransaction.php +++ b/wallee-sdk/lib/Model/ShopifyTransaction.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyTransaction extends TransactionAwareEntity diff --git a/wallee-sdk/lib/Model/ShopifyTransactionState.php b/wallee-sdk/lib/Model/ShopifyTransactionState.php index 292cf16..7fce4f3 100644 --- a/wallee-sdk/lib/Model/ShopifyTransactionState.php +++ b/wallee-sdk/lib/Model/ShopifyTransactionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyTransactionState diff --git a/wallee-sdk/lib/Model/Space.php b/wallee-sdk/lib/Model/Space.php index 1d09974..d25a21f 100644 --- a/wallee-sdk/lib/Model/Space.php +++ b/wallee-sdk/lib/Model/Space.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Space implements ModelInterface, ArrayAccess @@ -354,7 +354,7 @@ public function getAccount() /** * Sets account * - * @param \Wallee\Sdk\Model\Account $account The account to which the space belongs to. + * @param \Wallee\Sdk\Model\Account $account The account that the space belongs to. * * @return $this */ @@ -379,7 +379,7 @@ public function getActive() /** * Sets active * - * @param bool $active Active means that this account and all accounts in the hierarchy are active. + * @param bool $active Whether this space and all its parent accounts are active. * * @return $this */ @@ -404,7 +404,7 @@ public function getActiveOrRestrictedActive() /** * Sets active_or_restricted_active * - * @param bool $active_or_restricted_active This property is true when all accounts in the hierarchy are active or restricted active. + * @param bool $active_or_restricted_active Whether this space and all its parent accounts are active or restricted active. * * @return $this */ @@ -429,7 +429,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by The ID of the user who created this entity. + * @param int $created_by The ID of the user the space was created by. * * @return $this */ @@ -454,7 +454,7 @@ public function getCreatedOn() /** * Sets created_on * - * @param \DateTime $created_on The date and time when this entity was created. + * @param \DateTime $created_on The date and time when the space was created. * * @return $this */ @@ -479,7 +479,7 @@ public function getDatabase() /** * Sets database * - * @param \Wallee\Sdk\Model\TenantDatabase $database The database in which the space's data are stored in. + * @param \Wallee\Sdk\Model\TenantDatabase $database The database the space is connected to and that holds the space's data. * * @return $this */ @@ -504,7 +504,7 @@ public function getDeletedBy() /** * Sets deleted_by * - * @param int $deleted_by The ID of a user that deleted this entity. + * @param int $deleted_by The ID of the user the space was deleted by. * * @return $this */ @@ -529,7 +529,7 @@ public function getDeletedOn() /** * Sets deleted_on * - * @param \DateTime $deleted_on The date and time when this entity was deleted. + * @param \DateTime $deleted_on The date and time when the space was deleted. * * @return $this */ @@ -604,7 +604,7 @@ public function getName() /** * Sets name * - * @param string $name The space name is used internally to identify the space in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the space. * * @return $this */ @@ -661,7 +661,7 @@ public function getPostalAddress() /** * Sets postal_address * - * @param \Wallee\Sdk\Model\SpaceAddress $postal_address The address to use in communication with clients for example in email, documents etc. + * @param \Wallee\Sdk\Model\SpaceAddress $postal_address The address that is used in communication with clients for example in emails, documents, etc. * * @return $this */ @@ -686,7 +686,7 @@ public function getPrimaryCurrency() /** * Sets primary_currency * - * @param string $primary_currency This is the currency that is used to display aggregated amounts in the space. + * @param string $primary_currency The currency that is used to display aggregated amounts in the space. * * @return $this */ @@ -711,7 +711,7 @@ public function getRequestLimit() /** * Sets request_limit * - * @param int $request_limit The request limit defines the maximum number of API request accepted within 2 minutes for this space. This limit can only be changed with special privileges. + * @param int $request_limit The maximum number of API requests that are accepted within two minutes. This limit can only be changed with special privileges. * * @return $this */ @@ -736,7 +736,7 @@ public function getRestrictedActive() /** * Sets restricted_active * - * @param bool $restricted_active Restricted active means that at least one account in the hierarchy is only restricted active, but all are either restricted active or active. + * @param bool $restricted_active Whether this space and all its parent accounts are active or restricted active. There is least one parent account that is restricted active. * * @return $this */ @@ -786,7 +786,7 @@ public function getTechnicalContactAddresses() /** * Sets technical_contact_addresses * - * @param string[] $technical_contact_addresses The email address provided as contact addresses will be informed about technical issues or errors triggered by the space. + * @param string[] $technical_contact_addresses The email address that will receive messages about technical issues and errors that occur in the space. * * @return $this */ @@ -811,7 +811,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone assigned to the space determines the time offset for calculating dates within the space. This is typically used for background processed which needs to be triggered on a specific hour within the day. Changing the space time zone will not change the display of dates. + * @param string $time_zone The time zone that is used to schedule and run background processes. This does not affect the formatting of dates in the user interface. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SpaceAddress.php b/wallee-sdk/lib/Model/SpaceAddress.php index 1f4920f..be0f67e 100644 --- a/wallee-sdk/lib/Model/SpaceAddress.php +++ b/wallee-sdk/lib/Model/SpaceAddress.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceAddress implements ModelInterface, ArrayAccess @@ -347,7 +347,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -372,7 +372,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter country code (ISO 3166 format). * * @return $this */ @@ -397,7 +397,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -426,7 +426,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address The email address is used within emails and as reply to address. + * @param string $email_address The email address used for communication with clients. * * @return $this */ @@ -451,7 +451,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -480,7 +480,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -509,7 +509,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -538,7 +538,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -567,7 +567,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -596,7 +596,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -621,7 +621,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -646,7 +646,7 @@ public function getSalesTaxNumber() /** * Sets sales_tax_number * - * @param string $sales_tax_number + * @param string $sales_tax_number The sales tax number of the organization. * * @return $this */ @@ -675,7 +675,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -704,7 +704,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -733,7 +733,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SpaceAddressCreate.php b/wallee-sdk/lib/Model/SpaceAddressCreate.php index 55f91b0..da46f4c 100644 --- a/wallee-sdk/lib/Model/SpaceAddressCreate.php +++ b/wallee-sdk/lib/Model/SpaceAddressCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceAddressCreate implements ModelInterface, ArrayAccess @@ -347,7 +347,7 @@ public function getCity() /** * Sets city * - * @param string $city + * @param string $city The city, town or village. * * @return $this */ @@ -372,7 +372,7 @@ public function getCountry() /** * Sets country * - * @param string $country + * @param string $country The two-letter country code (ISO 3166 format). * * @return $this */ @@ -397,7 +397,7 @@ public function getDependentLocality() /** * Sets dependent_locality * - * @param string $dependent_locality + * @param string $dependent_locality The dependent locality which is a sub-division of the state. * * @return $this */ @@ -426,7 +426,7 @@ public function getEmailAddress() /** * Sets email_address * - * @param string $email_address The email address is used within emails and as reply to address. + * @param string $email_address The email address used for communication with clients. * * @return $this */ @@ -451,7 +451,7 @@ public function getFamilyName() /** * Sets family_name * - * @param string $family_name + * @param string $family_name The family or last name. * * @return $this */ @@ -480,7 +480,7 @@ public function getGivenName() /** * Sets given_name * - * @param string $given_name + * @param string $given_name The given or first name. * * @return $this */ @@ -509,7 +509,7 @@ public function getMobilePhoneNumber() /** * Sets mobile_phone_number * - * @param string $mobile_phone_number + * @param string $mobile_phone_number The phone number of a mobile phone. * * @return $this */ @@ -538,7 +538,7 @@ public function getOrganizationName() /** * Sets organization_name * - * @param string $organization_name + * @param string $organization_name The organization's name. * * @return $this */ @@ -567,7 +567,7 @@ public function getPhoneNumber() /** * Sets phone_number * - * @param string $phone_number + * @param string $phone_number The phone number. * * @return $this */ @@ -596,7 +596,7 @@ public function getPostalState() /** * Sets postal_state * - * @param string $postal_state + * @param string $postal_state The name of the region, typically a state, county, province or prefecture. * * @return $this */ @@ -621,7 +621,7 @@ public function getPostcode() /** * Sets postcode * - * @param string $postcode + * @param string $postcode The postal code, also known as ZIP, postcode, etc. * * @return $this */ @@ -646,7 +646,7 @@ public function getSalesTaxNumber() /** * Sets sales_tax_number * - * @param string $sales_tax_number + * @param string $sales_tax_number The sales tax number of the organization. * * @return $this */ @@ -675,7 +675,7 @@ public function getSalutation() /** * Sets salutation * - * @param string $salutation + * @param string $salutation The salutation e.g. Mrs, Mr, Dr. * * @return $this */ @@ -704,7 +704,7 @@ public function getSortingCode() /** * Sets sorting_code * - * @param string $sorting_code The sorting code identifies the post office at which the post box is located in. + * @param string $sorting_code The sorting code identifying the post office where the PO Box is located. * * @return $this */ @@ -733,7 +733,7 @@ public function getStreet() /** * Sets street * - * @param string $street + * @param string $street The street or PO Box. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SpaceCreate.php b/wallee-sdk/lib/Model/SpaceCreate.php index 86df0bd..52d8491 100644 --- a/wallee-sdk/lib/Model/SpaceCreate.php +++ b/wallee-sdk/lib/Model/SpaceCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceCreate extends AbstractSpaceUpdate @@ -218,7 +218,7 @@ public function getAccount() /** * Sets account * - * @param int $account The account to which the space belongs to. + * @param int $account The account that the space belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SpaceReference.php b/wallee-sdk/lib/Model/SpaceReference.php index 100cc21..e07067a 100644 --- a/wallee-sdk/lib/Model/SpaceReference.php +++ b/wallee-sdk/lib/Model/SpaceReference.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceReference implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SpaceReferenceState.php b/wallee-sdk/lib/Model/SpaceReferenceState.php index fca8eb8..ef27e67 100644 --- a/wallee-sdk/lib/Model/SpaceReferenceState.php +++ b/wallee-sdk/lib/Model/SpaceReferenceState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceReferenceState diff --git a/wallee-sdk/lib/Model/SpaceUpdate.php b/wallee-sdk/lib/Model/SpaceUpdate.php index a3a7c36..ce32a21 100644 --- a/wallee-sdk/lib/Model/SpaceUpdate.php +++ b/wallee-sdk/lib/Model/SpaceUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceUpdate extends AbstractSpaceUpdate diff --git a/wallee-sdk/lib/Model/SpaceView.php b/wallee-sdk/lib/Model/SpaceView.php index b1fa84b..1057571 100644 --- a/wallee-sdk/lib/Model/SpaceView.php +++ b/wallee-sdk/lib/Model/SpaceView.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceView implements ModelInterface, ArrayAccess @@ -313,7 +313,7 @@ public function getName() /** * Sets name * - * @param string $name The space view name is used internally to identify the space view in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the space view. * * @return $this */ @@ -370,7 +370,7 @@ public function getSpace() /** * Sets space * - * @param \Wallee\Sdk\Model\Space $space The space to which the view belongs to. + * @param \Wallee\Sdk\Model\Space $space The space that the space view belongs to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/StaticValue.php b/wallee-sdk/lib/Model/StaticValue.php index 53b1536..a7d9a0e 100644 --- a/wallee-sdk/lib/Model/StaticValue.php +++ b/wallee-sdk/lib/Model/StaticValue.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class StaticValue implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Subscriber.php b/wallee-sdk/lib/Model/Subscriber.php index ecc2f63..c1ed8e8 100644 --- a/wallee-sdk/lib/Model/Subscriber.php +++ b/wallee-sdk/lib/Model/Subscriber.php @@ -29,7 +29,7 @@ * @category Class * @description A subscriber represents everyone who is subscribed to a product. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Subscriber implements ModelInterface, ArrayAccess @@ -556,7 +556,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriberActive.php b/wallee-sdk/lib/Model/SubscriberActive.php index 67a9fe0..7ede0a3 100644 --- a/wallee-sdk/lib/Model/SubscriberActive.php +++ b/wallee-sdk/lib/Model/SubscriberActive.php @@ -27,7 +27,7 @@ * @category Class * @description A subscriber represents everyone who is subscribed to a product. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriberActive extends SubscriberUpdate diff --git a/wallee-sdk/lib/Model/SubscriberCreate.php b/wallee-sdk/lib/Model/SubscriberCreate.php index fbd7cb3..72b583d 100644 --- a/wallee-sdk/lib/Model/SubscriberCreate.php +++ b/wallee-sdk/lib/Model/SubscriberCreate.php @@ -27,7 +27,7 @@ * @category Class * @description A subscriber represents everyone who is subscribed to a product. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriberCreate extends AbstractSubscriberUpdate diff --git a/wallee-sdk/lib/Model/SubscriberUpdate.php b/wallee-sdk/lib/Model/SubscriberUpdate.php index bb1658e..3df2637 100644 --- a/wallee-sdk/lib/Model/SubscriberUpdate.php +++ b/wallee-sdk/lib/Model/SubscriberUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description A subscriber represents everyone who is subscribed to a product. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriberUpdate implements ModelInterface, ArrayAccess @@ -509,7 +509,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/Subscription.php b/wallee-sdk/lib/Model/Subscription.php index e97ce10..a321d2f 100644 --- a/wallee-sdk/lib/Model/Subscription.php +++ b/wallee-sdk/lib/Model/Subscription.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Subscription implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionAffiliate.php b/wallee-sdk/lib/Model/SubscriptionAffiliate.php index de280a7..b55f048 100644 --- a/wallee-sdk/lib/Model/SubscriptionAffiliate.php +++ b/wallee-sdk/lib/Model/SubscriptionAffiliate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionAffiliate implements ModelInterface, ArrayAccess @@ -392,7 +392,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionAffiliateCreate.php b/wallee-sdk/lib/Model/SubscriptionAffiliateCreate.php index a1edd4c..be5d0f5 100644 --- a/wallee-sdk/lib/Model/SubscriptionAffiliateCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionAffiliateCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionAffiliateCreate extends AbstractSubscriptionAffiliateUpdate diff --git a/wallee-sdk/lib/Model/SubscriptionAffiliateDeleted.php b/wallee-sdk/lib/Model/SubscriptionAffiliateDeleted.php index 1cd1e42..183d9b5 100644 --- a/wallee-sdk/lib/Model/SubscriptionAffiliateDeleted.php +++ b/wallee-sdk/lib/Model/SubscriptionAffiliateDeleted.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionAffiliateDeleted extends SubscriptionAffiliate diff --git a/wallee-sdk/lib/Model/SubscriptionAffiliateDeleting.php b/wallee-sdk/lib/Model/SubscriptionAffiliateDeleting.php index dfa7e81..c62a8fd 100644 --- a/wallee-sdk/lib/Model/SubscriptionAffiliateDeleting.php +++ b/wallee-sdk/lib/Model/SubscriptionAffiliateDeleting.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionAffiliateDeleting extends SubscriptionAffiliateDeleted diff --git a/wallee-sdk/lib/Model/SubscriptionAffiliateInactive.php b/wallee-sdk/lib/Model/SubscriptionAffiliateInactive.php index 58b69e8..52934cc 100644 --- a/wallee-sdk/lib/Model/SubscriptionAffiliateInactive.php +++ b/wallee-sdk/lib/Model/SubscriptionAffiliateInactive.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionAffiliateInactive extends SubscriptionAffiliateUpdate diff --git a/wallee-sdk/lib/Model/SubscriptionAffiliateUpdate.php b/wallee-sdk/lib/Model/SubscriptionAffiliateUpdate.php index 495739d..db739eb 100644 --- a/wallee-sdk/lib/Model/SubscriptionAffiliateUpdate.php +++ b/wallee-sdk/lib/Model/SubscriptionAffiliateUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionAffiliateUpdate implements ModelInterface, ArrayAccess @@ -337,7 +337,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionChangeRequest.php b/wallee-sdk/lib/Model/SubscriptionChangeRequest.php index 0a1e31a..f87a2c9 100644 --- a/wallee-sdk/lib/Model/SubscriptionChangeRequest.php +++ b/wallee-sdk/lib/Model/SubscriptionChangeRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription change request allows to change a subscription. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionChangeRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionCharge.php b/wallee-sdk/lib/Model/SubscriptionCharge.php index e4c6fb7..513a019 100644 --- a/wallee-sdk/lib/Model/SubscriptionCharge.php +++ b/wallee-sdk/lib/Model/SubscriptionCharge.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription charge represents a single charge carried out for a particular subscription. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionCharge implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionChargeCreate.php b/wallee-sdk/lib/Model/SubscriptionChargeCreate.php index eb9dd65..16cee7a 100644 --- a/wallee-sdk/lib/Model/SubscriptionChargeCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionChargeCreate.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription charge represents a single charge carried out for a particular subscription. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionChargeCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionChargeProcessingType.php b/wallee-sdk/lib/Model/SubscriptionChargeProcessingType.php index 1a2314a..e655140 100644 --- a/wallee-sdk/lib/Model/SubscriptionChargeProcessingType.php +++ b/wallee-sdk/lib/Model/SubscriptionChargeProcessingType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionChargeProcessingType diff --git a/wallee-sdk/lib/Model/SubscriptionChargeState.php b/wallee-sdk/lib/Model/SubscriptionChargeState.php index 266197e..3652c4c 100644 --- a/wallee-sdk/lib/Model/SubscriptionChargeState.php +++ b/wallee-sdk/lib/Model/SubscriptionChargeState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionChargeState diff --git a/wallee-sdk/lib/Model/SubscriptionChargeType.php b/wallee-sdk/lib/Model/SubscriptionChargeType.php index cd24d56..e6f4152 100644 --- a/wallee-sdk/lib/Model/SubscriptionChargeType.php +++ b/wallee-sdk/lib/Model/SubscriptionChargeType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionChargeType diff --git a/wallee-sdk/lib/Model/SubscriptionComponentConfiguration.php b/wallee-sdk/lib/Model/SubscriptionComponentConfiguration.php index 8fb40a7..4c0851b 100644 --- a/wallee-sdk/lib/Model/SubscriptionComponentConfiguration.php +++ b/wallee-sdk/lib/Model/SubscriptionComponentConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionComponentConfiguration implements ModelInterface, ArrayAccess @@ -50,7 +50,10 @@ class SubscriptionComponentConfiguration implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'component' => 'int', - 'quantity' => 'float' + 'id' => 'int', + 'linked_space_id' => 'int', + 'quantity' => 'float', + 'version' => 'int' ]; /** @@ -60,7 +63,10 @@ class SubscriptionComponentConfiguration implements ModelInterface, ArrayAccess */ protected static $swaggerFormats = [ 'component' => 'int64', - 'quantity' => null + 'id' => 'int64', + 'linked_space_id' => 'int64', + 'quantity' => null, + 'version' => 'int32' ]; /** @@ -71,7 +77,10 @@ class SubscriptionComponentConfiguration implements ModelInterface, ArrayAccess */ protected static $attributeMap = [ 'component' => 'component', - 'quantity' => 'quantity' + 'id' => 'id', + 'linked_space_id' => 'linkedSpaceId', + 'quantity' => 'quantity', + 'version' => 'version' ]; /** @@ -81,7 +90,10 @@ class SubscriptionComponentConfiguration implements ModelInterface, ArrayAccess */ protected static $setters = [ 'component' => 'setComponent', - 'quantity' => 'setQuantity' + 'id' => 'setId', + 'linked_space_id' => 'setLinkedSpaceId', + 'quantity' => 'setQuantity', + 'version' => 'setVersion' ]; /** @@ -91,7 +103,10 @@ class SubscriptionComponentConfiguration implements ModelInterface, ArrayAccess */ protected static $getters = [ 'component' => 'getComponent', - 'quantity' => 'getQuantity' + 'id' => 'getId', + 'linked_space_id' => 'getLinkedSpaceId', + 'quantity' => 'getQuantity', + 'version' => 'getVersion' ]; @@ -114,8 +129,14 @@ public function __construct(array $data = null) $this->container['component'] = isset($data['component']) ? $data['component'] : null; + $this->container['id'] = isset($data['id']) ? $data['id'] : null; + + $this->container['linked_space_id'] = isset($data['linked_space_id']) ? $data['linked_space_id'] : null; + $this->container['quantity'] = isset($data['quantity']) ? $data['quantity'] : null; + $this->container['version'] = isset($data['version']) ? $data['version'] : null; + } /** @@ -232,6 +253,56 @@ public function setComponent($component) } + /** + * Gets id + * + * @return int + */ + public function getId() + { + return $this->container['id']; + } + + /** + * Sets id + * + * @param int $id A unique identifier for the object. + * + * @return $this + */ + public function setId($id) + { + $this->container['id'] = $id; + + return $this; + } + + + /** + * Gets linked_space_id + * + * @return int + */ + public function getLinkedSpaceId() + { + return $this->container['linked_space_id']; + } + + /** + * Sets linked_space_id + * + * @param int $linked_space_id The ID of the space this object belongs to. + * + * @return $this + */ + public function setLinkedSpaceId($linked_space_id) + { + $this->container['linked_space_id'] = $linked_space_id; + + return $this; + } + + /** * Gets quantity * @@ -256,6 +327,31 @@ public function setQuantity($quantity) return $this; } + + /** + * Gets version + * + * @return int + */ + public function getVersion() + { + return $this->container['version']; + } + + /** + * Sets version + * + * @param int $version The version is used for optimistic locking and incremented whenever the object is updated. + * + * @return $this + */ + public function setVersion($version) + { + $this->container['version'] = $version; + + return $this; + } + /** * Returns true if offset exists. False otherwise. * diff --git a/wallee-sdk/lib/Model/SubscriptionComponentReferenceConfiguration.php b/wallee-sdk/lib/Model/SubscriptionComponentReferenceConfiguration.php index a7571b6..68c1a04 100644 --- a/wallee-sdk/lib/Model/SubscriptionComponentReferenceConfiguration.php +++ b/wallee-sdk/lib/Model/SubscriptionComponentReferenceConfiguration.php @@ -29,7 +29,7 @@ * @category Class * @description The component reference configuration adjusts the product component for a particular subscription. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionComponentReferenceConfiguration implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionCreateRequest.php b/wallee-sdk/lib/Model/SubscriptionCreateRequest.php index 88921db..0e216a4 100644 --- a/wallee-sdk/lib/Model/SubscriptionCreateRequest.php +++ b/wallee-sdk/lib/Model/SubscriptionCreateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription create request holds all the data required to create a new subscription. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionCreateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionLedgerEntry.php b/wallee-sdk/lib/Model/SubscriptionLedgerEntry.php index 3263ba2..2c802a3 100644 --- a/wallee-sdk/lib/Model/SubscriptionLedgerEntry.php +++ b/wallee-sdk/lib/Model/SubscriptionLedgerEntry.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription ledger entry represents a single change on the subscription balance. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionLedgerEntry implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionLedgerEntryCreate.php b/wallee-sdk/lib/Model/SubscriptionLedgerEntryCreate.php index dfb5c2a..6c069d6 100644 --- a/wallee-sdk/lib/Model/SubscriptionLedgerEntryCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionLedgerEntryCreate.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription ledger entry represents a single change on the subscription balance. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionLedgerEntryCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionLedgerEntryState.php b/wallee-sdk/lib/Model/SubscriptionLedgerEntryState.php index d86c107..1a330ce 100644 --- a/wallee-sdk/lib/Model/SubscriptionLedgerEntryState.php +++ b/wallee-sdk/lib/Model/SubscriptionLedgerEntryState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionLedgerEntryState diff --git a/wallee-sdk/lib/Model/SubscriptionMetric.php b/wallee-sdk/lib/Model/SubscriptionMetric.php index e03de65..bb001f0 100644 --- a/wallee-sdk/lib/Model/SubscriptionMetric.php +++ b/wallee-sdk/lib/Model/SubscriptionMetric.php @@ -29,7 +29,7 @@ * @category Class * @description A metric represents the usage of a resource that can be measured. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetric implements ModelInterface, ArrayAccess @@ -49,10 +49,10 @@ class SubscriptionMetric implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'description' => 'map[string,string]', 'id' => 'int', 'linked_space_id' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'planned_purge_date' => '\DateTime', 'state' => '\Wallee\Sdk\Model\CreationEntityState', 'type' => '\Wallee\Sdk\Model\SubscriptionMetricType', @@ -252,7 +252,7 @@ public function valid() /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getDescription() { @@ -262,7 +262,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $description + * @param map[string,string] $description * * @return $this */ @@ -327,7 +327,7 @@ public function setLinkedSpaceId($linked_space_id) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -337,7 +337,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name + * @param map[string,string] $name * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionMetricActive.php b/wallee-sdk/lib/Model/SubscriptionMetricActive.php index 7b81344..512b3c9 100644 --- a/wallee-sdk/lib/Model/SubscriptionMetricActive.php +++ b/wallee-sdk/lib/Model/SubscriptionMetricActive.php @@ -27,7 +27,7 @@ * @category Class * @description A metric represents the usage of a resource that can be measured. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricActive extends SubscriptionMetricUpdate diff --git a/wallee-sdk/lib/Model/SubscriptionMetricCreate.php b/wallee-sdk/lib/Model/SubscriptionMetricCreate.php index 0d66269..968fedb 100644 --- a/wallee-sdk/lib/Model/SubscriptionMetricCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionMetricCreate.php @@ -27,7 +27,7 @@ * @category Class * @description A metric represents the usage of a resource that can be measured. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricCreate extends AbstractSubscriptionMetricUpdate diff --git a/wallee-sdk/lib/Model/SubscriptionMetricType.php b/wallee-sdk/lib/Model/SubscriptionMetricType.php index f49441a..e014a13 100644 --- a/wallee-sdk/lib/Model/SubscriptionMetricType.php +++ b/wallee-sdk/lib/Model/SubscriptionMetricType.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription metric type identifies the type of the metric. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricType implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionMetricUpdate.php b/wallee-sdk/lib/Model/SubscriptionMetricUpdate.php index 41638d1..219221c 100644 --- a/wallee-sdk/lib/Model/SubscriptionMetricUpdate.php +++ b/wallee-sdk/lib/Model/SubscriptionMetricUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description A metric represents the usage of a resource that can be measured. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricUpdate implements ModelInterface, ArrayAccess @@ -51,8 +51,8 @@ class SubscriptionMetricUpdate implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'id' => 'int', 'version' => 'int', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate' + 'description' => 'map[string,string]', + 'name' => 'map[string,string]' ]; /** @@ -280,7 +280,7 @@ public function setVersion($version) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getDescription() { @@ -290,7 +290,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $description + * @param map[string,string] $description * * @return $this */ @@ -305,7 +305,7 @@ public function setDescription($description) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -315,7 +315,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name + * @param map[string,string] $name * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionMetricUsageReport.php b/wallee-sdk/lib/Model/SubscriptionMetricUsageReport.php index 646f770..6ffbb0a 100644 --- a/wallee-sdk/lib/Model/SubscriptionMetricUsageReport.php +++ b/wallee-sdk/lib/Model/SubscriptionMetricUsageReport.php @@ -29,7 +29,7 @@ * @category Class * @description The metric usage is the actual usage of a metric for a particular subscription as collected by an external application. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricUsageReport implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionMetricUsageReportCreate.php b/wallee-sdk/lib/Model/SubscriptionMetricUsageReportCreate.php index a401487..2e55d91 100644 --- a/wallee-sdk/lib/Model/SubscriptionMetricUsageReportCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionMetricUsageReportCreate.php @@ -29,7 +29,7 @@ * @category Class * @description The metric usage is the actual usage of a metric for a particular subscription as collected by an external application. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricUsageReportCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionPending.php b/wallee-sdk/lib/Model/SubscriptionPending.php index f6d14ac..9833f2f 100644 --- a/wallee-sdk/lib/Model/SubscriptionPending.php +++ b/wallee-sdk/lib/Model/SubscriptionPending.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionPending extends SubscriptionUpdate diff --git a/wallee-sdk/lib/Model/SubscriptionPeriodBill.php b/wallee-sdk/lib/Model/SubscriptionPeriodBill.php index bf34b15..e89a08a 100644 --- a/wallee-sdk/lib/Model/SubscriptionPeriodBill.php +++ b/wallee-sdk/lib/Model/SubscriptionPeriodBill.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionPeriodBill implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionPeriodBillState.php b/wallee-sdk/lib/Model/SubscriptionPeriodBillState.php index bd014fb..8ab084d 100644 --- a/wallee-sdk/lib/Model/SubscriptionPeriodBillState.php +++ b/wallee-sdk/lib/Model/SubscriptionPeriodBillState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionPeriodBillState diff --git a/wallee-sdk/lib/Model/SubscriptionProduct.php b/wallee-sdk/lib/Model/SubscriptionProduct.php index f0b78af..6b026a5 100644 --- a/wallee-sdk/lib/Model/SubscriptionProduct.php +++ b/wallee-sdk/lib/Model/SubscriptionProduct.php @@ -29,7 +29,7 @@ * @category Class * @description A subscription product represents a product to which a subscriber can subscribe to. A product defines how much the subscription costs and in what cycles the subscribe is charged. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProduct implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionProductActive.php b/wallee-sdk/lib/Model/SubscriptionProductActive.php index d7e4680..736eaa2 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductActive.php +++ b/wallee-sdk/lib/Model/SubscriptionProductActive.php @@ -27,7 +27,7 @@ * @category Class * @description A subscription product represents a product to which a subscriber can subscribe to. A product defines how much the subscription costs and in what cycles the subscribe is charged. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductActive extends AbstractSubscriptionProductActive diff --git a/wallee-sdk/lib/Model/SubscriptionProductComponent.php b/wallee-sdk/lib/Model/SubscriptionProductComponent.php index 4e31f56..727d0a3 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductComponent.php +++ b/wallee-sdk/lib/Model/SubscriptionProductComponent.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponent implements ModelInterface, ArrayAccess @@ -52,12 +52,12 @@ class SubscriptionProductComponent implements ModelInterface, ArrayAccess 'component_change_weight' => 'int', 'component_group' => '\Wallee\Sdk\Model\SubscriptionProductComponentGroup', 'default_component' => 'bool', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'description' => 'map[string,string]', 'id' => 'int', 'linked_space_id' => 'int', 'maximal_quantity' => 'float', 'minimal_quantity' => 'float', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'quantity_step' => 'float', 'reference' => '\Wallee\Sdk\Model\SubscriptionProductComponentReference', 'sort_order' => 'int', @@ -369,7 +369,7 @@ public function setDefaultComponent($default_component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getDescription() { @@ -379,7 +379,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $description The component description may contain a longer description which gives the subscriber a better understanding of what the component contains. + * @param map[string,string] $description The component description may contain a longer description which gives the subscriber a better understanding of what the component contains. * * @return $this */ @@ -494,7 +494,7 @@ public function setMinimalQuantity($minimal_quantity) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -504,7 +504,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name The component name is shown to the subscriber. It should describe in few words what the component does contain. + * @param map[string,string] $name The component name is shown to the subscriber. It should describe in few words what the component does contain. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionProductComponentGroup.php b/wallee-sdk/lib/Model/SubscriptionProductComponentGroup.php index 0e4d96a..1c759d6 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductComponentGroup.php +++ b/wallee-sdk/lib/Model/SubscriptionProductComponentGroup.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponentGroup implements ModelInterface, ArrayAccess @@ -51,7 +51,7 @@ class SubscriptionProductComponentGroup implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'id' => 'int', 'linked_space_id' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'optional' => 'bool', 'product_version' => '\Wallee\Sdk\Model\SubscriptionProductVersion', 'sort_order' => 'int', @@ -295,7 +295,7 @@ public function setLinkedSpaceId($linked_space_id) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -305,7 +305,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name The component group name will be shown when the components are selected. This can be visible to the subscriber. + * @param map[string,string] $name The component group name will be shown when the components are selected. This can be visible to the subscriber. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionProductComponentGroupUpdate.php b/wallee-sdk/lib/Model/SubscriptionProductComponentGroupUpdate.php index 3a4bdb0..45bcd68 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductComponentGroupUpdate.php +++ b/wallee-sdk/lib/Model/SubscriptionProductComponentGroupUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponentGroupUpdate implements ModelInterface, ArrayAccess @@ -51,7 +51,7 @@ class SubscriptionProductComponentGroupUpdate implements ModelInterface, ArrayAc protected static $swaggerTypes = [ 'id' => 'int', 'version' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'name' => 'map[string,string]', 'optional' => 'bool', 'product_version' => 'int', 'sort_order' => 'int' @@ -294,7 +294,7 @@ public function setVersion($version) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -304,7 +304,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name The component group name will be shown when the components are selected. This can be visible to the subscriber. + * @param map[string,string] $name The component group name will be shown when the components are selected. This can be visible to the subscriber. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionProductComponentReference.php b/wallee-sdk/lib/Model/SubscriptionProductComponentReference.php index 7489104..d84d9ca 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductComponentReference.php +++ b/wallee-sdk/lib/Model/SubscriptionProductComponentReference.php @@ -29,7 +29,7 @@ * @category Class * @description The product component reference binds components from different product versions together. By binding them together the product version migration can be realized. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponentReference implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionProductComponentReferenceState.php b/wallee-sdk/lib/Model/SubscriptionProductComponentReferenceState.php index 332534e..9ebed70 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductComponentReferenceState.php +++ b/wallee-sdk/lib/Model/SubscriptionProductComponentReferenceState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponentReferenceState diff --git a/wallee-sdk/lib/Model/SubscriptionProductComponentUpdate.php b/wallee-sdk/lib/Model/SubscriptionProductComponentUpdate.php index 02f0061..3dc2d61 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductComponentUpdate.php +++ b/wallee-sdk/lib/Model/SubscriptionProductComponentUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponentUpdate implements ModelInterface, ArrayAccess @@ -54,10 +54,10 @@ class SubscriptionProductComponentUpdate implements ModelInterface, ArrayAccess 'component_change_weight' => 'int', 'component_group' => 'int', 'default_component' => 'bool', - 'description' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'description' => 'map[string,string]', 'maximal_quantity' => 'float', 'minimal_quantity' => 'float', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'name' => 'map[string,string]', 'quantity_step' => 'float', 'reference' => 'int', 'sort_order' => 'int', @@ -418,7 +418,7 @@ public function setDefaultComponent($default_component) /** * Gets description * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getDescription() { @@ -428,7 +428,7 @@ public function getDescription() /** * Sets description * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $description The component description may contain a longer description which gives the subscriber a better understanding of what the component contains. + * @param map[string,string] $description The component description may contain a longer description which gives the subscriber a better understanding of what the component contains. * * @return $this */ @@ -493,7 +493,7 @@ public function setMinimalQuantity($minimal_quantity) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -503,7 +503,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name The component name is shown to the subscriber. It should describe in few words what the component does contain. + * @param map[string,string] $name The component name is shown to the subscriber. It should describe in few words what the component does contain. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionProductCreate.php b/wallee-sdk/lib/Model/SubscriptionProductCreate.php index 47d481c..8690bf2 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionProductCreate.php @@ -27,7 +27,7 @@ * @category Class * @description A subscription product represents a product to which a subscriber can subscribe to. A product defines how much the subscription costs and in what cycles the subscribe is charged. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductCreate extends AbstractSubscriptionProductActive diff --git a/wallee-sdk/lib/Model/SubscriptionProductRetirement.php b/wallee-sdk/lib/Model/SubscriptionProductRetirement.php index 3c79cba..dfe3be9 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductRetirement.php +++ b/wallee-sdk/lib/Model/SubscriptionProductRetirement.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductRetirement implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionProductRetirementCreate.php b/wallee-sdk/lib/Model/SubscriptionProductRetirementCreate.php index 9038c0d..41e7f34 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductRetirementCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionProductRetirementCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductRetirementCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionProductState.php b/wallee-sdk/lib/Model/SubscriptionProductState.php index 4efc99e..5381d5b 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductState.php +++ b/wallee-sdk/lib/Model/SubscriptionProductState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductState diff --git a/wallee-sdk/lib/Model/SubscriptionProductVersion.php b/wallee-sdk/lib/Model/SubscriptionProductVersion.php index 8481056..4abafd7 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductVersion.php +++ b/wallee-sdk/lib/Model/SubscriptionProductVersion.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductVersion implements ModelInterface, ArrayAccess @@ -59,7 +59,7 @@ class SubscriptionProductVersion implements ModelInterface, ArrayAccess 'increment_number' => 'int', 'linked_space_id' => 'int', 'minimal_number_of_periods' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedString', + 'name' => 'map[string,string]', 'number_of_notice_periods' => 'int', 'obsoleted_on' => '\DateTime', 'planned_purge_date' => '\DateTime', @@ -597,7 +597,7 @@ public function setMinimalNumberOfPeriods($minimal_number_of_periods) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedString + * @return map[string,string] */ public function getName() { @@ -607,7 +607,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedString $name The product version name is the name of the product which is shown to the user for the version. When the visible product name should be changed for a particular product a new version has to be created which contains the new name of the product. + * @param map[string,string] $name The product version name is the name of the product which is shown to the user for the version. When the visible product name should be changed for a particular product a new version has to be created which contains the new name of the product. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionProductVersionPending.php b/wallee-sdk/lib/Model/SubscriptionProductVersionPending.php index 9562e79..29bd8fc 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductVersionPending.php +++ b/wallee-sdk/lib/Model/SubscriptionProductVersionPending.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductVersionPending implements ModelInterface, ArrayAccess @@ -56,7 +56,7 @@ class SubscriptionProductVersionPending implements ModelInterface, ArrayAccess 'default_currency' => 'string', 'enabled_currencies' => 'string[]', 'minimal_number_of_periods' => 'int', - 'name' => '\Wallee\Sdk\Model\DatabaseTranslatedStringCreate', + 'name' => 'map[string,string]', 'number_of_notice_periods' => 'int', 'product' => 'int', 'state' => '\Wallee\Sdk\Model\SubscriptionProductVersionState', @@ -461,7 +461,7 @@ public function setMinimalNumberOfPeriods($minimal_number_of_periods) /** * Gets name * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringCreate + * @return map[string,string] */ public function getName() { @@ -471,7 +471,7 @@ public function getName() /** * Sets name * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringCreate $name The product version name is the name of the product which is shown to the user for the version. When the visible product name should be changed for a particular product a new version has to be created which contains the new name of the product. + * @param map[string,string] $name The product version name is the name of the product which is shown to the user for the version. When the visible product name should be changed for a particular product a new version has to be created which contains the new name of the product. * * @return $this */ diff --git a/wallee-sdk/lib/Model/SubscriptionProductVersionRetirement.php b/wallee-sdk/lib/Model/SubscriptionProductVersionRetirement.php index 1e1fd27..b882e65 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductVersionRetirement.php +++ b/wallee-sdk/lib/Model/SubscriptionProductVersionRetirement.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductVersionRetirement implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionProductVersionRetirementCreate.php b/wallee-sdk/lib/Model/SubscriptionProductVersionRetirementCreate.php index 4793042..ab45364 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductVersionRetirementCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionProductVersionRetirementCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductVersionRetirementCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionProductVersionState.php b/wallee-sdk/lib/Model/SubscriptionProductVersionState.php index 731c6d8..7565edd 100644 --- a/wallee-sdk/lib/Model/SubscriptionProductVersionState.php +++ b/wallee-sdk/lib/Model/SubscriptionProductVersionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductVersionState diff --git a/wallee-sdk/lib/Model/SubscriptionState.php b/wallee-sdk/lib/Model/SubscriptionState.php index eac6c7f..8a59f82 100644 --- a/wallee-sdk/lib/Model/SubscriptionState.php +++ b/wallee-sdk/lib/Model/SubscriptionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionState diff --git a/wallee-sdk/lib/Model/SubscriptionSuspension.php b/wallee-sdk/lib/Model/SubscriptionSuspension.php index 68653cf..48073bd 100644 --- a/wallee-sdk/lib/Model/SubscriptionSuspension.php +++ b/wallee-sdk/lib/Model/SubscriptionSuspension.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionSuspension implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionSuspensionAction.php b/wallee-sdk/lib/Model/SubscriptionSuspensionAction.php index 052ee30..6ff8b66 100644 --- a/wallee-sdk/lib/Model/SubscriptionSuspensionAction.php +++ b/wallee-sdk/lib/Model/SubscriptionSuspensionAction.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionSuspensionAction diff --git a/wallee-sdk/lib/Model/SubscriptionSuspensionCreate.php b/wallee-sdk/lib/Model/SubscriptionSuspensionCreate.php index 7847f43..f8b6436 100644 --- a/wallee-sdk/lib/Model/SubscriptionSuspensionCreate.php +++ b/wallee-sdk/lib/Model/SubscriptionSuspensionCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionSuspensionCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionSuspensionReason.php b/wallee-sdk/lib/Model/SubscriptionSuspensionReason.php index 4e4c7b9..8222468 100644 --- a/wallee-sdk/lib/Model/SubscriptionSuspensionReason.php +++ b/wallee-sdk/lib/Model/SubscriptionSuspensionReason.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionSuspensionReason diff --git a/wallee-sdk/lib/Model/SubscriptionSuspensionRunning.php b/wallee-sdk/lib/Model/SubscriptionSuspensionRunning.php index 37a3cac..324c772 100644 --- a/wallee-sdk/lib/Model/SubscriptionSuspensionRunning.php +++ b/wallee-sdk/lib/Model/SubscriptionSuspensionRunning.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionSuspensionRunning extends SubscriptionSuspension diff --git a/wallee-sdk/lib/Model/SubscriptionSuspensionState.php b/wallee-sdk/lib/Model/SubscriptionSuspensionState.php index 8b76fa5..f47e9ea 100644 --- a/wallee-sdk/lib/Model/SubscriptionSuspensionState.php +++ b/wallee-sdk/lib/Model/SubscriptionSuspensionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionSuspensionState diff --git a/wallee-sdk/lib/Model/SubscriptionUpdate.php b/wallee-sdk/lib/Model/SubscriptionUpdate.php index ace1466..a58da37 100644 --- a/wallee-sdk/lib/Model/SubscriptionUpdate.php +++ b/wallee-sdk/lib/Model/SubscriptionUpdate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionUpdate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionUpdateRequest.php b/wallee-sdk/lib/Model/SubscriptionUpdateRequest.php index aad2d69..7aa083b 100644 --- a/wallee-sdk/lib/Model/SubscriptionUpdateRequest.php +++ b/wallee-sdk/lib/Model/SubscriptionUpdateRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The subscription update request allows to change a subscription properites. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionUpdateRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionVersion.php b/wallee-sdk/lib/Model/SubscriptionVersion.php index 23a9c49..0bcaf9c 100644 --- a/wallee-sdk/lib/Model/SubscriptionVersion.php +++ b/wallee-sdk/lib/Model/SubscriptionVersion.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionVersion implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/SubscriptionVersionState.php b/wallee-sdk/lib/Model/SubscriptionVersionState.php index 0a5860a..161cf32 100644 --- a/wallee-sdk/lib/Model/SubscriptionVersionState.php +++ b/wallee-sdk/lib/Model/SubscriptionVersionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionVersionState diff --git a/wallee-sdk/lib/Model/Tax.php b/wallee-sdk/lib/Model/Tax.php index ab5f498..9b494fb 100644 --- a/wallee-sdk/lib/Model/Tax.php +++ b/wallee-sdk/lib/Model/Tax.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Tax implements ModelInterface, ArrayAccess @@ -228,7 +228,7 @@ public function getRate() /** * Sets rate * - * @param float $rate + * @param float $rate The tax rate to be applied. * * @return $this */ @@ -253,7 +253,7 @@ public function getTitle() /** * Sets title * - * @param string $title + * @param string $title The name of the tax. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TaxCalculation.php b/wallee-sdk/lib/Model/TaxCalculation.php index 3440a80..10ab69b 100644 --- a/wallee-sdk/lib/Model/TaxCalculation.php +++ b/wallee-sdk/lib/Model/TaxCalculation.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TaxCalculation diff --git a/wallee-sdk/lib/Model/TaxClass.php b/wallee-sdk/lib/Model/TaxClass.php index 83fb23a..6518b77 100644 --- a/wallee-sdk/lib/Model/TaxClass.php +++ b/wallee-sdk/lib/Model/TaxClass.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TaxClass implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TaxCreate.php b/wallee-sdk/lib/Model/TaxCreate.php index 9dded8e..62d4e82 100644 --- a/wallee-sdk/lib/Model/TaxCreate.php +++ b/wallee-sdk/lib/Model/TaxCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TaxCreate implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getRate() /** * Sets rate * - * @param float $rate + * @param float $rate The tax rate to be applied. * * @return $this */ @@ -259,7 +259,7 @@ public function getTitle() /** * Sets title * - * @param string $title + * @param string $title The name of the tax. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TenantDatabase.php b/wallee-sdk/lib/Model/TenantDatabase.php index efe935b..136345b 100644 --- a/wallee-sdk/lib/Model/TenantDatabase.php +++ b/wallee-sdk/lib/Model/TenantDatabase.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TenantDatabase implements ModelInterface, ArrayAccess @@ -256,7 +256,7 @@ public function getName() /** * Sets name * - * @param string $name The name of the database. + * @param string $name The name used to identify the database. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TerminalReceiptFetchRequest.php b/wallee-sdk/lib/Model/TerminalReceiptFetchRequest.php index 28eba8e..499f5c8 100644 --- a/wallee-sdk/lib/Model/TerminalReceiptFetchRequest.php +++ b/wallee-sdk/lib/Model/TerminalReceiptFetchRequest.php @@ -29,7 +29,7 @@ * @category Class * @description The receipt fetch request allows to retrieve the receipt documents for a terminal transaction. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TerminalReceiptFetchRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TerminalReceiptFormat.php b/wallee-sdk/lib/Model/TerminalReceiptFormat.php index 0e854dc..b56ab44 100644 --- a/wallee-sdk/lib/Model/TerminalReceiptFormat.php +++ b/wallee-sdk/lib/Model/TerminalReceiptFormat.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TerminalReceiptFormat diff --git a/wallee-sdk/lib/Model/Token.php b/wallee-sdk/lib/Model/Token.php index 90bff7f..9efd1be 100644 --- a/wallee-sdk/lib/Model/Token.php +++ b/wallee-sdk/lib/Model/Token.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Token implements ModelInterface, ArrayAccess @@ -330,7 +330,7 @@ public function getCustomerEmailAddress() /** * Sets customer_email_address * - * @param string $customer_email_address The customer email address is the email address of the customer. + * @param string $customer_email_address The customer's email address. * * @return $this */ @@ -359,7 +359,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param string $customer_id The customer ID identifies the customer in the merchant system. In case the customer ID has been provided it has to correspond with the customer ID provided on the transaction. The customer ID will not be changed automatically. The merchant system has to provide it. + * @param string $customer_id The unique identifier of the customer in the external system. * * @return $this */ @@ -384,7 +384,7 @@ public function getEnabledForOneClickPayment() /** * Sets enabled_for_one_click_payment * - * @param bool $enabled_for_one_click_payment When a token is enabled for one-click payments the buyer will be able to select the token within the iFrame or on the payment page to pay with the token. The usage of the token will reduce the number of steps the buyer has to go through. The buyer is linked via the customer ID on the transaction with the token. Means the token will be visible for buyers with the same customer ID. Additionally the payment method has to be configured to allow the one-click payments. + * @param bool $enabled_for_one_click_payment Whether the token is enabled for one-click payments, which simplify the payment process for the customer. One-click tokens are linked to customers via the customer ID. * * @return $this */ @@ -559,7 +559,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone defines in which time zone the customer is located in. The time zone may affects how dates are formatted when interacting with the customer. + * @param string $time_zone The customer's time zone, which affects how dates and times are formatted when communicating with the customer. * * @return $this */ @@ -584,7 +584,7 @@ public function getTokenReference() /** * Sets token_reference * - * @param string $token_reference Use something that it is easy to identify and may help you find the token (e.g. customer id, email address). + * @param string $token_reference The reference used to identify the payment token (e.g. the customer's ID or email address). * * @return $this */ diff --git a/wallee-sdk/lib/Model/TokenCreate.php b/wallee-sdk/lib/Model/TokenCreate.php index b6fc240..016c391 100644 --- a/wallee-sdk/lib/Model/TokenCreate.php +++ b/wallee-sdk/lib/Model/TokenCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenCreate extends AbstractTokenUpdate diff --git a/wallee-sdk/lib/Model/TokenUpdate.php b/wallee-sdk/lib/Model/TokenUpdate.php index 1ec4238..7e36bc9 100644 --- a/wallee-sdk/lib/Model/TokenUpdate.php +++ b/wallee-sdk/lib/Model/TokenUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenUpdate extends AbstractTokenUpdate diff --git a/wallee-sdk/lib/Model/TokenVersion.php b/wallee-sdk/lib/Model/TokenVersion.php index 027edc7..fa71e95 100644 --- a/wallee-sdk/lib/Model/TokenVersion.php +++ b/wallee-sdk/lib/Model/TokenVersion.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenVersion implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TokenVersionState.php b/wallee-sdk/lib/Model/TokenVersionState.php index 8f31151..8098bb3 100644 --- a/wallee-sdk/lib/Model/TokenVersionState.php +++ b/wallee-sdk/lib/Model/TokenVersionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenVersionState diff --git a/wallee-sdk/lib/Model/TokenVersionType.php b/wallee-sdk/lib/Model/TokenVersionType.php index 453eda3..9e236da 100644 --- a/wallee-sdk/lib/Model/TokenVersionType.php +++ b/wallee-sdk/lib/Model/TokenVersionType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenVersionType implements ModelInterface, ArrayAccess @@ -234,7 +234,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -309,7 +309,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TokenizationMode.php b/wallee-sdk/lib/Model/TokenizationMode.php index 7622a7d..93e3d29 100644 --- a/wallee-sdk/lib/Model/TokenizationMode.php +++ b/wallee-sdk/lib/Model/TokenizationMode.php @@ -27,7 +27,7 @@ * @category Class * @description The tokenization mode controls how the tokenization of payment information is applied on the transaction. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenizationMode diff --git a/wallee-sdk/lib/Model/TokenizedCardData.php b/wallee-sdk/lib/Model/TokenizedCardData.php index 3c180bf..dc34010 100644 --- a/wallee-sdk/lib/Model/TokenizedCardData.php +++ b/wallee-sdk/lib/Model/TokenizedCardData.php @@ -29,7 +29,7 @@ * @category Class * @description This model holds the card data in plain. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenizedCardData implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TokenizedCardDataCreate.php b/wallee-sdk/lib/Model/TokenizedCardDataCreate.php index 89301e6..17642b5 100644 --- a/wallee-sdk/lib/Model/TokenizedCardDataCreate.php +++ b/wallee-sdk/lib/Model/TokenizedCardDataCreate.php @@ -29,7 +29,7 @@ * @category Class * @description This model holds the card data in plain. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenizedCardDataCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/Transaction.php b/wallee-sdk/lib/Model/Transaction.php index cbfca50..678b597 100644 --- a/wallee-sdk/lib/Model/Transaction.php +++ b/wallee-sdk/lib/Model/Transaction.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class Transaction implements ModelInterface, ArrayAccess @@ -736,7 +736,7 @@ public function getAcceptHeader() /** * Sets accept_header * - * @param string $accept_header + * @param string $accept_header The 'Accept' header of the customer's web browser. * * @return $this */ @@ -761,7 +761,7 @@ public function getAcceptLanguageHeader() /** * Sets accept_language_header * - * @param string $accept_language_header The accept language contains the header which indicates the language preferences of the buyer. + * @param string $accept_language_header The 'Accept Language' header of the customer's web browser. * * @return $this */ @@ -786,7 +786,7 @@ public function getAllowedPaymentMethodBrands() /** * Sets allowed_payment_method_brands * - * @param int[] $allowed_payment_method_brands + * @param int[] $allowed_payment_method_brands The payment method brands that can be used to authorize the transaction. * * @return $this */ @@ -811,7 +811,7 @@ public function getAllowedPaymentMethodConfigurations() /** * Sets allowed_payment_method_configurations * - * @param int[] $allowed_payment_method_configurations + * @param int[] $allowed_payment_method_configurations The payment method configurations that can be used to authorize the transaction. * * @return $this */ @@ -836,7 +836,7 @@ public function getAuthorizationAmount() /** * Sets authorization_amount * - * @param float $authorization_amount + * @param float $authorization_amount The sum of all line item prices including taxes in the transaction's currency. * * @return $this */ @@ -861,7 +861,7 @@ public function getAuthorizationEnvironment() /** * Sets authorization_environment * - * @param \Wallee\Sdk\Model\ChargeAttemptEnvironment $authorization_environment The environment in which this transaction was successfully authorized. + * @param \Wallee\Sdk\Model\ChargeAttemptEnvironment $authorization_environment The environment in which the transaction was authorized. * * @return $this */ @@ -911,7 +911,7 @@ public function getAuthorizationTimeoutOn() /** * Sets authorization_timeout_on * - * @param \DateTime $authorization_timeout_on This is the time on which the transaction will be timed out when it is not at least authorized. The timeout time may change over time. + * @param \DateTime $authorization_timeout_on The date and time when the transaction must be authorized, otherwise it will canceled. * * @return $this */ @@ -936,7 +936,7 @@ public function getAuthorizedOn() /** * Sets authorized_on * - * @param \DateTime $authorized_on + * @param \DateTime $authorized_on The date and time when the transaction was authorized. * * @return $this */ @@ -961,7 +961,7 @@ public function getAutoConfirmationEnabled() /** * Sets auto_confirmation_enabled * - * @param bool $auto_confirmation_enabled When auto confirmation is enabled the transaction can be confirmed by the user and does not require an explicit confirmation through the web service API. + * @param bool $auto_confirmation_enabled Whether the transaction can be confirmed automatically or whether this must be done explicitly via the API. Default is true. * * @return $this */ @@ -986,7 +986,7 @@ public function getBillingAddress() /** * Sets billing_address * - * @param \Wallee\Sdk\Model\Address $billing_address + * @param \Wallee\Sdk\Model\Address $billing_address The address associated with the payment method for invoicing and transaction processing purposes. * * @return $this */ @@ -1011,7 +1011,7 @@ public function getChargeRetryEnabled() /** * Sets charge_retry_enabled * - * @param bool $charge_retry_enabled When the charging of the customer fails we can retry the charging. This implies that we redirect the user back to the payment page which allows the customer to retry. By default we will retry. + * @param bool $charge_retry_enabled Whether the customer can make further payment attempts if the first one has failed. Default is true. * * @return $this */ @@ -1036,7 +1036,7 @@ public function getCompletedAmount() /** * Sets completed_amount * - * @param float $completed_amount The completed amount is the total amount which has been captured so far. + * @param float $completed_amount The total amount that was completed, in the transaction's currency. * * @return $this */ @@ -1061,7 +1061,7 @@ public function getCompletedOn() /** * Sets completed_on * - * @param \DateTime $completed_on + * @param \DateTime $completed_on The date and time when the transaction was completed. * * @return $this */ @@ -1086,7 +1086,7 @@ public function getCompletionBehavior() /** * Sets completion_behavior * - * @param \Wallee\Sdk\Model\TransactionCompletionBehavior $completion_behavior The completion behavior controls when the transaction is completed. + * @param \Wallee\Sdk\Model\TransactionCompletionBehavior $completion_behavior The behavior that controls when the transaction is completed. * * @return $this */ @@ -1111,7 +1111,7 @@ public function getCompletionTimeoutOn() /** * Sets completion_timeout_on * - * @param \DateTime $completion_timeout_on + * @param \DateTime $completion_timeout_on The date and time when the transaction is completed automatically. * * @return $this */ @@ -1136,7 +1136,7 @@ public function getConfirmedBy() /** * Sets confirmed_by * - * @param int $confirmed_by + * @param int $confirmed_by The ID of the user the transaction was confirmed by. * * @return $this */ @@ -1161,7 +1161,7 @@ public function getConfirmedOn() /** * Sets confirmed_on * - * @param \DateTime $confirmed_on + * @param \DateTime $confirmed_on The date and time when the transaction was created. * * @return $this */ @@ -1186,7 +1186,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by + * @param int $created_by The ID of the user the transaction was created by. * * @return $this */ @@ -1236,7 +1236,7 @@ public function getCurrency() /** * Sets currency * - * @param string $currency + * @param string $currency The three-letter code (ISO 4217 format) of the transaction's currency. * * @return $this */ @@ -1261,7 +1261,7 @@ public function getCustomerEmailAddress() /** * Sets customer_email_address * - * @param string $customer_email_address The customer email address is the email address of the customer. If no email address is provided on the shipping or billing address this address is used. + * @param string $customer_email_address The customer's email address. * * @return $this */ @@ -1290,7 +1290,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param string $customer_id + * @param string $customer_id The unique identifier of the customer in the external system. * * @return $this */ @@ -1315,7 +1315,7 @@ public function getCustomersPresence() /** * Sets customers_presence * - * @param \Wallee\Sdk\Model\CustomersPresence $customers_presence The customer's presence indicates what kind of authentication method was finally used during authorization of the transaction. If no value is provided, 'Virtually Present' is used by default. + * @param \Wallee\Sdk\Model\CustomersPresence $customers_presence The customer's presence indicates whether and in what way the transaction's customer is present. Default is VIRTUAL_PRESENT. * * @return $this */ @@ -1340,7 +1340,7 @@ public function getDeliveryDecisionMadeOn() /** * Sets delivery_decision_made_on * - * @param \DateTime $delivery_decision_made_on This date indicates when the decision has been made if a transaction should be delivered or not. + * @param \DateTime $delivery_decision_made_on This date and time when the decision was made as to whether the order should be shipped. * * @return $this */ @@ -1365,7 +1365,7 @@ public function getDeviceSessionIdentifier() /** * Sets device_session_identifier * - * @param string $device_session_identifier The device session identifier links the transaction with the session identifier provided in the URL of the device data JavaScript. This allows to link the transaction with the collected device data of the buyer. + * @param string $device_session_identifier Allows to link the transaction to the data collected from the customer's device. * * @return $this */ @@ -1397,7 +1397,7 @@ public function getEmailsDisabled() /** * Sets emails_disabled * - * @param bool $emails_disabled Flag indicating whether email sending is disabled for this particular transaction. Defaults to false. + * @param bool $emails_disabled Whether email sending is deactivated for the transaction. Default is false. * * @return $this */ @@ -1422,7 +1422,7 @@ public function getEndOfLife() /** * Sets end_of_life * - * @param \DateTime $end_of_life The transaction's end of life indicates the date from which on no operation can be carried out anymore. + * @param \DateTime $end_of_life The date and time when the transaction reaches its end of live. No further actions can be carried out at this time. * * @return $this */ @@ -1472,7 +1472,7 @@ public function getEnvironmentSelectionStrategy() /** * Sets environment_selection_strategy * - * @param \Wallee\Sdk\Model\TransactionEnvironmentSelectionStrategy $environment_selection_strategy The environment selection strategy determines how the environment (test or production) for processing the transaction is selected. + * @param \Wallee\Sdk\Model\TransactionEnvironmentSelectionStrategy $environment_selection_strategy The strategy for determining whether the transaction is to be processed in the test or production environment. * * @return $this */ @@ -1497,7 +1497,7 @@ public function getFailedOn() /** * Sets failed_on * - * @param \DateTime $failed_on + * @param \DateTime $failed_on The date and time when the transaction failed. * * @return $this */ @@ -1522,7 +1522,7 @@ public function getFailedUrl() /** * Sets failed_url * - * @param string $failed_url The user will be redirected to failed URL when the transaction could not be authorized or completed. In case no failed URL is specified a default failed page will be displayed. + * @param string $failed_url The URL to redirect the customer back to after they canceled or failed to authenticated their payment. * * @return $this */ @@ -1554,7 +1554,7 @@ public function getFailureReason() /** * Sets failure_reason * - * @param \Wallee\Sdk\Model\FailureReason $failure_reason The failure reason describes why the transaction failed. This is only provided when the transaction is marked as failed. + * @param \Wallee\Sdk\Model\FailureReason $failure_reason The reason for the failure of the transaction. * * @return $this */ @@ -1579,7 +1579,7 @@ public function getGroup() /** * Sets group * - * @param \Wallee\Sdk\Model\TransactionGroup $group + * @param \Wallee\Sdk\Model\TransactionGroup $group The group that the transaction belongs to. * * @return $this */ @@ -1629,7 +1629,7 @@ public function getInternetProtocolAddress() /** * Sets internet_protocol_address * - * @param string $internet_protocol_address The Internet Protocol (IP) address identifies the device of the buyer. + * @param string $internet_protocol_address The IP address of the customer's device. * * @return $this */ @@ -1654,7 +1654,7 @@ public function getInternetProtocolAddressCountry() /** * Sets internet_protocol_address_country * - * @param string $internet_protocol_address_country + * @param string $internet_protocol_address_country The country determined from the IP address of the customer's device. * * @return $this */ @@ -1679,7 +1679,7 @@ public function getInvoiceMerchantReference() /** * Sets invoice_merchant_reference * - * @param string $invoice_merchant_reference + * @param string $invoice_merchant_reference The merchant's reference used to identify the invoice. * * @return $this */ @@ -1708,7 +1708,7 @@ public function getJavaEnabled() /** * Sets java_enabled * - * @param bool $java_enabled + * @param bool $java_enabled Whether Java is enabled on the customer's web browser. * * @return $this */ @@ -1758,7 +1758,7 @@ public function getLineItems() /** * Sets line_items * - * @param \Wallee\Sdk\Model\LineItem[] $line_items + * @param \Wallee\Sdk\Model\LineItem[] $line_items The line items purchased by the customer. * * @return $this */ @@ -1808,7 +1808,7 @@ public function getMerchantReference() /** * Sets merchant_reference * - * @param string $merchant_reference + * @param string $merchant_reference The merchant's reference used to identify the transaction. * * @return $this */ @@ -1837,7 +1837,7 @@ public function getMetaData() /** * Sets meta_data * - * @param map[string,string] $meta_data Meta data allow to store additional data along the object. + * @param map[string,string] $meta_data Allow to store additional information about the object. * * @return $this */ @@ -1862,7 +1862,7 @@ public function getParent() /** * Sets parent * - * @param int $parent + * @param int $parent The parent transaction which was (partially) replaced by this transaction. * * @return $this */ @@ -1887,7 +1887,7 @@ public function getPaymentConnectorConfiguration() /** * Sets payment_connector_configuration * - * @param \Wallee\Sdk\Model\PaymentConnectorConfiguration $payment_connector_configuration + * @param \Wallee\Sdk\Model\PaymentConnectorConfiguration $payment_connector_configuration The payment connector configuration that was used to authorize the transaction. * * @return $this */ @@ -1937,7 +1937,7 @@ public function getProcessingOn() /** * Sets processing_on * - * @param \DateTime $processing_on + * @param \DateTime $processing_on The date and time when the processing of the transaction was started. * * @return $this */ @@ -1962,7 +1962,7 @@ public function getRefundedAmount() /** * Sets refunded_amount * - * @param float $refunded_amount The refunded amount is the total amount which has been refunded so far. + * @param float $refunded_amount The total amount that was refunded, in the transaction's currency. * * @return $this */ @@ -1987,7 +1987,7 @@ public function getScreenColorDepth() /** * Sets screen_color_depth * - * @param string $screen_color_depth + * @param string $screen_color_depth The screen color depth of the customer's web browser. * * @return $this */ @@ -2012,7 +2012,7 @@ public function getScreenHeight() /** * Sets screen_height * - * @param string $screen_height + * @param string $screen_height The screen height of the customer's web browser. * * @return $this */ @@ -2037,7 +2037,7 @@ public function getScreenWidth() /** * Sets screen_width * - * @param string $screen_width + * @param string $screen_width The screen width of the customer's web browser. * * @return $this */ @@ -2062,7 +2062,7 @@ public function getShippingAddress() /** * Sets shipping_address * - * @param \Wallee\Sdk\Model\Address $shipping_address + * @param \Wallee\Sdk\Model\Address $shipping_address The address to where the order will be shipped. * * @return $this */ @@ -2087,7 +2087,7 @@ public function getShippingMethod() /** * Sets shipping_method * - * @param string $shipping_method + * @param string $shipping_method The name of the shipping method used to ship the products. * * @return $this */ @@ -2116,7 +2116,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ @@ -2166,7 +2166,7 @@ public function getSuccessUrl() /** * Sets success_url * - * @param string $success_url The user will be redirected to success URL when the transaction could be authorized or completed. In case no success URL is specified a default success page will be displayed. + * @param string $success_url The URL to redirect the customer back to after they successfully authenticated their payment. * * @return $this */ @@ -2198,7 +2198,7 @@ public function getTerminal() /** * Sets terminal * - * @param \Wallee\Sdk\Model\PaymentTerminal $terminal The terminal on which the payment was processed. + * @param \Wallee\Sdk\Model\PaymentTerminal $terminal The payment terminal through which the payment was processed. * * @return $this */ @@ -2223,7 +2223,7 @@ public function getTimeZone() /** * Sets time_zone * - * @param string $time_zone The time zone defines in which time zone the customer is located in. The time zone may affects how dates are formatted when interacting with the customer. + * @param string $time_zone The customer's time zone, which affects how dates and times are formatted when communicating with the customer. * * @return $this */ @@ -2248,7 +2248,7 @@ public function getToken() /** * Sets token * - * @param \Wallee\Sdk\Model\Token $token + * @param \Wallee\Sdk\Model\Token $token The payment token that should be used to charge the customer. * * @return $this */ @@ -2273,7 +2273,7 @@ public function getTokenizationMode() /** * Sets tokenization_mode * - * @param \Wallee\Sdk\Model\TokenizationMode $tokenization_mode The tokenization mode controls if and how the tokenization of payment information is applied to the transaction. + * @param \Wallee\Sdk\Model\TokenizationMode $tokenization_mode The tokenization mode specifies whether and how the tokenization of payment information is applied to the transaction. * * @return $this */ @@ -2298,7 +2298,7 @@ public function getTotalAppliedFees() /** * Sets total_applied_fees * - * @param float $total_applied_fees The total applied fees is the sum of all fees that have been applied so far. + * @param float $total_applied_fees The total of all fees charged, in the transaction's currency. * * @return $this */ @@ -2323,7 +2323,7 @@ public function getTotalSettledAmount() /** * Sets total_settled_amount * - * @param float $total_settled_amount The total settled amount is the total amount which has been settled so far. + * @param float $total_settled_amount The total amount that was settled, in the transaction's currency. * * @return $this */ @@ -2348,7 +2348,7 @@ public function getUserAgentHeader() /** * Sets user_agent_header * - * @param string $user_agent_header The user agent header provides the exact string which contains the user agent of the buyer. + * @param string $user_agent_header The 'User Agent' header of the customer's web browser. * * @return $this */ @@ -2373,7 +2373,7 @@ public function getUserFailureMessage() /** * Sets user_failure_message * - * @param string $user_failure_message The failure message describes for an end user why the transaction is failed in the language of the user. This is only provided when the transaction is marked as failed. + * @param string $user_failure_message The message that can be displayed to the customer explaining why the transaction failed, in the customer's language. * * @return $this */ @@ -2398,7 +2398,7 @@ public function getUserInterfaceType() /** * Sets user_interface_type * - * @param \Wallee\Sdk\Model\TransactionUserInterfaceType $user_interface_type The user interface type defines through which user interface the transaction has been processed resp. created. + * @param \Wallee\Sdk\Model\TransactionUserInterfaceType $user_interface_type The type of user interface the customer used to provide the payment information. * * @return $this */ @@ -2448,7 +2448,7 @@ public function getWindowHeight() /** * Sets window_height * - * @param string $window_height + * @param string $window_height The window height of the customer's web browser. * * @return $this */ @@ -2473,7 +2473,7 @@ public function getWindowWidth() /** * Sets window_width * - * @param string $window_width + * @param string $window_width The window width of the customer's web browser. * * @return $this */ @@ -2498,7 +2498,7 @@ public function getYearsToKeep() /** * Sets years_to_keep * - * @param int $years_to_keep The number of years the transaction will be stored after it has been authorized. + * @param int $years_to_keep The number of years the transaction is kept after its authorization. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionAwareEntity.php b/wallee-sdk/lib/Model/TransactionAwareEntity.php index fe6d3a0..24c07ca 100644 --- a/wallee-sdk/lib/Model/TransactionAwareEntity.php +++ b/wallee-sdk/lib/Model/TransactionAwareEntity.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionAwareEntity implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TransactionComment.php b/wallee-sdk/lib/Model/TransactionComment.php index 1ce081d..b1a772a 100644 --- a/wallee-sdk/lib/Model/TransactionComment.php +++ b/wallee-sdk/lib/Model/TransactionComment.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionComment implements ModelInterface, ArrayAccess @@ -280,7 +280,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ @@ -309,7 +309,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by + * @param int $created_by The ID of the user the comment was created by. * * @return $this */ @@ -359,7 +359,7 @@ public function getEditedBy() /** * Sets edited_by * - * @param int $edited_by + * @param int $edited_by The ID of the user the comment was last updated by. * * @return $this */ @@ -384,7 +384,7 @@ public function getEditedOn() /** * Sets edited_on * - * @param \DateTime $edited_on The date on which the comment was last edited. + * @param \DateTime $edited_on The date and time when the comment was last updated. * * @return $this */ @@ -459,7 +459,7 @@ public function getPinned() /** * Sets pinned * - * @param bool $pinned + * @param bool $pinned Whether the comment is pinned to the top. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionCommentActive.php b/wallee-sdk/lib/Model/TransactionCommentActive.php index 0da0864..fe6f8d8 100644 --- a/wallee-sdk/lib/Model/TransactionCommentActive.php +++ b/wallee-sdk/lib/Model/TransactionCommentActive.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCommentActive extends AbstractTransactionCommentActive diff --git a/wallee-sdk/lib/Model/TransactionCommentCreate.php b/wallee-sdk/lib/Model/TransactionCommentCreate.php index 1d6afbe..c16fc9b 100644 --- a/wallee-sdk/lib/Model/TransactionCommentCreate.php +++ b/wallee-sdk/lib/Model/TransactionCommentCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCommentCreate extends AbstractTransactionCommentActive diff --git a/wallee-sdk/lib/Model/TransactionCompletion.php b/wallee-sdk/lib/Model/TransactionCompletion.php index e199212..d3421a2 100644 --- a/wallee-sdk/lib/Model/TransactionCompletion.php +++ b/wallee-sdk/lib/Model/TransactionCompletion.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCompletion extends TransactionAwareEntity @@ -923,7 +923,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionCompletionBehavior.php b/wallee-sdk/lib/Model/TransactionCompletionBehavior.php index c51161c..68dfe72 100644 --- a/wallee-sdk/lib/Model/TransactionCompletionBehavior.php +++ b/wallee-sdk/lib/Model/TransactionCompletionBehavior.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCompletionBehavior diff --git a/wallee-sdk/lib/Model/TransactionCompletionMode.php b/wallee-sdk/lib/Model/TransactionCompletionMode.php index 1bd45e3..a772e85 100644 --- a/wallee-sdk/lib/Model/TransactionCompletionMode.php +++ b/wallee-sdk/lib/Model/TransactionCompletionMode.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCompletionMode diff --git a/wallee-sdk/lib/Model/TransactionCompletionRequest.php b/wallee-sdk/lib/Model/TransactionCompletionRequest.php index a24664e..467a71d 100644 --- a/wallee-sdk/lib/Model/TransactionCompletionRequest.php +++ b/wallee-sdk/lib/Model/TransactionCompletionRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCompletionRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TransactionCompletionState.php b/wallee-sdk/lib/Model/TransactionCompletionState.php index e205ca5..795be49 100644 --- a/wallee-sdk/lib/Model/TransactionCompletionState.php +++ b/wallee-sdk/lib/Model/TransactionCompletionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCompletionState diff --git a/wallee-sdk/lib/Model/TransactionCreate.php b/wallee-sdk/lib/Model/TransactionCreate.php index c49880d..39dfafb 100644 --- a/wallee-sdk/lib/Model/TransactionCreate.php +++ b/wallee-sdk/lib/Model/TransactionCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCreate extends AbstractTransactionPending @@ -299,7 +299,7 @@ public function getAutoConfirmationEnabled() /** * Sets auto_confirmation_enabled * - * @param bool $auto_confirmation_enabled When auto confirmation is enabled the transaction can be confirmed by the user and does not require an explicit confirmation through the web service API. + * @param bool $auto_confirmation_enabled Whether the transaction can be confirmed automatically or whether this must be done explicitly via the API. Default is true. * * @return $this */ @@ -324,7 +324,7 @@ public function getChargeRetryEnabled() /** * Sets charge_retry_enabled * - * @param bool $charge_retry_enabled When the charging of the customer fails we can retry the charging. This implies that we redirect the user back to the payment page which allows the customer to retry. By default we will retry. + * @param bool $charge_retry_enabled Whether the customer can make further payment attempts if the first one has failed. Default is true. * * @return $this */ @@ -349,7 +349,7 @@ public function getCustomersPresence() /** * Sets customers_presence * - * @param \Wallee\Sdk\Model\CustomersPresence $customers_presence The customer's presence indicates what kind of authentication method was finally used during authorization of the transaction. If no value is provided, 'Virtually Present' is used by default. + * @param \Wallee\Sdk\Model\CustomersPresence $customers_presence The customer's presence indicates whether and in what way the transaction's customer is present. Default is VIRTUAL_PRESENT. * * @return $this */ @@ -374,7 +374,7 @@ public function getDeviceSessionIdentifier() /** * Sets device_session_identifier * - * @param string $device_session_identifier The device session identifier links the transaction with the session identifier provided in the URL of the device data JavaScript. This allows to link the transaction with the collected device data of the buyer. + * @param string $device_session_identifier Allows to link the transaction to the data collected from the customer's device. * * @return $this */ @@ -406,7 +406,7 @@ public function getEmailsDisabled() /** * Sets emails_disabled * - * @param bool $emails_disabled Flag indicating whether email sending is disabled for this particular transaction. Defaults to false. + * @param bool $emails_disabled Whether email sending is deactivated for the transaction. Default is false. * * @return $this */ @@ -456,7 +456,7 @@ public function getEnvironmentSelectionStrategy() /** * Sets environment_selection_strategy * - * @param \Wallee\Sdk\Model\TransactionEnvironmentSelectionStrategy $environment_selection_strategy The environment selection strategy determines how the environment (test or production) for processing the transaction is selected. + * @param \Wallee\Sdk\Model\TransactionEnvironmentSelectionStrategy $environment_selection_strategy The strategy for determining whether the transaction is to be processed in the test or production environment. * * @return $this */ @@ -481,7 +481,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionEnvironmentSelectionStrategy.php b/wallee-sdk/lib/Model/TransactionEnvironmentSelectionStrategy.php index 6a139ef..f872bec 100644 --- a/wallee-sdk/lib/Model/TransactionEnvironmentSelectionStrategy.php +++ b/wallee-sdk/lib/Model/TransactionEnvironmentSelectionStrategy.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionEnvironmentSelectionStrategy diff --git a/wallee-sdk/lib/Model/TransactionGroup.php b/wallee-sdk/lib/Model/TransactionGroup.php index a0b70bc..e5108ac 100644 --- a/wallee-sdk/lib/Model/TransactionGroup.php +++ b/wallee-sdk/lib/Model/TransactionGroup.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionGroup implements ModelInterface, ArrayAccess @@ -266,7 +266,7 @@ public function getBeginDate() /** * Sets begin_date * - * @param \DateTime $begin_date + * @param \DateTime $begin_date The date and time when the initial transaction in the group was created. * * @return $this */ @@ -291,7 +291,7 @@ public function getCustomerId() /** * Sets customer_id * - * @param string $customer_id + * @param string $customer_id The unique identifier of the customer in the external system. * * @return $this */ @@ -320,7 +320,7 @@ public function getEndDate() /** * Sets end_date * - * @param \DateTime $end_date + * @param \DateTime $end_date The date and time when the final transaction in the group was last updated. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionGroupState.php b/wallee-sdk/lib/Model/TransactionGroupState.php index 69ab98f..bc795a8 100644 --- a/wallee-sdk/lib/Model/TransactionGroupState.php +++ b/wallee-sdk/lib/Model/TransactionGroupState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionGroupState diff --git a/wallee-sdk/lib/Model/TransactionInvoice.php b/wallee-sdk/lib/Model/TransactionInvoice.php index 44480c0..e7739ef 100644 --- a/wallee-sdk/lib/Model/TransactionInvoice.php +++ b/wallee-sdk/lib/Model/TransactionInvoice.php @@ -27,7 +27,7 @@ * @category Class * @description The transaction invoice represents the invoice document for a particular transaction. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoice extends TransactionAwareEntity @@ -738,7 +738,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionInvoiceComment.php b/wallee-sdk/lib/Model/TransactionInvoiceComment.php index d2a4d08..6c5075e 100644 --- a/wallee-sdk/lib/Model/TransactionInvoiceComment.php +++ b/wallee-sdk/lib/Model/TransactionInvoiceComment.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoiceComment implements ModelInterface, ArrayAccess @@ -280,7 +280,7 @@ public function getContent() /** * Sets content * - * @param string $content + * @param string $content The comment's actual content. * * @return $this */ @@ -309,7 +309,7 @@ public function getCreatedBy() /** * Sets created_by * - * @param int $created_by + * @param int $created_by The ID of the user the comment was created by. * * @return $this */ @@ -359,7 +359,7 @@ public function getEditedBy() /** * Sets edited_by * - * @param int $edited_by + * @param int $edited_by The ID of the user the comment was last updated by. * * @return $this */ @@ -384,7 +384,7 @@ public function getEditedOn() /** * Sets edited_on * - * @param \DateTime $edited_on The date on which the comment was last edited. + * @param \DateTime $edited_on The date and time when the comment was last updated. * * @return $this */ @@ -459,7 +459,7 @@ public function getPinned() /** * Sets pinned * - * @param bool $pinned + * @param bool $pinned Whether the comment is pinned to the top. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionInvoiceCommentActive.php b/wallee-sdk/lib/Model/TransactionInvoiceCommentActive.php index 8323b94..e8671e0 100644 --- a/wallee-sdk/lib/Model/TransactionInvoiceCommentActive.php +++ b/wallee-sdk/lib/Model/TransactionInvoiceCommentActive.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoiceCommentActive extends AbstractTransactionInvoiceCommentActive diff --git a/wallee-sdk/lib/Model/TransactionInvoiceCommentCreate.php b/wallee-sdk/lib/Model/TransactionInvoiceCommentCreate.php index 73b3924..ae33cae 100644 --- a/wallee-sdk/lib/Model/TransactionInvoiceCommentCreate.php +++ b/wallee-sdk/lib/Model/TransactionInvoiceCommentCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoiceCommentCreate extends AbstractTransactionInvoiceCommentActive diff --git a/wallee-sdk/lib/Model/TransactionInvoiceReplacement.php b/wallee-sdk/lib/Model/TransactionInvoiceReplacement.php index 0bf795a..00b3dca 100644 --- a/wallee-sdk/lib/Model/TransactionInvoiceReplacement.php +++ b/wallee-sdk/lib/Model/TransactionInvoiceReplacement.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoiceReplacement implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TransactionInvoiceState.php b/wallee-sdk/lib/Model/TransactionInvoiceState.php index 0e7f902..34a4f76 100644 --- a/wallee-sdk/lib/Model/TransactionInvoiceState.php +++ b/wallee-sdk/lib/Model/TransactionInvoiceState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoiceState diff --git a/wallee-sdk/lib/Model/TransactionLineItemVersion.php b/wallee-sdk/lib/Model/TransactionLineItemVersion.php index b036032..51a83ab 100644 --- a/wallee-sdk/lib/Model/TransactionLineItemVersion.php +++ b/wallee-sdk/lib/Model/TransactionLineItemVersion.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionLineItemVersion extends TransactionAwareEntity @@ -633,7 +633,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionLineItemVersionCreate.php b/wallee-sdk/lib/Model/TransactionLineItemVersionCreate.php index fbcd550..6a3b611 100644 --- a/wallee-sdk/lib/Model/TransactionLineItemVersionCreate.php +++ b/wallee-sdk/lib/Model/TransactionLineItemVersionCreate.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionLineItemVersionCreate implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/TransactionLineItemVersionState.php b/wallee-sdk/lib/Model/TransactionLineItemVersionState.php index 35825f2..1359026 100644 --- a/wallee-sdk/lib/Model/TransactionLineItemVersionState.php +++ b/wallee-sdk/lib/Model/TransactionLineItemVersionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionLineItemVersionState diff --git a/wallee-sdk/lib/Model/TransactionPending.php b/wallee-sdk/lib/Model/TransactionPending.php index 8baaa11..bafd4d0 100644 --- a/wallee-sdk/lib/Model/TransactionPending.php +++ b/wallee-sdk/lib/Model/TransactionPending.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionPending extends AbstractTransactionPending diff --git a/wallee-sdk/lib/Model/TransactionState.php b/wallee-sdk/lib/Model/TransactionState.php index 6ea5f96..6b0c182 100644 --- a/wallee-sdk/lib/Model/TransactionState.php +++ b/wallee-sdk/lib/Model/TransactionState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionState diff --git a/wallee-sdk/lib/Model/TransactionUserInterfaceType.php b/wallee-sdk/lib/Model/TransactionUserInterfaceType.php index ef2fd85..0e06777 100644 --- a/wallee-sdk/lib/Model/TransactionUserInterfaceType.php +++ b/wallee-sdk/lib/Model/TransactionUserInterfaceType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionUserInterfaceType diff --git a/wallee-sdk/lib/Model/TransactionVoid.php b/wallee-sdk/lib/Model/TransactionVoid.php index 0ea3a6d..22779b6 100644 --- a/wallee-sdk/lib/Model/TransactionVoid.php +++ b/wallee-sdk/lib/Model/TransactionVoid.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionVoid extends TransactionAwareEntity @@ -562,7 +562,7 @@ public function getSpaceViewId() /** * Sets space_view_id * - * @param int $space_view_id + * @param int $space_view_id The ID of the space view this object is linked to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/TransactionVoidMode.php b/wallee-sdk/lib/Model/TransactionVoidMode.php index a222bcd..c6b9ff3 100644 --- a/wallee-sdk/lib/Model/TransactionVoidMode.php +++ b/wallee-sdk/lib/Model/TransactionVoidMode.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionVoidMode diff --git a/wallee-sdk/lib/Model/TransactionVoidState.php b/wallee-sdk/lib/Model/TransactionVoidState.php index b318801..c76d4bf 100644 --- a/wallee-sdk/lib/Model/TransactionVoidState.php +++ b/wallee-sdk/lib/Model/TransactionVoidState.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionVoidState diff --git a/wallee-sdk/lib/Model/TwoFactorAuthenticationType.php b/wallee-sdk/lib/Model/TwoFactorAuthenticationType.php index 36b0500..c72d3a5 100644 --- a/wallee-sdk/lib/Model/TwoFactorAuthenticationType.php +++ b/wallee-sdk/lib/Model/TwoFactorAuthenticationType.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TwoFactorAuthenticationType implements ModelInterface, ArrayAccess @@ -241,7 +241,7 @@ public function getDescription() /** * Sets description * - * @param map[string,string] $description The description of the object translated into different languages. + * @param map[string,string] $description The localized description of the object. * * @return $this */ @@ -266,7 +266,7 @@ public function getFeature() /** * Sets feature * - * @param int $feature + * @param int $feature The feature that this type belongs to. * * @return $this */ @@ -291,7 +291,7 @@ public function getIcon() /** * Sets icon * - * @param string $icon + * @param string $icon The identifier of the icon representing this type. * * @return $this */ @@ -341,7 +341,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name The name of the object translated into different languages. + * @param map[string,string] $name The localized name of the object. * * @return $this */ diff --git a/wallee-sdk/lib/Model/User.php b/wallee-sdk/lib/Model/User.php index 2c9c24e..e29f14a 100644 --- a/wallee-sdk/lib/Model/User.php +++ b/wallee-sdk/lib/Model/User.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class User implements ModelInterface, ArrayAccess @@ -51,7 +51,7 @@ class User implements ModelInterface, ArrayAccess protected static $swaggerTypes = [ 'id' => 'int', 'planned_purge_date' => '\DateTime', - 'scope' => '\Wallee\Sdk\Model\Scope', + 'scope' => 'int', 'state' => '\Wallee\Sdk\Model\CreationEntityState', 'user_type' => '\Wallee\Sdk\Model\UserType', 'version' => 'int' @@ -65,7 +65,7 @@ class User implements ModelInterface, ArrayAccess protected static $swaggerFormats = [ 'id' => 'int64', 'planned_purge_date' => 'date-time', - 'scope' => null, + 'scope' => 'int64', 'state' => null, 'user_type' => null, 'version' => 'int32' @@ -288,7 +288,7 @@ public function setPlannedPurgeDate($planned_purge_date) /** * Gets scope * - * @return \Wallee\Sdk\Model\Scope + * @return int */ public function getScope() { @@ -298,7 +298,7 @@ public function getScope() /** * Sets scope * - * @param \Wallee\Sdk\Model\Scope $scope + * @param int $scope The scope that the user belongs to. * * @return $this */ @@ -348,7 +348,7 @@ public function getUserType() /** * Sets user_type * - * @param \Wallee\Sdk\Model\UserType $user_type + * @param \Wallee\Sdk\Model\UserType $user_type The user's type which defines its role and capabilities. * * @return $this */ diff --git a/wallee-sdk/lib/Model/UserAccountRole.php b/wallee-sdk/lib/Model/UserAccountRole.php index 61be7d3..3eafd3a 100644 --- a/wallee-sdk/lib/Model/UserAccountRole.php +++ b/wallee-sdk/lib/Model/UserAccountRole.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class UserAccountRole implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/UserSpaceRole.php b/wallee-sdk/lib/Model/UserSpaceRole.php index e117209..fc92893 100644 --- a/wallee-sdk/lib/Model/UserSpaceRole.php +++ b/wallee-sdk/lib/Model/UserSpaceRole.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class UserSpaceRole implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/UserType.php b/wallee-sdk/lib/Model/UserType.php index 5d609b5..f09fe87 100644 --- a/wallee-sdk/lib/Model/UserType.php +++ b/wallee-sdk/lib/Model/UserType.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class UserType diff --git a/wallee-sdk/lib/Model/WalletType.php b/wallee-sdk/lib/Model/WalletType.php index 9689e61..2afe0b9 100644 --- a/wallee-sdk/lib/Model/WalletType.php +++ b/wallee-sdk/lib/Model/WalletType.php @@ -19,6 +19,8 @@ namespace Wallee\Sdk\Model; + +use \ArrayAccess; use \Wallee\Sdk\ObjectSerializer; /** @@ -27,25 +29,337 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ -class WalletType +class WalletType implements ModelInterface, ArrayAccess { + const DISCRIMINATOR = null; + + /** + * The original name of the model. + * + * @var string + */ + protected static $swaggerModelName = 'WalletType'; + + /** + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ + protected static $swaggerTypes = [ + 'description' => 'map[string,string]', + 'id' => 'int', + 'name' => 'map[string,string]' + ]; + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + */ + protected static $swaggerFormats = [ + 'description' => null, + 'id' => 'int64', + 'name' => null + ]; + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @var string[] + */ + protected static $attributeMap = [ + 'description' => 'description', + 'id' => 'id', + 'name' => 'name' + ]; + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @var string[] + */ + protected static $setters = [ + 'description' => 'setDescription', + 'id' => 'setId', + 'name' => 'setName' + ]; + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @var string[] + */ + protected static $getters = [ + 'description' => 'getDescription', + 'id' => 'getId', + 'name' => 'getName' + ]; + + + + /** + * Associative array for storing property values + * + * @var mixed[] + */ + protected $container = []; + + /** + * Constructor + * + * @param mixed[] $data Associated array of property values + * initializing the model + */ + public function __construct(array $data = null) + { + + $this->container['description'] = isset($data['description']) ? $data['description'] : null; + + $this->container['id'] = isset($data['id']) ? $data['id'] : null; + + $this->container['name'] = isset($data['name']) ? $data['name'] : null; + + } + + /** + * Show all the invalid properties with reasons. + * + * @return array invalid properties with reasons + */ + public function listInvalidProperties() + { + $invalidProperties = []; + + return $invalidProperties; + } + + /** + * Array of property to type mappings. Used for (de)serialization + * + * @return array + */ + public static function swaggerTypes() + { + return self::$swaggerTypes; + } + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @return array + */ + public static function swaggerFormats() + { + return self::$swaggerFormats; + } + + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @return array + */ + public static function attributeMap() + { + return self::$attributeMap; + } + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @return array + */ + public static function setters() + { + return self::$setters; + } + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @return array + */ + public static function getters() + { + return self::$getters; + } + + /** + * The original name of the model. + * + * @return string + */ + public function getModelName() + { + return self::$swaggerModelName; + } + + + + /** + * Validate all the properties in the model + * return true if all passed + * + * @return bool True if all properties are valid + */ + public function valid() + { + return count($this->listInvalidProperties()) === 0; + } + + + + /** + * Gets description + * + * @return map[string,string] + */ + public function getDescription() + { + return $this->container['description']; + } + + /** + * Sets description + * + * @param map[string,string] $description The localized description of the object. + * + * @return $this + */ + public function setDescription($description) + { + $this->container['description'] = $description; + + return $this; + } + + + /** + * Gets id + * + * @return int + */ + public function getId() + { + return $this->container['id']; + } + /** - * Possible values of this enum + * Sets id + * + * @param int $id A unique identifier for the object. + * + * @return $this */ - const APPLE_PAY = 'APPLE_PAY'; + public function setId($id) + { + $this->container['id'] = $id; + + return $this; + } + /** - * Gets allowable values of the enum - * @return string[] + * Gets name + * + * @return map[string,string] */ - public static function getAllowableEnumValues() + public function getName() { - return [ - self::APPLE_PAY, - ]; + return $this->container['name']; + } + + /** + * Sets name + * + * @param map[string,string] $name The localized name of the object. + * + * @return $this + */ + public function setName($name) + { + $this->container['name'] = $name; + + return $this; + } + + /** + * Returns true if offset exists. False otherwise. + * + * @param integer $offset Offset + * + * @return boolean + */ + #[\ReturnTypeWillChange] + public function offsetExists($offset) + { + return isset($this->container[$offset]); + } + + /** + * Gets offset. + * + * @param integer $offset Offset + * + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return isset($this->container[$offset]) ? $this->container[$offset] : null; + } + + /** + * Sets value based on offset. + * + * @param integer $offset Offset + * @param mixed $value Value to be set + * + * @return void + */ + #[\ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + if (is_null($offset)) { + $this->container[] = $value; + } else { + $this->container[$offset] = $value; + } + } + + /** + * Unsets offset. + * + * @param integer $offset Offset + * + * @return void + */ + #[\ReturnTypeWillChange] + public function offsetUnset($offset) + { + unset($this->container[$offset]); + } + + /** + * Gets the string presentation of the object + * + * @return string + */ + public function __toString() + { + if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print + return json_encode( + ObjectSerializer::sanitizeForSerialization($this), + JSON_PRETTY_PRINT + ); + } + + return json_encode(ObjectSerializer::sanitizeForSerialization($this)); } } diff --git a/wallee-sdk/lib/Model/WebAppConfirmationRequest.php b/wallee-sdk/lib/Model/WebAppConfirmationRequest.php index 2eefd0d..90fe0a4 100644 --- a/wallee-sdk/lib/Model/WebAppConfirmationRequest.php +++ b/wallee-sdk/lib/Model/WebAppConfirmationRequest.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebAppConfirmationRequest implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/WebAppConfirmationResponse.php b/wallee-sdk/lib/Model/WebAppConfirmationResponse.php index fc2a953..ff08b78 100644 --- a/wallee-sdk/lib/Model/WebAppConfirmationResponse.php +++ b/wallee-sdk/lib/Model/WebAppConfirmationResponse.php @@ -29,7 +29,7 @@ * @category Class * @description The confirmation response provides the details about the installation of the web app. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebAppConfirmationResponse implements ModelInterface, ArrayAccess diff --git a/wallee-sdk/lib/Model/DatabaseTranslatedStringCreate.php b/wallee-sdk/lib/Model/WebhookEncryptionPublicKey.php similarity index 79% rename from wallee-sdk/lib/Model/DatabaseTranslatedStringCreate.php rename to wallee-sdk/lib/Model/WebhookEncryptionPublicKey.php index 427b485..dbb7146 100644 --- a/wallee-sdk/lib/Model/DatabaseTranslatedStringCreate.php +++ b/wallee-sdk/lib/Model/WebhookEncryptionPublicKey.php @@ -24,15 +24,15 @@ use \Wallee\Sdk\ObjectSerializer; /** - * DatabaseTranslatedStringCreate model + * WebhookEncryptionPublicKey model * * @category Class - * @description + * @description The webhook encryption public key is used to verify the webhook content signature. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ -class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess +class WebhookEncryptionPublicKey implements ModelInterface, ArrayAccess { const DISCRIMINATOR = null; @@ -41,7 +41,7 @@ class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess * * @var string */ - protected static $swaggerModelName = 'DatabaseTranslatedString.Create'; + protected static $swaggerModelName = 'WebhookEncryptionPublicKey'; /** * Array of property to type mappings. Used for (de)serialization @@ -49,7 +49,8 @@ class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ - 'items' => '\Wallee\Sdk\Model\DatabaseTranslatedStringItemCreate[]' + 'id' => 'string', + 'public_key' => 'string' ]; /** @@ -58,7 +59,8 @@ class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ - 'items' => null + 'id' => null, + 'public_key' => null ]; /** @@ -68,7 +70,8 @@ class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess * @var string[] */ protected static $attributeMap = [ - 'items' => 'items' + 'id' => 'id', + 'public_key' => 'publicKey' ]; /** @@ -77,7 +80,8 @@ class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess * @var string[] */ protected static $setters = [ - 'items' => 'setItems' + 'id' => 'setId', + 'public_key' => 'setPublicKey' ]; /** @@ -86,7 +90,8 @@ class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess * @var string[] */ protected static $getters = [ - 'items' => 'getItems' + 'id' => 'getId', + 'public_key' => 'getPublicKey' ]; @@ -107,7 +112,9 @@ class DatabaseTranslatedStringCreate implements ModelInterface, ArrayAccess public function __construct(array $data = null) { - $this->container['items'] = isset($data['items']) ? $data['items'] : null; + $this->container['id'] = isset($data['id']) ? $data['id'] : null; + + $this->container['public_key'] = isset($data['public_key']) ? $data['public_key'] : null; } @@ -201,25 +208,50 @@ public function valid() /** - * Gets items + * Gets id + * + * @return string + */ + public function getId() + { + return $this->container['id']; + } + + /** + * Sets id + * + * @param string $id The ID of encryption key + * + * @return $this + */ + public function setId($id) + { + $this->container['id'] = $id; + + return $this; + } + + + /** + * Gets public_key * - * @return \Wallee\Sdk\Model\DatabaseTranslatedStringItemCreate[] + * @return string */ - public function getItems() + public function getPublicKey() { - return $this->container['items']; + return $this->container['public_key']; } /** - * Sets items + * Sets public_key * - * @param \Wallee\Sdk\Model\DatabaseTranslatedStringItemCreate[] $items + * @param string $public_key The BASE64 encoded public key * * @return $this */ - public function setItems($items) + public function setPublicKey($public_key) { - $this->container['items'] = $items; + $this->container['public_key'] = $public_key; return $this; } diff --git a/wallee-sdk/lib/Model/WebhookIdentity.php b/wallee-sdk/lib/Model/WebhookIdentity.php index 7fa1032..06858f3 100644 --- a/wallee-sdk/lib/Model/WebhookIdentity.php +++ b/wallee-sdk/lib/Model/WebhookIdentity.php @@ -29,7 +29,7 @@ * @category Class * @description The webhook identity represents a set of keys that will be used to sign the webhook messages. * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookIdentity implements ModelInterface, ArrayAccess @@ -302,7 +302,7 @@ public function getName() /** * Sets name * - * @param string $name The identity name is used internally to identify the webhook identity in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the webhook identity. * * @return $this */ diff --git a/wallee-sdk/lib/Model/WebhookListener.php b/wallee-sdk/lib/Model/WebhookListener.php index c611668..306bc57 100644 --- a/wallee-sdk/lib/Model/WebhookListener.php +++ b/wallee-sdk/lib/Model/WebhookListener.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookListener implements ModelInterface, ArrayAccess @@ -49,6 +49,7 @@ class WebhookListener implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerTypes = [ + 'enable_payload_signature_and_state' => 'bool', 'entity' => 'int', 'entity_states' => 'string[]', 'id' => 'int', @@ -68,6 +69,7 @@ class WebhookListener implements ModelInterface, ArrayAccess * @var string[] */ protected static $swaggerFormats = [ + 'enable_payload_signature_and_state' => null, 'entity' => 'int64', 'entity_states' => null, 'id' => 'int64', @@ -88,6 +90,7 @@ class WebhookListener implements ModelInterface, ArrayAccess * @var string[] */ protected static $attributeMap = [ + 'enable_payload_signature_and_state' => 'enablePayloadSignatureAndState', 'entity' => 'entity', 'entity_states' => 'entityStates', 'id' => 'id', @@ -107,6 +110,7 @@ class WebhookListener implements ModelInterface, ArrayAccess * @var string[] */ protected static $setters = [ + 'enable_payload_signature_and_state' => 'setEnablePayloadSignatureAndState', 'entity' => 'setEntity', 'entity_states' => 'setEntityStates', 'id' => 'setId', @@ -126,6 +130,7 @@ class WebhookListener implements ModelInterface, ArrayAccess * @var string[] */ protected static $getters = [ + 'enable_payload_signature_and_state' => 'getEnablePayloadSignatureAndState', 'entity' => 'getEntity', 'entity_states' => 'getEntityStates', 'id' => 'getId', @@ -157,6 +162,8 @@ class WebhookListener implements ModelInterface, ArrayAccess public function __construct(array $data = null) { + $this->container['enable_payload_signature_and_state'] = isset($data['enable_payload_signature_and_state']) ? $data['enable_payload_signature_and_state'] : null; + $this->container['entity'] = isset($data['entity']) ? $data['entity'] : null; $this->container['entity_states'] = isset($data['entity_states']) ? $data['entity_states'] : null; @@ -274,6 +281,31 @@ public function valid() + /** + * Gets enable_payload_signature_and_state + * + * @return bool + */ + public function getEnablePayloadSignatureAndState() + { + return $this->container['enable_payload_signature_and_state']; + } + + /** + * Sets enable_payload_signature_and_state + * + * @param bool $enable_payload_signature_and_state Whether signature header and state property are enabled in webhook payload. + * + * @return $this + */ + public function setEnablePayloadSignatureAndState($enable_payload_signature_and_state) + { + $this->container['enable_payload_signature_and_state'] = $enable_payload_signature_and_state; + + return $this; + } + + /** * Gets entity * @@ -287,7 +319,7 @@ public function getEntity() /** * Sets entity * - * @param int $entity The listener listens on state changes of the entity linked with the listener. + * @param int $entity The entity that is to be monitored. * * @return $this */ @@ -312,7 +344,7 @@ public function getEntityStates() /** * Sets entity_states * - * @param string[] $entity_states The target state identifies the state into which entities need to move into to trigger the webhook listener. + * @param string[] $entity_states The entity's target states that are to be monitored. * * @return $this */ @@ -362,7 +394,7 @@ public function getIdentity() /** * Sets identity * - * @param \Wallee\Sdk\Model\WebhookIdentity $identity The identity which will be used to sign messages sent by this listener. + * @param \Wallee\Sdk\Model\WebhookIdentity $identity The identity used to sign messages. * * @return $this */ @@ -412,7 +444,7 @@ public function getName() /** * Sets name * - * @param string $name The webhook listener name is used internally to identify the webhook listener in administrative interfaces.For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the webhook listener. * * @return $this */ @@ -441,7 +473,7 @@ public function getNotifyEveryChange() /** * Sets notify_every_change * - * @param bool $notify_every_change Defines whether the webhook listener is to be informed about every change made to the entity in contrast to state transitions only. + * @param bool $notify_every_change Whether every update of the entity or only state changes are to be monitored. * * @return $this */ @@ -516,7 +548,7 @@ public function getUrl() /** * Sets url * - * @param \Wallee\Sdk\Model\WebhookUrl $url The URL which is invoked by the listener to notify the application about the event. + * @param \Wallee\Sdk\Model\WebhookUrl $url The URL where notifications about entity changes are sent to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/WebhookListenerCreate.php b/wallee-sdk/lib/Model/WebhookListenerCreate.php index c28979b..ded09e0 100644 --- a/wallee-sdk/lib/Model/WebhookListenerCreate.php +++ b/wallee-sdk/lib/Model/WebhookListenerCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookListenerCreate extends AbstractWebhookListenerUpdate @@ -231,7 +231,7 @@ public function getEntity() /** * Sets entity * - * @param int $entity The listener listens on state changes of the entity linked with the listener. + * @param int $entity The entity that is to be monitored. * * @return $this */ @@ -256,7 +256,7 @@ public function getIdentity() /** * Sets identity * - * @param int $identity The identity which will be used to sign messages sent by this listener. + * @param int $identity The identity used to sign messages. * * @return $this */ @@ -281,7 +281,7 @@ public function getUrl() /** * Sets url * - * @param int $url The URL which is invoked by the listener to notify the application about the event. + * @param int $url The URL where notifications about entity changes are sent to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/WebhookListenerEntity.php b/wallee-sdk/lib/Model/WebhookListenerEntity.php index 9c82cea..b67fb0b 100644 --- a/wallee-sdk/lib/Model/WebhookListenerEntity.php +++ b/wallee-sdk/lib/Model/WebhookListenerEntity.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookListenerEntity implements ModelInterface, ArrayAccess @@ -252,7 +252,7 @@ public function getName() /** * Sets name * - * @param map[string,string] $name + * @param map[string,string] $name The name used to identify the webhook listener entity. * * @return $this */ @@ -277,7 +277,7 @@ public function getTechnicalName() /** * Sets technical_name * - * @param string $technical_name + * @param string $technical_name The name used to programmatically identify the webhook listener entity. * * @return $this */ diff --git a/wallee-sdk/lib/Model/WebhookListenerUpdate.php b/wallee-sdk/lib/Model/WebhookListenerUpdate.php index a21ccdf..58fc6bb 100644 --- a/wallee-sdk/lib/Model/WebhookListenerUpdate.php +++ b/wallee-sdk/lib/Model/WebhookListenerUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookListenerUpdate extends AbstractWebhookListenerUpdate diff --git a/wallee-sdk/lib/Model/WebhookUrl.php b/wallee-sdk/lib/Model/WebhookUrl.php index c8d7f24..a5434a6 100644 --- a/wallee-sdk/lib/Model/WebhookUrl.php +++ b/wallee-sdk/lib/Model/WebhookUrl.php @@ -29,7 +29,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookUrl implements ModelInterface, ArrayAccess @@ -274,7 +274,7 @@ public function getApplicationManaged() /** * Sets application_managed * - * @param bool $application_managed The webhook URL is managed by the application and cannot be changed via the user interface. + * @param bool $application_managed Whether the webhook URL is managed by the application, and therefore cannot be changed via the user interface. * * @return $this */ @@ -349,7 +349,7 @@ public function getName() /** * Sets name * - * @param string $name The URL name is used internally to identify the URL in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive. + * @param string $name The name used to identify the webhook URL. * * @return $this */ @@ -428,7 +428,7 @@ public function getUrl() /** * Sets url * - * @param string $url The URL to which the HTTP requests are sent to. An example URL could look like https://www.example.com/some/path?some-query-parameter=value. + * @param string $url The actual URL where notifications about entity changes are sent to. * * @return $this */ diff --git a/wallee-sdk/lib/Model/WebhookUrlCreate.php b/wallee-sdk/lib/Model/WebhookUrlCreate.php index 7d91803..30f2243 100644 --- a/wallee-sdk/lib/Model/WebhookUrlCreate.php +++ b/wallee-sdk/lib/Model/WebhookUrlCreate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookUrlCreate extends AbstractWebhookUrlUpdate diff --git a/wallee-sdk/lib/Model/WebhookUrlUpdate.php b/wallee-sdk/lib/Model/WebhookUrlUpdate.php index fadcc62..b9795f3 100644 --- a/wallee-sdk/lib/Model/WebhookUrlUpdate.php +++ b/wallee-sdk/lib/Model/WebhookUrlUpdate.php @@ -27,7 +27,7 @@ * @category Class * @description * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookUrlUpdate extends AbstractWebhookUrlUpdate diff --git a/wallee-sdk/lib/ObjectSerializer.php b/wallee-sdk/lib/ObjectSerializer.php index 5046fee..3849f2a 100644 --- a/wallee-sdk/lib/ObjectSerializer.php +++ b/wallee-sdk/lib/ObjectSerializer.php @@ -27,7 +27,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ObjectSerializer diff --git a/wallee-sdk/lib/Service/AccountService.php b/wallee-sdk/lib/Service/AccountService.php index 4c36e2d..783d32d 100644 --- a/wallee-sdk/lib/Service/AccountService.php +++ b/wallee-sdk/lib/Service/AccountService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AccountService { @@ -704,4 +704,5 @@ public function updateWithHttpInfo($entity) { } } + } diff --git a/wallee-sdk/lib/Service/AnalyticsQueryService.php b/wallee-sdk/lib/Service/AnalyticsQueryService.php index 68aae23..0ae811e 100644 --- a/wallee-sdk/lib/Service/AnalyticsQueryService.php +++ b/wallee-sdk/lib/Service/AnalyticsQueryService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class AnalyticsQueryService { @@ -695,4 +695,5 @@ public function submitQueryWithHttpInfo($query) { } } + } diff --git a/wallee-sdk/lib/Service/ApplicationUserService.php b/wallee-sdk/lib/Service/ApplicationUserService.php index e44a72a..09f6772 100644 --- a/wallee-sdk/lib/Service/ApplicationUserService.php +++ b/wallee-sdk/lib/Service/ApplicationUserService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ApplicationUserService { @@ -704,4 +704,5 @@ public function updateWithHttpInfo($entity) { } } + } diff --git a/wallee-sdk/lib/Service/BankAccountService.php b/wallee-sdk/lib/Service/BankAccountService.php index 0595f0b..0c2933c 100644 --- a/wallee-sdk/lib/Service/BankAccountService.php +++ b/wallee-sdk/lib/Service/BankAccountService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankAccountService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/BankTransactionService.php b/wallee-sdk/lib/Service/BankTransactionService.php index c1e7b61..30612b4 100644 --- a/wallee-sdk/lib/Service/BankTransactionService.php +++ b/wallee-sdk/lib/Service/BankTransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class BankTransactionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/CardProcessingService.php b/wallee-sdk/lib/Service/CardProcessingService.php index d7b05dc..db89704 100644 --- a/wallee-sdk/lib/Service/CardProcessingService.php +++ b/wallee-sdk/lib/Service/CardProcessingService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CardProcessingService { @@ -348,4 +348,5 @@ public function processWith3DSecureWithHttpInfo($space_id, $transaction_id, $pay } } + } diff --git a/wallee-sdk/lib/Service/ChargeAttemptService.php b/wallee-sdk/lib/Service/ChargeAttemptService.php index eb42d3b..d18b6b3 100644 --- a/wallee-sdk/lib/Service/ChargeAttemptService.php +++ b/wallee-sdk/lib/Service/ChargeAttemptService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeAttemptService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/ChargeBankTransactionService.php b/wallee-sdk/lib/Service/ChargeBankTransactionService.php index 2c897ee..f509e8f 100644 --- a/wallee-sdk/lib/Service/ChargeBankTransactionService.php +++ b/wallee-sdk/lib/Service/ChargeBankTransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeBankTransactionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/ChargeFlowLevelPaymentLinkService.php b/wallee-sdk/lib/Service/ChargeFlowLevelPaymentLinkService.php index 1f07ad6..942b099 100644 --- a/wallee-sdk/lib/Service/ChargeFlowLevelPaymentLinkService.php +++ b/wallee-sdk/lib/Service/ChargeFlowLevelPaymentLinkService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowLevelPaymentLinkService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/ChargeFlowLevelService.php b/wallee-sdk/lib/Service/ChargeFlowLevelService.php index 816474b..090ad47 100644 --- a/wallee-sdk/lib/Service/ChargeFlowLevelService.php +++ b/wallee-sdk/lib/Service/ChargeFlowLevelService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowLevelService { @@ -518,4 +518,5 @@ public function sendMessageWithHttpInfo($space_id, $id) { } } + } diff --git a/wallee-sdk/lib/Service/ChargeFlowService.php b/wallee-sdk/lib/Service/ChargeFlowService.php index e181a1a..f1be81b 100644 --- a/wallee-sdk/lib/Service/ChargeFlowService.php +++ b/wallee-sdk/lib/Service/ChargeFlowService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ChargeFlowService { @@ -875,4 +875,5 @@ public function updateRecipientWithHttpInfo($space_id, $transaction_id, $type, $ } } + } diff --git a/wallee-sdk/lib/Service/ConditionTypeService.php b/wallee-sdk/lib/Service/ConditionTypeService.php index 4807b8b..04d5907 100644 --- a/wallee-sdk/lib/Service/ConditionTypeService.php +++ b/wallee-sdk/lib/Service/ConditionTypeService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ConditionTypeService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/CountryService.php b/wallee-sdk/lib/Service/CountryService.php index 2c37fdc..f6f930b 100644 --- a/wallee-sdk/lib/Service/CountryService.php +++ b/wallee-sdk/lib/Service/CountryService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CountryService { @@ -161,4 +161,5 @@ public function allWithHttpInfo() { } } + } diff --git a/wallee-sdk/lib/Service/CountryStateService.php b/wallee-sdk/lib/Service/CountryStateService.php index 0937a8c..5ce2561 100644 --- a/wallee-sdk/lib/Service/CountryStateService.php +++ b/wallee-sdk/lib/Service/CountryStateService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CountryStateService { @@ -265,4 +265,5 @@ public function countryWithHttpInfo($code) { } } + } diff --git a/wallee-sdk/lib/Service/CurrencyBankAccountService.php b/wallee-sdk/lib/Service/CurrencyBankAccountService.php index 83da618..4119312 100644 --- a/wallee-sdk/lib/Service/CurrencyBankAccountService.php +++ b/wallee-sdk/lib/Service/CurrencyBankAccountService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CurrencyBankAccountService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/CurrencyService.php b/wallee-sdk/lib/Service/CurrencyService.php index 310715d..af8b8ed 100644 --- a/wallee-sdk/lib/Service/CurrencyService.php +++ b/wallee-sdk/lib/Service/CurrencyService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CurrencyService { @@ -161,4 +161,5 @@ public function allWithHttpInfo() { } } + } diff --git a/wallee-sdk/lib/Service/CustomerAddressService.php b/wallee-sdk/lib/Service/CustomerAddressService.php index a1b274c..a83e3db 100644 --- a/wallee-sdk/lib/Service/CustomerAddressService.php +++ b/wallee-sdk/lib/Service/CustomerAddressService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerAddressService { @@ -871,4 +871,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/CustomerCommentService.php b/wallee-sdk/lib/Service/CustomerCommentService.php index 7411803..b575d25 100644 --- a/wallee-sdk/lib/Service/CustomerCommentService.php +++ b/wallee-sdk/lib/Service/CustomerCommentService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerCommentService { @@ -984,4 +984,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/CustomerService.php b/wallee-sdk/lib/Service/CustomerService.php index 3742767..1094235 100644 --- a/wallee-sdk/lib/Service/CustomerService.php +++ b/wallee-sdk/lib/Service/CustomerService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class CustomerService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/DebtCollectionCaseService.php b/wallee-sdk/lib/Service/DebtCollectionCaseService.php index aaabfa3..1fa2cac 100644 --- a/wallee-sdk/lib/Service/DebtCollectionCaseService.php +++ b/wallee-sdk/lib/Service/DebtCollectionCaseService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectionCaseService { @@ -1520,4 +1520,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/DebtCollectorConfigurationService.php b/wallee-sdk/lib/Service/DebtCollectorConfigurationService.php index 0290ace..2e5dcf2 100644 --- a/wallee-sdk/lib/Service/DebtCollectorConfigurationService.php +++ b/wallee-sdk/lib/Service/DebtCollectorConfigurationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectorConfigurationService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/DebtCollectorService.php b/wallee-sdk/lib/Service/DebtCollectorService.php index 6ffe6e4..21d8a1c 100644 --- a/wallee-sdk/lib/Service/DebtCollectorService.php +++ b/wallee-sdk/lib/Service/DebtCollectorService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DebtCollectorService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/DeliveryIndicationService.php b/wallee-sdk/lib/Service/DeliveryIndicationService.php index da45538..8784a9e 100644 --- a/wallee-sdk/lib/Service/DeliveryIndicationService.php +++ b/wallee-sdk/lib/Service/DeliveryIndicationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DeliveryIndicationService { @@ -635,4 +635,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/DocumentTemplateService.php b/wallee-sdk/lib/Service/DocumentTemplateService.php index 3184953..92f4913 100644 --- a/wallee-sdk/lib/Service/DocumentTemplateService.php +++ b/wallee-sdk/lib/Service/DocumentTemplateService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DocumentTemplateService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/DocumentTemplateTypeService.php b/wallee-sdk/lib/Service/DocumentTemplateTypeService.php index b88ce74..a922dc7 100644 --- a/wallee-sdk/lib/Service/DocumentTemplateTypeService.php +++ b/wallee-sdk/lib/Service/DocumentTemplateTypeService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class DocumentTemplateTypeService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/ExternalTransferBankTransactionService.php b/wallee-sdk/lib/Service/ExternalTransferBankTransactionService.php index 42b18ad..947c257 100644 --- a/wallee-sdk/lib/Service/ExternalTransferBankTransactionService.php +++ b/wallee-sdk/lib/Service/ExternalTransferBankTransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ExternalTransferBankTransactionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/HumanUserService.php b/wallee-sdk/lib/Service/HumanUserService.php index 7d3770e..32bebc8 100644 --- a/wallee-sdk/lib/Service/HumanUserService.php +++ b/wallee-sdk/lib/Service/HumanUserService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class HumanUserService { @@ -810,4 +810,5 @@ public function updateWithHttpInfo($entity) { } } + } diff --git a/wallee-sdk/lib/Service/InstallmentPaymentService.php b/wallee-sdk/lib/Service/InstallmentPaymentService.php index d781942..c827be3 100644 --- a/wallee-sdk/lib/Service/InstallmentPaymentService.php +++ b/wallee-sdk/lib/Service/InstallmentPaymentService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPaymentService { @@ -531,4 +531,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/InstallmentPaymentSliceService.php b/wallee-sdk/lib/Service/InstallmentPaymentSliceService.php index a83749c..e03bb69 100644 --- a/wallee-sdk/lib/Service/InstallmentPaymentSliceService.php +++ b/wallee-sdk/lib/Service/InstallmentPaymentSliceService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPaymentSliceService { @@ -409,4 +409,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/InstallmentPlanCalculationService.php b/wallee-sdk/lib/Service/InstallmentPlanCalculationService.php index 718e8a4..e914646 100644 --- a/wallee-sdk/lib/Service/InstallmentPlanCalculationService.php +++ b/wallee-sdk/lib/Service/InstallmentPlanCalculationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPlanCalculationService { @@ -179,4 +179,5 @@ public function calculatePlansWithHttpInfo($space_id, $transaction_id) { } } + } diff --git a/wallee-sdk/lib/Service/InstallmentPlanConfigurationService.php b/wallee-sdk/lib/Service/InstallmentPlanConfigurationService.php index 2e180c4..268a0cc 100644 --- a/wallee-sdk/lib/Service/InstallmentPlanConfigurationService.php +++ b/wallee-sdk/lib/Service/InstallmentPlanConfigurationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPlanConfigurationService { @@ -409,4 +409,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/InstallmentPlanSliceConfigurationService.php b/wallee-sdk/lib/Service/InstallmentPlanSliceConfigurationService.php index 1d6c2fd..127c115 100644 --- a/wallee-sdk/lib/Service/InstallmentPlanSliceConfigurationService.php +++ b/wallee-sdk/lib/Service/InstallmentPlanSliceConfigurationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InstallmentPlanSliceConfigurationService { @@ -409,4 +409,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/InternalTransferBankTransactionService.php b/wallee-sdk/lib/Service/InternalTransferBankTransactionService.php index bef3e19..a094b18 100644 --- a/wallee-sdk/lib/Service/InternalTransferBankTransactionService.php +++ b/wallee-sdk/lib/Service/InternalTransferBankTransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InternalTransferBankTransactionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/InvoiceReconciliationRecordInvoiceLinkService.php b/wallee-sdk/lib/Service/InvoiceReconciliationRecordInvoiceLinkService.php index 4545e8b..397c6cc 100644 --- a/wallee-sdk/lib/Service/InvoiceReconciliationRecordInvoiceLinkService.php +++ b/wallee-sdk/lib/Service/InvoiceReconciliationRecordInvoiceLinkService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReconciliationRecordInvoiceLinkService { @@ -662,4 +662,5 @@ public function unlinkTransactionWithHttpInfo($space_id, $record_id, $completion } } + } diff --git a/wallee-sdk/lib/Service/InvoiceReconciliationRecordService.php b/wallee-sdk/lib/Service/InvoiceReconciliationRecordService.php index 6c7751c..bccb787 100644 --- a/wallee-sdk/lib/Service/InvoiceReconciliationRecordService.php +++ b/wallee-sdk/lib/Service/InvoiceReconciliationRecordService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReconciliationRecordService { @@ -754,4 +754,5 @@ public function searchForInvoicesByQueryWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/InvoiceReimbursementService.php b/wallee-sdk/lib/Service/InvoiceReimbursementService.php index d2ff042..6e72c06 100644 --- a/wallee-sdk/lib/Service/InvoiceReimbursementService.php +++ b/wallee-sdk/lib/Service/InvoiceReimbursementService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class InvoiceReimbursementService { @@ -650,4 +650,5 @@ public function updateIbanWithHttpInfo($space_id, $id, $recipient_iban = null, $ } } + } diff --git a/wallee-sdk/lib/Service/LabelDescriptionGroupService.php b/wallee-sdk/lib/Service/LabelDescriptionGroupService.php index d235a18..1ae5229 100644 --- a/wallee-sdk/lib/Service/LabelDescriptionGroupService.php +++ b/wallee-sdk/lib/Service/LabelDescriptionGroupService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LabelDescriptionGroupService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/LabelDescriptionService.php b/wallee-sdk/lib/Service/LabelDescriptionService.php index 5deed6a..548980e 100644 --- a/wallee-sdk/lib/Service/LabelDescriptionService.php +++ b/wallee-sdk/lib/Service/LabelDescriptionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LabelDescriptionService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/LanguageService.php b/wallee-sdk/lib/Service/LanguageService.php index 499e06b..b6acd55 100644 --- a/wallee-sdk/lib/Service/LanguageService.php +++ b/wallee-sdk/lib/Service/LanguageService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LanguageService { @@ -161,4 +161,5 @@ public function allWithHttpInfo() { } } + } diff --git a/wallee-sdk/lib/Service/LegalOrganizationFormService.php b/wallee-sdk/lib/Service/LegalOrganizationFormService.php index ae8290d..aafaf0f 100644 --- a/wallee-sdk/lib/Service/LegalOrganizationFormService.php +++ b/wallee-sdk/lib/Service/LegalOrganizationFormService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class LegalOrganizationFormService { @@ -369,4 +369,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/ManualTaskService.php b/wallee-sdk/lib/Service/ManualTaskService.php index 62a8700..86b9dd3 100644 --- a/wallee-sdk/lib/Service/ManualTaskService.php +++ b/wallee-sdk/lib/Service/ManualTaskService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ManualTaskService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/MerticUsageService.php b/wallee-sdk/lib/Service/MerticUsageService.php index 8987cd8..253c8da 100644 --- a/wallee-sdk/lib/Service/MerticUsageService.php +++ b/wallee-sdk/lib/Service/MerticUsageService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class MerticUsageService { @@ -188,4 +188,5 @@ public function calculateWithHttpInfo($space_id, $start, $end) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentConnectorConfigurationService.php b/wallee-sdk/lib/Service/PaymentConnectorConfigurationService.php index 0b622e0..7849411 100644 --- a/wallee-sdk/lib/Service/PaymentConnectorConfigurationService.php +++ b/wallee-sdk/lib/Service/PaymentConnectorConfigurationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentConnectorConfigurationService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentConnectorService.php b/wallee-sdk/lib/Service/PaymentConnectorService.php index d082aed..5deea8d 100644 --- a/wallee-sdk/lib/Service/PaymentConnectorService.php +++ b/wallee-sdk/lib/Service/PaymentConnectorService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentConnectorService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentLinkService.php b/wallee-sdk/lib/Service/PaymentLinkService.php index 4fd1366..88888fa 100644 --- a/wallee-sdk/lib/Service/PaymentLinkService.php +++ b/wallee-sdk/lib/Service/PaymentLinkService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentLinkService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentMethodBrandService.php b/wallee-sdk/lib/Service/PaymentMethodBrandService.php index 3896c2b..bcf78ab 100644 --- a/wallee-sdk/lib/Service/PaymentMethodBrandService.php +++ b/wallee-sdk/lib/Service/PaymentMethodBrandService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentMethodBrandService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentMethodConfigurationService.php b/wallee-sdk/lib/Service/PaymentMethodConfigurationService.php index 1c293ea..78e37dd 100644 --- a/wallee-sdk/lib/Service/PaymentMethodConfigurationService.php +++ b/wallee-sdk/lib/Service/PaymentMethodConfigurationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentMethodConfigurationService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentMethodService.php b/wallee-sdk/lib/Service/PaymentMethodService.php index 24c976c..94b9754 100644 --- a/wallee-sdk/lib/Service/PaymentMethodService.php +++ b/wallee-sdk/lib/Service/PaymentMethodService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentMethodService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentProcessorConfigurationService.php b/wallee-sdk/lib/Service/PaymentProcessorConfigurationService.php index 4872690..44a53a8 100644 --- a/wallee-sdk/lib/Service/PaymentProcessorConfigurationService.php +++ b/wallee-sdk/lib/Service/PaymentProcessorConfigurationService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentProcessorConfigurationService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentProcessorService.php b/wallee-sdk/lib/Service/PaymentProcessorService.php index a576449..f1e664b 100644 --- a/wallee-sdk/lib/Service/PaymentProcessorService.php +++ b/wallee-sdk/lib/Service/PaymentProcessorService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentProcessorService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentTerminalService.php b/wallee-sdk/lib/Service/PaymentTerminalService.php index cbf9b93..62703a0 100644 --- a/wallee-sdk/lib/Service/PaymentTerminalService.php +++ b/wallee-sdk/lib/Service/PaymentTerminalService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalService { @@ -866,4 +866,5 @@ public function unlinkWithHttpInfo($space_id, $terminal_id) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentTerminalTillService.php b/wallee-sdk/lib/Service/PaymentTerminalTillService.php index ccda117..501700b 100644 --- a/wallee-sdk/lib/Service/PaymentTerminalTillService.php +++ b/wallee-sdk/lib/Service/PaymentTerminalTillService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalTillService { @@ -354,4 +354,5 @@ public function performTransactionByIdentifierWithHttpInfo($space_id, $transacti } } + } diff --git a/wallee-sdk/lib/Service/PaymentTerminalTransactionSummaryService.php b/wallee-sdk/lib/Service/PaymentTerminalTransactionSummaryService.php index fac3a9e..7e814f6 100644 --- a/wallee-sdk/lib/Service/PaymentTerminalTransactionSummaryService.php +++ b/wallee-sdk/lib/Service/PaymentTerminalTransactionSummaryService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentTerminalTransactionSummaryService { @@ -520,4 +520,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/PaymentWebAppService.php b/wallee-sdk/lib/Service/PaymentWebAppService.php index 37214ca..7b1f067 100644 --- a/wallee-sdk/lib/Service/PaymentWebAppService.php +++ b/wallee-sdk/lib/Service/PaymentWebAppService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PaymentWebAppService { @@ -1079,4 +1079,5 @@ public function updateVoidWithHttpInfo($space_id, $request) { } } + } diff --git a/wallee-sdk/lib/Service/PermissionService.php b/wallee-sdk/lib/Service/PermissionService.php index 6e0e8ef..0a29986 100644 --- a/wallee-sdk/lib/Service/PermissionService.php +++ b/wallee-sdk/lib/Service/PermissionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class PermissionService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/RefundBankTransactionService.php b/wallee-sdk/lib/Service/RefundBankTransactionService.php index ee08bf2..9f81324 100644 --- a/wallee-sdk/lib/Service/RefundBankTransactionService.php +++ b/wallee-sdk/lib/Service/RefundBankTransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundBankTransactionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/RefundCommentService.php b/wallee-sdk/lib/Service/RefundCommentService.php index b2b0102..e7ee6af 100644 --- a/wallee-sdk/lib/Service/RefundCommentService.php +++ b/wallee-sdk/lib/Service/RefundCommentService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundCommentService { @@ -185,7 +185,7 @@ public function allWithHttpInfo($space_id, $refund_id) { * Create * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\RefundCommentCreate $entity (required) + * @param \Wallee\Sdk\Model\RefundCommentCreate $entity The comment object which should be created. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -202,7 +202,7 @@ public function create($space_id, $entity) { * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\RefundCommentCreate $entity (required) + * @param \Wallee\Sdk\Model\RefundCommentCreate $entity The comment object which should be created. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -345,9 +345,6 @@ public function deleteWithHttpInfo($space_id, $id) { if (!is_null($space_id)) { $queryParams['spaceId'] = $this->apiClient->getSerializer()->toQueryValue($space_id); } - if (!is_null($id)) { - $queryParams['id'] = $this->apiClient->getSerializer()->toQueryValue($id); - } // path params $resourcePath = '/refund-comment/delete'; @@ -356,7 +353,12 @@ public function deleteWithHttpInfo($space_id, $id) { // form params $formParams = []; - + // body params + $tempBody = null; + if (isset($id)) { + $tempBody = $id; + } + // for model (json/xml) $httpBody = ''; if (isset($tempBody)) { @@ -413,7 +415,7 @@ public function deleteWithHttpInfo($space_id, $id) { * Pin * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to pin to the top. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -430,7 +432,7 @@ public function pin($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to pin to the top. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -526,7 +528,7 @@ public function pinWithHttpInfo($space_id, $id) { * Read * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment which should be returned. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -543,7 +545,7 @@ public function read($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment which should be returned. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -639,7 +641,7 @@ public function readWithHttpInfo($space_id, $id) { * Unpin * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to unpin. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -656,7 +658,7 @@ public function unpin($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to unpin. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -752,7 +754,7 @@ public function unpinWithHttpInfo($space_id, $id) { * Update * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\RefundCommentActive $entity (required) + * @param \Wallee\Sdk\Model\RefundCommentActive $entity The comment object with the properties which should be updated. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -769,7 +771,7 @@ public function update($space_id, $entity) { * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\RefundCommentActive $entity (required) + * @param \Wallee\Sdk\Model\RefundCommentActive $entity The comment object with the properties which should be updated. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -869,4 +871,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/RefundRecoveryBankTransactionService.php b/wallee-sdk/lib/Service/RefundRecoveryBankTransactionService.php index 001d60a..8452a17 100644 --- a/wallee-sdk/lib/Service/RefundRecoveryBankTransactionService.php +++ b/wallee-sdk/lib/Service/RefundRecoveryBankTransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundRecoveryBankTransactionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/RefundService.php b/wallee-sdk/lib/Service/RefundService.php index 36f8439..6ab7bee 100644 --- a/wallee-sdk/lib/Service/RefundService.php +++ b/wallee-sdk/lib/Service/RefundService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class RefundService { @@ -981,4 +981,5 @@ public function succeedWithHttpInfo($space_id, $refund_id) { } } + } diff --git a/wallee-sdk/lib/Service/ShopifyRecurringOrderService.php b/wallee-sdk/lib/Service/ShopifyRecurringOrderService.php index 81dce03..4bbff2e 100644 --- a/wallee-sdk/lib/Service/ShopifyRecurringOrderService.php +++ b/wallee-sdk/lib/Service/ShopifyRecurringOrderService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyRecurringOrderService { @@ -512,4 +512,5 @@ public function updateWithHttpInfo($space_id, $update_request) { } } + } diff --git a/wallee-sdk/lib/Service/ShopifySubscriberService.php b/wallee-sdk/lib/Service/ShopifySubscriberService.php index a5692be..d6cb430 100644 --- a/wallee-sdk/lib/Service/ShopifySubscriberService.php +++ b/wallee-sdk/lib/Service/ShopifySubscriberService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriberService { @@ -528,4 +528,5 @@ public function updateWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/ShopifySubscriptionProductService.php b/wallee-sdk/lib/Service/ShopifySubscriptionProductService.php index 03b8627..22217c6 100644 --- a/wallee-sdk/lib/Service/ShopifySubscriptionProductService.php +++ b/wallee-sdk/lib/Service/ShopifySubscriptionProductService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionProductService { @@ -643,4 +643,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/ShopifySubscriptionService.php b/wallee-sdk/lib/Service/ShopifySubscriptionService.php index e60c791..5672958 100644 --- a/wallee-sdk/lib/Service/ShopifySubscriptionService.php +++ b/wallee-sdk/lib/Service/ShopifySubscriptionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionService { @@ -864,4 +864,5 @@ public function updateAddressesWithHttpInfo($space_id, $update_request) { } } + } diff --git a/wallee-sdk/lib/Service/ShopifySubscriptionSuspensionService.php b/wallee-sdk/lib/Service/ShopifySubscriptionSuspensionService.php index 6908a91..fbf92ca 100644 --- a/wallee-sdk/lib/Service/ShopifySubscriptionSuspensionService.php +++ b/wallee-sdk/lib/Service/ShopifySubscriptionSuspensionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionSuspensionService { @@ -625,4 +625,5 @@ public function suspendWithHttpInfo($space_id, $suspension) { } } + } diff --git a/wallee-sdk/lib/Service/ShopifySubscriptionVersionService.php b/wallee-sdk/lib/Service/ShopifySubscriptionVersionService.php index 3f1151f..c9884a9 100644 --- a/wallee-sdk/lib/Service/ShopifySubscriptionVersionService.php +++ b/wallee-sdk/lib/Service/ShopifySubscriptionVersionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifySubscriptionVersionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/ShopifyTransactionService.php b/wallee-sdk/lib/Service/ShopifyTransactionService.php index b500ae9..a316064 100644 --- a/wallee-sdk/lib/Service/ShopifyTransactionService.php +++ b/wallee-sdk/lib/Service/ShopifyTransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class ShopifyTransactionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/SpaceService.php b/wallee-sdk/lib/Service/SpaceService.php index b39b385..deee894 100644 --- a/wallee-sdk/lib/Service/SpaceService.php +++ b/wallee-sdk/lib/Service/SpaceService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SpaceService { @@ -704,4 +704,5 @@ public function updateWithHttpInfo($entity) { } } + } diff --git a/wallee-sdk/lib/Service/StaticValueService.php b/wallee-sdk/lib/Service/StaticValueService.php index 4ce7f8c..91fbf70 100644 --- a/wallee-sdk/lib/Service/StaticValueService.php +++ b/wallee-sdk/lib/Service/StaticValueService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class StaticValueService { @@ -265,4 +265,5 @@ public function readWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriberService.php b/wallee-sdk/lib/Service/SubscriberService.php index 59ce765..b9eb2cf 100644 --- a/wallee-sdk/lib/Service/SubscriberService.php +++ b/wallee-sdk/lib/Service/SubscriberService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriberService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionAffiliateService.php b/wallee-sdk/lib/Service/SubscriptionAffiliateService.php index dfd9772..613ea4a 100644 --- a/wallee-sdk/lib/Service/SubscriptionAffiliateService.php +++ b/wallee-sdk/lib/Service/SubscriptionAffiliateService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionAffiliateService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionChargeService.php b/wallee-sdk/lib/Service/SubscriptionChargeService.php index ef3b91a..83e1493 100644 --- a/wallee-sdk/lib/Service/SubscriptionChargeService.php +++ b/wallee-sdk/lib/Service/SubscriptionChargeService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionChargeService { @@ -633,4 +633,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionLedgerEntryService.php b/wallee-sdk/lib/Service/SubscriptionLedgerEntryService.php index 6bce0e8..19442fd 100644 --- a/wallee-sdk/lib/Service/SubscriptionLedgerEntryService.php +++ b/wallee-sdk/lib/Service/SubscriptionLedgerEntryService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionLedgerEntryService { @@ -520,4 +520,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionMetricService.php b/wallee-sdk/lib/Service/SubscriptionMetricService.php index 05f531a..b3b6a8c 100644 --- a/wallee-sdk/lib/Service/SubscriptionMetricService.php +++ b/wallee-sdk/lib/Service/SubscriptionMetricService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionMetricUsageService.php b/wallee-sdk/lib/Service/SubscriptionMetricUsageService.php index 5a0f56d..8db2d70 100644 --- a/wallee-sdk/lib/Service/SubscriptionMetricUsageService.php +++ b/wallee-sdk/lib/Service/SubscriptionMetricUsageService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionMetricUsageService { @@ -520,4 +520,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionPeriodBillService.php b/wallee-sdk/lib/Service/SubscriptionPeriodBillService.php index 772001c..3c1a293 100644 --- a/wallee-sdk/lib/Service/SubscriptionPeriodBillService.php +++ b/wallee-sdk/lib/Service/SubscriptionPeriodBillService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionPeriodBillService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductComponentGroupService.php b/wallee-sdk/lib/Service/SubscriptionProductComponentGroupService.php index ae35a10..6c852f8 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductComponentGroupService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductComponentGroupService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponentGroupService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductComponentService.php b/wallee-sdk/lib/Service/SubscriptionProductComponentService.php index 9eb3385..cc5cd17 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductComponentService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductComponentService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductComponentService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductFeeTierService.php b/wallee-sdk/lib/Service/SubscriptionProductFeeTierService.php index 689e274..2edd953 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductFeeTierService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductFeeTierService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductFeeTierService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductMeteredFeeService.php b/wallee-sdk/lib/Service/SubscriptionProductMeteredFeeService.php index cc13342..0152ff1 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductMeteredFeeService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductMeteredFeeService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductMeteredFeeService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductPeriodFeeService.php b/wallee-sdk/lib/Service/SubscriptionProductPeriodFeeService.php index e3c3118..5422429 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductPeriodFeeService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductPeriodFeeService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductPeriodFeeService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductRetirementService.php b/wallee-sdk/lib/Service/SubscriptionProductRetirementService.php index 46385ea..434bd19 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductRetirementService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductRetirementService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductRetirementService { @@ -520,4 +520,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductService.php b/wallee-sdk/lib/Service/SubscriptionProductService.php index 21a8abd..59bae19 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductService { @@ -643,4 +643,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductSetupFeeService.php b/wallee-sdk/lib/Service/SubscriptionProductSetupFeeService.php index c2b46c9..0f6e540 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductSetupFeeService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductSetupFeeService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductSetupFeeService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductVersionRetirementService.php b/wallee-sdk/lib/Service/SubscriptionProductVersionRetirementService.php index d67f171..76a79df 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductVersionRetirementService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductVersionRetirementService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductVersionRetirementService { @@ -520,4 +520,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionProductVersionService.php b/wallee-sdk/lib/Service/SubscriptionProductVersionService.php index 9f496d4..130390f 100644 --- a/wallee-sdk/lib/Service/SubscriptionProductVersionService.php +++ b/wallee-sdk/lib/Service/SubscriptionProductVersionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionProductVersionService { @@ -756,4 +756,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionService.php b/wallee-sdk/lib/Service/SubscriptionService.php index 2cd1e95..ea246aa 100644 --- a/wallee-sdk/lib/Service/SubscriptionService.php +++ b/wallee-sdk/lib/Service/SubscriptionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionService { @@ -1387,4 +1387,5 @@ public function updateProductVersionWithHttpInfo($space_id, $subscription_id, $r } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionSuspensionService.php b/wallee-sdk/lib/Service/SubscriptionSuspensionService.php index 0c7bca6..c2c89e1 100644 --- a/wallee-sdk/lib/Service/SubscriptionSuspensionService.php +++ b/wallee-sdk/lib/Service/SubscriptionSuspensionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionSuspensionService { @@ -633,4 +633,5 @@ public function terminateWithHttpInfo($space_id, $suspension_id) { } } + } diff --git a/wallee-sdk/lib/Service/SubscriptionVersionService.php b/wallee-sdk/lib/Service/SubscriptionVersionService.php index 0eabe6b..13ca217 100644 --- a/wallee-sdk/lib/Service/SubscriptionVersionService.php +++ b/wallee-sdk/lib/Service/SubscriptionVersionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class SubscriptionVersionService { @@ -405,4 +405,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/TokenService.php b/wallee-sdk/lib/Service/TokenService.php index 533f0fd..811364c 100644 --- a/wallee-sdk/lib/Service/TokenService.php +++ b/wallee-sdk/lib/Service/TokenService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenService { @@ -405,6 +405,119 @@ public function createWithHttpInfo($space_id, $entity) { } } + /** + * Operation createToken + * + * Create Token + * + * @param int $space_id (required) + * @param int $transaction_id The id of the transaction for which we want to create the token. (required) + * @throws \Wallee\Sdk\ApiException + * @throws \Wallee\Sdk\VersioningException + * @throws \Wallee\Sdk\Http\ConnectionException + * @return \Wallee\Sdk\Model\Token + */ + public function createToken($space_id, $transaction_id) { + return $this->createTokenWithHttpInfo($space_id, $transaction_id)->getData(); + } + + /** + * Operation createTokenWithHttpInfo + * + * Create Token + + * + * @param int $space_id (required) + * @param int $transaction_id The id of the transaction for which we want to create the token. (required) + * @throws \Wallee\Sdk\ApiException + * @throws \Wallee\Sdk\VersioningException + * @throws \Wallee\Sdk\Http\ConnectionException + * @return ApiResponse + */ + public function createTokenWithHttpInfo($space_id, $transaction_id) { + // verify the required parameter 'space_id' is set + if (is_null($space_id)) { + throw new \InvalidArgumentException('Missing the required parameter $space_id when calling createToken'); + } + // verify the required parameter 'transaction_id' is set + if (is_null($transaction_id)) { + throw new \InvalidArgumentException('Missing the required parameter $transaction_id when calling createToken'); + } + // header params + $headerParams = []; + $headerAccept = $this->apiClient->selectHeaderAccept([]); + if (!is_null($headerAccept)) { + $headerParams[HttpRequest::HEADER_KEY_ACCEPT] = $headerAccept; + } + $headerParams[HttpRequest::HEADER_KEY_CONTENT_TYPE] = $this->apiClient->selectHeaderContentType([]); + + // query params + $queryParams = []; + if (!is_null($space_id)) { + $queryParams['spaceId'] = $this->apiClient->getSerializer()->toQueryValue($space_id); + } + if (!is_null($transaction_id)) { + $queryParams['transactionId'] = $this->apiClient->getSerializer()->toQueryValue($transaction_id); + } + + // path params + $resourcePath = '/token/create-token'; + // default format to json + $resourcePath = str_replace('{format}', 'json', $resourcePath); + + // form params + $formParams = []; + + // for model (json/xml) + $httpBody = ''; + if (isset($tempBody)) { + $httpBody = $tempBody; // $tempBody is the method argument, if present + } elseif (!empty($formParams)) { + $httpBody = $formParams; // for HTTP post (form) + } + // make the API Call + try { + $response = $this->apiClient->callApi( + $resourcePath, + 'POST', + $queryParams, + $httpBody, + $headerParams, + '\Wallee\Sdk\Model\Token', + '/token/create-token' + ); + return new ApiResponse($response->getStatusCode(), $response->getHeaders(), $this->apiClient->getSerializer()->deserialize($response->getData(), '\Wallee\Sdk\Model\Token', $response->getHeaders())); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\Wallee\Sdk\Model\Token', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + case 442: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\Wallee\Sdk\Model\ClientError', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + case 542: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\Wallee\Sdk\Model\ServerError', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + } + throw $e; + } + } + /** * Operation createTokenBasedOnTransaction * @@ -1210,4 +1323,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/TokenVersionService.php b/wallee-sdk/lib/Service/TokenVersionService.php index 09aa7b3..d85f195 100644 --- a/wallee-sdk/lib/Service/TokenVersionService.php +++ b/wallee-sdk/lib/Service/TokenVersionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TokenVersionService { @@ -518,4 +518,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionCommentService.php b/wallee-sdk/lib/Service/TransactionCommentService.php index 0f4eb2f..f1996d2 100644 --- a/wallee-sdk/lib/Service/TransactionCommentService.php +++ b/wallee-sdk/lib/Service/TransactionCommentService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCommentService { @@ -185,7 +185,7 @@ public function allWithHttpInfo($space_id, $transaction_id) { * Create * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionCommentCreate $entity (required) + * @param \Wallee\Sdk\Model\TransactionCommentCreate $entity The comment object which should be created. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -202,7 +202,7 @@ public function create($space_id, $entity) { * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionCommentCreate $entity (required) + * @param \Wallee\Sdk\Model\TransactionCommentCreate $entity The comment object which should be created. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -345,9 +345,6 @@ public function deleteWithHttpInfo($space_id, $id) { if (!is_null($space_id)) { $queryParams['spaceId'] = $this->apiClient->getSerializer()->toQueryValue($space_id); } - if (!is_null($id)) { - $queryParams['id'] = $this->apiClient->getSerializer()->toQueryValue($id); - } // path params $resourcePath = '/transaction-comment/delete'; @@ -356,7 +353,12 @@ public function deleteWithHttpInfo($space_id, $id) { // form params $formParams = []; - + // body params + $tempBody = null; + if (isset($id)) { + $tempBody = $id; + } + // for model (json/xml) $httpBody = ''; if (isset($tempBody)) { @@ -413,7 +415,7 @@ public function deleteWithHttpInfo($space_id, $id) { * Pin * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to pin to the top. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -430,7 +432,7 @@ public function pin($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to pin to the top. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -526,7 +528,7 @@ public function pinWithHttpInfo($space_id, $id) { * Read * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment which should be returned. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -543,7 +545,7 @@ public function read($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment which should be returned. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -639,7 +641,7 @@ public function readWithHttpInfo($space_id, $id) { * Unpin * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to unpin. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -656,7 +658,7 @@ public function unpin($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to unpin. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -752,7 +754,7 @@ public function unpinWithHttpInfo($space_id, $id) { * Update * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionCommentActive $entity (required) + * @param \Wallee\Sdk\Model\TransactionCommentActive $entity The comment object with the properties which should be updated. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -769,7 +771,7 @@ public function update($space_id, $entity) { * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionCommentActive $entity (required) + * @param \Wallee\Sdk\Model\TransactionCommentActive $entity The comment object with the properties which should be updated. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -869,4 +871,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionCompletionService.php b/wallee-sdk/lib/Service/TransactionCompletionService.php index b44361d..788af1e 100644 --- a/wallee-sdk/lib/Service/TransactionCompletionService.php +++ b/wallee-sdk/lib/Service/TransactionCompletionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionCompletionService { @@ -861,4 +861,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionIframeService.php b/wallee-sdk/lib/Service/TransactionIframeService.php index e270da3..1dfc104 100644 --- a/wallee-sdk/lib/Service/TransactionIframeService.php +++ b/wallee-sdk/lib/Service/TransactionIframeService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionIframeService { @@ -187,4 +187,5 @@ public function javascriptUrlWithHttpInfo($space_id, $id) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionInvoiceCommentService.php b/wallee-sdk/lib/Service/TransactionInvoiceCommentService.php index c1ab70d..325badd 100644 --- a/wallee-sdk/lib/Service/TransactionInvoiceCommentService.php +++ b/wallee-sdk/lib/Service/TransactionInvoiceCommentService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoiceCommentService { @@ -185,7 +185,7 @@ public function allWithHttpInfo($space_id, $invoice_id) { * Create * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionInvoiceCommentCreate $entity (required) + * @param \Wallee\Sdk\Model\TransactionInvoiceCommentCreate $entity The comment object which should be created. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -202,7 +202,7 @@ public function create($space_id, $entity) { * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionInvoiceCommentCreate $entity (required) + * @param \Wallee\Sdk\Model\TransactionInvoiceCommentCreate $entity The comment object which should be created. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -345,9 +345,6 @@ public function deleteWithHttpInfo($space_id, $id) { if (!is_null($space_id)) { $queryParams['spaceId'] = $this->apiClient->getSerializer()->toQueryValue($space_id); } - if (!is_null($id)) { - $queryParams['id'] = $this->apiClient->getSerializer()->toQueryValue($id); - } // path params $resourcePath = '/transaction-invoice-comment/delete'; @@ -356,7 +353,12 @@ public function deleteWithHttpInfo($space_id, $id) { // form params $formParams = []; - + // body params + $tempBody = null; + if (isset($id)) { + $tempBody = $id; + } + // for model (json/xml) $httpBody = ''; if (isset($tempBody)) { @@ -413,7 +415,7 @@ public function deleteWithHttpInfo($space_id, $id) { * Pin * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to pin to the top. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -430,7 +432,7 @@ public function pin($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to pin to the top. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -526,7 +528,7 @@ public function pinWithHttpInfo($space_id, $id) { * Read * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment which should be returned. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -543,7 +545,7 @@ public function read($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment which should be returned. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -639,7 +641,7 @@ public function readWithHttpInfo($space_id, $id) { * Unpin * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to unpin. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -656,7 +658,7 @@ public function unpin($space_id, $id) { * * @param int $space_id (required) - * @param int $id (required) + * @param int $id The id of the comment to unpin. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -752,7 +754,7 @@ public function unpinWithHttpInfo($space_id, $id) { * Update * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionInvoiceCommentActive $entity (required) + * @param \Wallee\Sdk\Model\TransactionInvoiceCommentActive $entity The comment object with the properties which should be updated. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -769,7 +771,7 @@ public function update($space_id, $entity) { * * @param int $space_id (required) - * @param \Wallee\Sdk\Model\TransactionInvoiceCommentActive $entity (required) + * @param \Wallee\Sdk\Model\TransactionInvoiceCommentActive $entity The comment object with the properties which should be updated. (required) * @throws \Wallee\Sdk\ApiException * @throws \Wallee\Sdk\VersioningException * @throws \Wallee\Sdk\Http\ConnectionException @@ -869,4 +871,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionInvoiceService.php b/wallee-sdk/lib/Service/TransactionInvoiceService.php index 97a0039..7fbdb91 100644 --- a/wallee-sdk/lib/Service/TransactionInvoiceService.php +++ b/wallee-sdk/lib/Service/TransactionInvoiceService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionInvoiceService { @@ -1103,4 +1103,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionLightboxService.php b/wallee-sdk/lib/Service/TransactionLightboxService.php index b25b90e..9bdac14 100644 --- a/wallee-sdk/lib/Service/TransactionLightboxService.php +++ b/wallee-sdk/lib/Service/TransactionLightboxService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionLightboxService { @@ -187,4 +187,5 @@ public function javascriptUrlWithHttpInfo($space_id, $id) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionLineItemVersionService.php b/wallee-sdk/lib/Service/TransactionLineItemVersionService.php index 1ebf966..475a345 100644 --- a/wallee-sdk/lib/Service/TransactionLineItemVersionService.php +++ b/wallee-sdk/lib/Service/TransactionLineItemVersionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionLineItemVersionService { @@ -520,4 +520,5 @@ public function searchWithHttpInfo($space_id, $query) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionMobileSdkService.php b/wallee-sdk/lib/Service/TransactionMobileSdkService.php index cd82daf..6c71e00 100644 --- a/wallee-sdk/lib/Service/TransactionMobileSdkService.php +++ b/wallee-sdk/lib/Service/TransactionMobileSdkService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionMobileSdkService { @@ -178,4 +178,5 @@ public function paymentFormUrlWithHttpInfo($credentials) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionPaymentPageService.php b/wallee-sdk/lib/Service/TransactionPaymentPageService.php index 60f949c..e34956a 100644 --- a/wallee-sdk/lib/Service/TransactionPaymentPageService.php +++ b/wallee-sdk/lib/Service/TransactionPaymentPageService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionPaymentPageService { @@ -187,4 +187,5 @@ public function paymentPageUrlWithHttpInfo($space_id, $id) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionService.php b/wallee-sdk/lib/Service/TransactionService.php index 742fbb8..db35619 100644 --- a/wallee-sdk/lib/Service/TransactionService.php +++ b/wallee-sdk/lib/Service/TransactionService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionService { @@ -2107,4 +2107,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/TransactionTerminalService.php b/wallee-sdk/lib/Service/TransactionTerminalService.php index f832f1c..dd1bc78 100644 --- a/wallee-sdk/lib/Service/TransactionTerminalService.php +++ b/wallee-sdk/lib/Service/TransactionTerminalService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionTerminalService { @@ -308,4 +308,5 @@ public function tillConnectionCredentialsWithHttpInfo($space_id, $transaction_id } } + } diff --git a/wallee-sdk/lib/Service/TransactionVoidService.php b/wallee-sdk/lib/Service/TransactionVoidService.php index 460cd00..e7f7035 100644 --- a/wallee-sdk/lib/Service/TransactionVoidService.php +++ b/wallee-sdk/lib/Service/TransactionVoidService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class TransactionVoidService { @@ -631,4 +631,5 @@ public function voidOnlineWithHttpInfo($space_id, $id) { } } + } diff --git a/wallee-sdk/lib/Service/UserAccountRoleService.php b/wallee-sdk/lib/Service/UserAccountRoleService.php index 9bded9e..1c1fb7c 100644 --- a/wallee-sdk/lib/Service/UserAccountRoleService.php +++ b/wallee-sdk/lib/Service/UserAccountRoleService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class UserAccountRoleService { @@ -402,4 +402,5 @@ public function removeRoleWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/UserSpaceRoleService.php b/wallee-sdk/lib/Service/UserSpaceRoleService.php index 484e2eb..140ba21 100644 --- a/wallee-sdk/lib/Service/UserSpaceRoleService.php +++ b/wallee-sdk/lib/Service/UserSpaceRoleService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class UserSpaceRoleService { @@ -405,4 +405,5 @@ public function removeRoleWithHttpInfo($id) { } } + } diff --git a/wallee-sdk/lib/Service/WebAppService.php b/wallee-sdk/lib/Service/WebAppService.php index ef24ec2..67da5af 100644 --- a/wallee-sdk/lib/Service/WebAppService.php +++ b/wallee-sdk/lib/Service/WebAppService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebAppService { @@ -372,4 +372,5 @@ public function uninstallWithHttpInfo($space_id) { } } + } diff --git a/wallee-sdk/lib/Service/WebhookEncryptionService.php b/wallee-sdk/lib/Service/WebhookEncryptionService.php new file mode 100644 index 0000000..34c799d --- /dev/null +++ b/wallee-sdk/lib/Service/WebhookEncryptionService.php @@ -0,0 +1,199 @@ +apiClient = $apiClient; + } + + /** + * Returns the API client instance. + * + * @return ApiClient + */ + public function getApiClient() { + return $this->apiClient; + } + + + /** + * Operation read + * + * Read + * + * @param string $id The ID of the key version. (required) + * @throws \Wallee\Sdk\ApiException + * @throws \Wallee\Sdk\VersioningException + * @throws \Wallee\Sdk\Http\ConnectionException + * @return \Wallee\Sdk\Model\WebhookEncryptionPublicKey + */ + public function read($id) { + return $this->readWithHttpInfo($id)->getData(); + } + + /** + * Operation readWithHttpInfo + * + * Read + + * + * @param string $id The ID of the key version. (required) + * @throws \Wallee\Sdk\ApiException + * @throws \Wallee\Sdk\VersioningException + * @throws \Wallee\Sdk\Http\ConnectionException + * @return ApiResponse + */ + public function readWithHttpInfo($id) { + // verify the required parameter 'id' is set + if (is_null($id)) { + throw new \InvalidArgumentException('Missing the required parameter $id when calling read'); + } + // header params + $headerParams = []; + $headerAccept = $this->apiClient->selectHeaderAccept(['application/json;charset=utf-8']); + if (!is_null($headerAccept)) { + $headerParams[HttpRequest::HEADER_KEY_ACCEPT] = $headerAccept; + } + $headerParams[HttpRequest::HEADER_KEY_CONTENT_TYPE] = $this->apiClient->selectHeaderContentType(['*/*']); + + // query params + $queryParams = []; + if (!is_null($id)) { + $queryParams['id'] = $this->apiClient->getSerializer()->toQueryValue($id); + } + + // path params + $resourcePath = '/webhook-encryption/read'; + // default format to json + $resourcePath = str_replace('{format}', 'json', $resourcePath); + + // form params + $formParams = []; + + // for model (json/xml) + $httpBody = ''; + if (isset($tempBody)) { + $httpBody = $tempBody; // $tempBody is the method argument, if present + } elseif (!empty($formParams)) { + $httpBody = $formParams; // for HTTP post (form) + } + // make the API Call + try { + $response = $this->apiClient->callApi( + $resourcePath, + 'GET', + $queryParams, + $httpBody, + $headerParams, + '\Wallee\Sdk\Model\WebhookEncryptionPublicKey', + '/webhook-encryption/read' + ); + return new ApiResponse($response->getStatusCode(), $response->getHeaders(), $this->apiClient->getSerializer()->deserialize($response->getData(), '\Wallee\Sdk\Model\WebhookEncryptionPublicKey', $response->getHeaders())); + } catch (ApiException $e) { + switch ($e->getCode()) { + case 200: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\Wallee\Sdk\Model\WebhookEncryptionPublicKey', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + case 442: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\Wallee\Sdk\Model\ClientError', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + case 542: + $data = ObjectSerializer::deserialize( + $e->getResponseBody(), + '\Wallee\Sdk\Model\ServerError', + $e->getResponseHeaders() + ); + $e->setResponseObject($data); + break; + } + throw $e; + } + } + + /** + * Verify webhook content with content signature + * + * @param $signatureHeader raw X-Signature header value + * @param $contentToVerify raw body content + * @return true if content is verified by the signature + */ + public function isContentValid($signatureHeader, $contentToVerify) { + $regex = "/^algorithm=([a-zA-Z0-9]+),\skeyId=([a-z0-9\-]+),\s{1}signature=([a-zA-Z0-9+\/=]+)$/"; + if (preg_match($regex, $signatureHeader, $matches)) { + $signatureAlgorithm = $matches[1]; + $publicKeyId = $matches[2]; + $contentSignature = $matches[3]; + + $publicKey = $this->read($publicKeyId); + if (is_null($publicKey->getPublicKey())) { + throw new \InvalidArgumentException('Unknown webhook encryption key'); + } + + return EncryptionUtil::isContentValid($contentToVerify, $contentSignature, $publicKey->getPublicKey(), $signatureAlgorithm); + } else { + throw new \InvalidArgumentException('Invalid webhook signature header. Expected format: "algorithm=, keyId=, signature="'); + } + } + +} diff --git a/wallee-sdk/lib/Service/WebhookListenerService.php b/wallee-sdk/lib/Service/WebhookListenerService.php index 4a15bdc..7c3e23c 100644 --- a/wallee-sdk/lib/Service/WebhookListenerService.php +++ b/wallee-sdk/lib/Service/WebhookListenerService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookListenerService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/Service/WebhookUrlService.php b/wallee-sdk/lib/Service/WebhookUrlService.php index 858a274..223decb 100644 --- a/wallee-sdk/lib/Service/WebhookUrlService.php +++ b/wallee-sdk/lib/Service/WebhookUrlService.php @@ -31,7 +31,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class WebhookUrlService { @@ -758,4 +758,5 @@ public function updateWithHttpInfo($space_id, $entity) { } } + } diff --git a/wallee-sdk/lib/ValidationException.php b/wallee-sdk/lib/ValidationException.php index 2decba6..d4ccc79 100644 --- a/wallee-sdk/lib/ValidationException.php +++ b/wallee-sdk/lib/ValidationException.php @@ -27,7 +27,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ final class ValidationException extends Exception { diff --git a/wallee-sdk/lib/VersioningException.php b/wallee-sdk/lib/VersioningException.php index 7053c86..660ab51 100644 --- a/wallee-sdk/lib/VersioningException.php +++ b/wallee-sdk/lib/VersioningException.php @@ -27,7 +27,7 @@ * * @category Class * @package Wallee\Sdk - * @author customweb GmbH + * @author wallee AG * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 */ class VersioningException extends Exception { diff --git a/wallee-sdk/lib/ca-bundle.crt b/wallee-sdk/lib/ca-bundle.crt index 5bdb9eb..93e73b7 100644 --- a/wallee-sdk/lib/ca-bundle.crt +++ b/wallee-sdk/lib/ca-bundle.crt @@ -1,142 +1,103 @@ -----BEGIN CERTIFICATE----- -MIIGEzCCA/ugAwIBAgIQfVtRJrR2uhHbdBYLvFMNpzANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK -ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwHhcNMTgxMTAyMDAwMDAwWhcNMzAxMjMxMjM1OTU5WjCBjzELMAkGA1UE -BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEYMBYG -A1UEChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQDEy5TZWN0aWdvIFJTQSBEb21haW4gVmFsaWRh -dGlvbiBTZWN1cmUgU2VydmVyIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1nMz -1tc8INAA0hdFuNY+B6I/x0HuMjDJsGz99J/LEpgPLT+NTQEMgg8Xf2Iu6bhIefsWg06t1zIlk7cH -v7lQP6lMw0Aq6Tn/2YHKHxYyQdqAJrkjeocgHuP/IJo8lURvh3UGkEC0MpMWCRAIIz7S3YcPb11R -FGoKacVPAXJpz9OTTG0EoKMbgn6xmrntxZ7FN3ifmgg0+1YuWMQJDgZkW7w33PGfKGioVrCSo1yf -u4iYCBskHaswha6vsC6eep3BwEIc4gLw6uBK0u+QDrTBQBbwb4VCSmT3pDCg/r8uoydajotYuK3D -GReEY+1vVv2Dy2A0xHS+5p3b4eTlygxfFQIDAQABo4IBbjCCAWowHwYDVR0jBBgwFoAUU3m/Wqor -Ss9UgOHYm8Cd8rIDZsswHQYDVR0OBBYEFI2MXsRUrYrhd+mb+ZsF4bgBjWHhMA4GA1UdDwEB/wQE -AwIBhjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAb -BgNVHSAEFDASMAYGBFUdIAAwCAYGZ4EMAQIBMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9jcmwu -dXNlcnRydXN0LmNvbS9VU0VSVHJ1c3RSU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDB2Bggr -BgEFBQcBAQRqMGgwPwYIKwYBBQUHMAKGM2h0dHA6Ly9jcnQudXNlcnRydXN0LmNvbS9VU0VSVHJ1 -c3RSU0FBZGRUcnVzdENBLmNydDAlBggrBgEFBQcwAYYZaHR0cDovL29jc3AudXNlcnRydXN0LmNv -bTANBgkqhkiG9w0BAQwFAAOCAgEAMr9hvQ5Iw0/HukdN+Jx4GQHcEx2Ab/zDcLRSmjEzmldS+zGe -a6TvVKqJjUAXaPgREHzSyrHxVYbH7rM2kYb2OVG/Rr8PoLq0935JxCo2F57kaDl6r5ROVm+yezu/ -Coa9zcV3HAO4OLGiH19+24rcRki2aArPsrW04jTkZ6k4Zgle0rj8nSg6F0AnwnJOKf0hPHzPE/uW -LMUxRP0T7dWbqWlod3zu4f+k+TY4CFM5ooQ0nBnzvg6s1SQ36yOoeNDT5++SR2RiOSLvxvcRviKF -xmZEJCaOEDKNyJOuB56DPi/Z+fVGjmO+wea03KbNIaiGCpXZLoUmGv38sbZXQm2V0TP2ORQGgkE4 -9Y9Y3IBbpNV9lXj9p5v//cWoaasm56ekBYdbqbe4oyALl6lFhd2zi+WJN44pDfwGF/Y4QA5C5BIG -+3vzxhFoYt/jmPQT2BVPi7Fp2RBgvGQq6jG35LWjOhSbJuMLe/0CjraZwTiXWTb2qHSihrZe68Zk -6s+go/lunrotEbaGmAhYLcmsJWTyXnW0OMGuf1pGg+pRyrbxmRE1a6Vqe8YAsOf4vmSyrcjC8azj -Ueqkk+B5yOGBQMkKW+ESPMFgKuOXwIlCypTPRpgSabuY0MLTDXJLR27lk8QyKGOHQ+SwMj4K00u/ -I5sUKUErmgQfky3xxzlIPK1aEn8= +MIIGODCCBSCgAwIBAgIQIZpsL7DYK+IzSeL822eBWjANBgkqhkiG9w0BAQsFADCB +jzELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQD +Ey5TZWN0aWdvIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB +MB4XDTIzMTIxNTAwMDAwMFoXDTI0MTIxNTIzNTk1OVowGzEZMBcGA1UEAwwQKi5h +cHAtd2FsbGVlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKjV +2sJ7DYY1SJqx8LroFtE4uckFNwjNbyu1Tir2wuVLxPlisQ2DhHoWCz3TprN8B6ph +fOZ+0YlOluLBfrvGBEV+yCekNlfWZXPLPihPzLPXZBkssfWkaNTMSJxH9FUO/0O3 +etdAsg3AQ1HCPw/Ayt/UKmuyV3/1pQ4AbKyQnaazfCyCdp4Kkcqj+mKlDn75g+nz +/WFbcXQN5andTY2a8jDOTD89A5+2h1pt4FsYLjci8Fgdfe1NZf9VVE4iLOwFB7AE +PqpgMCWIxbsWjVIySnvND36KQwYi9iCV+EwylpEXqHcr+L4IYziFFXIpx4Yesdi7 +9/oRIl4PXNFwne+etCUCAwEAAaOCAwEwggL9MB8GA1UdIwQYMBaAFI2MXsRUrYrh +d+mb+ZsF4bgBjWHhMB0GA1UdDgQWBBTR5fgllxgI4R1jIBAX/OPHfetEXDAOBgNV +HQ8BAf8EBAMCBaAwDAYDVR0TAQH/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYI +KwYBBQUHAwIwSQYDVR0gBEIwQDA0BgsrBgEEAbIxAQICBzAlMCMGCCsGAQUFBwIB +FhdodHRwczovL3NlY3RpZ28uY29tL0NQUzAIBgZngQwBAgEwgYQGCCsGAQUFBwEB +BHgwdjBPBggrBgEFBQcwAoZDaHR0cDovL2NydC5zZWN0aWdvLmNvbS9TZWN0aWdv +UlNBRG9tYWluVmFsaWRhdGlvblNlY3VyZVNlcnZlckNBLmNydDAjBggrBgEFBQcw +AYYXaHR0cDovL29jc3Auc2VjdGlnby5jb20wKwYDVR0RBCQwIoIQKi5hcHAtd2Fs +bGVlLmNvbYIOYXBwLXdhbGxlZS5jb20wggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkB +ZwB3AHb/iD8KtvuVUcJhzPWHujS0pM27KdxoQgqf5mdMWjp0AAABjGx3ZawAAAQD +AEgwRgIhAItXGXz0JcuPimnNl+ID5WleExp8E6qnHnBc2IQoZbKtAiEA23sERR3w +b3Dt7FQJGi1FYWbnzNr6yF2efc33HTfOaFYAdQA/F0tP1yJHWJQdZRyEvg0S7ZA3 +fx+FauvBvyiF7PhkbgAAAYxsd2YFAAAEAwBGMEQCICWepdjbEyVrKL4sxE57Yf1d +n0d+Ya28H7XLZ6l4qaqOAiBmIzaSP+DhQfAqSgGbB07Dpr4IodPoTCs1Oi79mEEF +kwB1AO7N0GTV2xrOxVy3nbTNE6Iyh0Z8vOzew1FIWUZxH7WbAAABjGx3ZdMAAAQD +AEYwRAIgObplus1dTtn7W4PQtqNplTONarpb7x7ABDfj99LJujECIEbCN/zZewB+ +ew4b/PH37HV6fxk+LKBFzGDa6KU7gVptMA0GCSqGSIb3DQEBCwUAA4IBAQCBByYa +DPyMC5EnKuC7lATcHU46jVlsyIEEkF1JHV4Qqjn2MbXaCrnu1sWvBA1u47ETxviT +vSgY8CVBajvFDc4HJPLhbL/TeIYOd9HnwldOiSsAgmci50pelTjVrsrwP4HZ9NOm +4pnWxLIitB5QJUEWf4Yjq2nJ7pV37nA20rh/Z3isaTcBc7/sZzLdYFKaqntM/PQu +HTZ9gXLYiRVa4dwW4J2QsNCP/b3hgwAPHpYKfrmu9Tb7u4b7uhzoQR20ZZAHBFRb +YqexutxlsxSQMM9tm1p5ZHe7+Z3DSEn+Cb9420taEBXj3sryFI37lhujTd3tH9yl +lJWNi0+991tfq5Lr -----END CERTIFICATE----- - -----BEGIN CERTIFICATE----- -MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK -ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK -ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz -0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j -Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn -RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O -+T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq -/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE -Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM -lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8 -yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+ -eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd -BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF -MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW -FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ -7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ -Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM -8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi -FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi -yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c -J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw -sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx -Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9 +MIIGEzCCA/ugAwIBAgIQfVtRJrR2uhHbdBYLvFMNpzANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTgx +MTAyMDAwMDAwWhcNMzAxMjMxMjM1OTU5WjCBjzELMAkGA1UEBhMCR0IxGzAZBgNV +BAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEYMBYGA1UE +ChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQDEy5TZWN0aWdvIFJTQSBEb21haW4g +VmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEA1nMz1tc8INAA0hdFuNY+B6I/x0HuMjDJsGz99J/LEpgPLT+N +TQEMgg8Xf2Iu6bhIefsWg06t1zIlk7cHv7lQP6lMw0Aq6Tn/2YHKHxYyQdqAJrkj +eocgHuP/IJo8lURvh3UGkEC0MpMWCRAIIz7S3YcPb11RFGoKacVPAXJpz9OTTG0E +oKMbgn6xmrntxZ7FN3ifmgg0+1YuWMQJDgZkW7w33PGfKGioVrCSo1yfu4iYCBsk +Haswha6vsC6eep3BwEIc4gLw6uBK0u+QDrTBQBbwb4VCSmT3pDCg/r8uoydajotY +uK3DGReEY+1vVv2Dy2A0xHS+5p3b4eTlygxfFQIDAQABo4IBbjCCAWowHwYDVR0j +BBgwFoAUU3m/WqorSs9UgOHYm8Cd8rIDZsswHQYDVR0OBBYEFI2MXsRUrYrhd+mb ++ZsF4bgBjWHhMA4GA1UdDwEB/wQEAwIBhjASBgNVHRMBAf8ECDAGAQH/AgEAMB0G +A1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAbBgNVHSAEFDASMAYGBFUdIAAw +CAYGZ4EMAQIBMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9jcmwudXNlcnRydXN0 +LmNvbS9VU0VSVHJ1c3RSU0FDZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDB2Bggr +BgEFBQcBAQRqMGgwPwYIKwYBBQUHMAKGM2h0dHA6Ly9jcnQudXNlcnRydXN0LmNv +bS9VU0VSVHJ1c3RSU0FBZGRUcnVzdENBLmNydDAlBggrBgEFBQcwAYYZaHR0cDov +L29jc3AudXNlcnRydXN0LmNvbTANBgkqhkiG9w0BAQwFAAOCAgEAMr9hvQ5Iw0/H +ukdN+Jx4GQHcEx2Ab/zDcLRSmjEzmldS+zGea6TvVKqJjUAXaPgREHzSyrHxVYbH +7rM2kYb2OVG/Rr8PoLq0935JxCo2F57kaDl6r5ROVm+yezu/Coa9zcV3HAO4OLGi +H19+24rcRki2aArPsrW04jTkZ6k4Zgle0rj8nSg6F0AnwnJOKf0hPHzPE/uWLMUx +RP0T7dWbqWlod3zu4f+k+TY4CFM5ooQ0nBnzvg6s1SQ36yOoeNDT5++SR2RiOSLv +xvcRviKFxmZEJCaOEDKNyJOuB56DPi/Z+fVGjmO+wea03KbNIaiGCpXZLoUmGv38 +sbZXQm2V0TP2ORQGgkE49Y9Y3IBbpNV9lXj9p5v//cWoaasm56ekBYdbqbe4oyAL +l6lFhd2zi+WJN44pDfwGF/Y4QA5C5BIG+3vzxhFoYt/jmPQT2BVPi7Fp2RBgvGQq +6jG35LWjOhSbJuMLe/0CjraZwTiXWTb2qHSihrZe68Zk6s+go/lunrotEbaGmAhY +LcmsJWTyXnW0OMGuf1pGg+pRyrbxmRE1a6Vqe8YAsOf4vmSyrcjC8azjUeqkk+B5 +yOGBQMkKW+ESPMFgKuOXwIlCypTPRpgSabuY0MLTDXJLR27lk8QyKGOHQ+SwMj4K +00u/I5sUKUErmgQfky3xxzlIPK1aEn8= -----END CERTIFICATE----- - -----BEGIN CERTIFICATE----- -MIIGtzCCBJ+gAwIBAgIQAPodqurJs6X6V5gLmXTaMTANBgkqhkiG9w0BAQsFADBFMQswCQYDVQQG -EwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAt -IEcyMB4XDTE0MDkxOTE0MDkxMloXDTI5MDkxNTE0MDkxMlowUjELMAkGA1UEBhMCQ0gxFTATBgNV -BAoTDFN3aXNzU2lnbiBBRzEsMCoGA1UEAxMjU3dpc3NTaWduIFNlcnZlciBHb2xkIENBIDIwMTQg -LSBHMjIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQzxIi30mNQL6Fa6afsl9Fs7it -1XQSfLb+T3omoxS2IJiUNVCoyMeBEVSFB2a0tEUnyOjfcSn++++pWoAOkU5wWp7bbNo4yq/T5LBg -1HcuPm+wH94V4IwAFFatfZIIrmaTfVRzrZ26CrEM2vISb/1u2SVzAnmPWoY3JVGbDOXw5HEpI6W/ -zLnd6cetY/ZPwp/9UICzCQxD5PmPiSP18dhTnm8LP4G/go5VK5JQu52NvH9iStYs9VVXvHiq7+1R -dkQa72CmB9wx6MmXqv3MAde/tt03L9o5uB6VPx2uJQ6G0S+gpyqwKbeUBhJxBZNRRftXyXnZxg48 -ZBYb26tiPfTVAgMBAAGjggKUMIICkDAOBgNVHQ8BAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIB -ADAdBgNVHQ4EFgQU5/Hn/S5TrRHlgRpXpHOPEn2YyK4wHwYDVR0jBBgwFoAUWyV7lqRlUX64OfPA -eGZe6Drn8O4wgf8GA1UdHwSB9zCB9DBHoEWgQ4ZBaHR0cDovL2NybC5zd2lzc3NpZ24ubmV0LzVC -MjU3Qjk2QTQ2NTUxN0VCODM5RjNDMDc4NjY1RUU4M0FFN0YwRUUwgaiggaWggaKGgZ9sZGFwOi8v -ZGlyZWN0b3J5LnN3aXNzc2lnbi5uZXQvQ049NUIyNTdCOTZBNDY1NTE3RUI4MzlGM0MwNzg2NjVF -RTgzQUU3RjBFRSUyQ089U3dpc3NTaWduJTJDQz1DSD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0 -P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwXwYDVR0gBFgwVjBUBglghXQB -WQECAQYwRzBFBggrBgEFBQcCARY5aHR0cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS9Td2lz -c1NpZ24tR29sZC1DUC1DUFMucGRmMIHGBggrBgEFBQcBAQSBuTCBtjBkBggrBgEFBQcwAoZYaHR0 -cDovL3N3aXNzc2lnbi5uZXQvY2dpLWJpbi9hdXRob3JpdHkvZG93bmxvYWQvNUIyNTdCOTZBNDY1 -NTE3RUI4MzlGM0MwNzg2NjVFRTgzQUU3RjBFRTBOBggrBgEFBQcwAYZCaHR0cDovL29jc3Auc3dp -c3NzaWduLm5ldC81QjI1N0I5NkE0NjU1MTdFQjgzOUYzQzA3ODY2NUVFODNBRTdGMEVFMA0GCSqG -SIb3DQEBCwUAA4ICAQCOLN7o1oxUHESHOxMtyaF0+Mehvb5xp+4BL9kuUI7GQdY9HiGZYLSVhQ+g -zKK0/TpxZksZ3klVUpyjqmBZruaTWhd5p0K4hTECK6g3zNG7zDkAR9ZZS+O991u0FlqASfWNWKc1 -n6J4Lu/wyGv72NuqNA/SbGscP4+fOX8yelJ2KFONxQNIjftNyHX8lmlUj2YAh49yiWkPY1tsFfKK -zqNJlTEIEFkJkOIM7wVRIPgRu23jhlpajCIayCarJ41gn/UHXVgo4oDmrIA1aE9F2prtHWn+Yd8v -tQkixPwJroq1Y0na76WSj7xnQxSEr7/aXUjPn498Pw3iD+76Vub8nislsEFYjn21pXOWGjr5PciC -qdivV5kfHWo+p6isSu5hW6lkEzKa9bEKZsiUF4NzZeobDegyer8TYXkEDP91oD1iDum0i87ksljy -3pKPKr4Aa5HEDof4Kn2ZWckemrbJwVVxHddoQ3LU004zZUjSAfmmhwcPymCkCnSXAtLkS8Fz40wH -vB1HgpBLLu/ds9gmupv3o4ZPlgbYfQelIKes4Vtg8x/23scUbv4vuScmpyzbjYrqhAmGafUoCbam -KTv/1KfIcTHJrWV8eakrrqI8aSkmcY5jBSygIZ+muisznpeXBNZI4fJM/jFJF9W4jqLysCU9w9aD -acEsRSLeSVUkc1TN7g== ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw -EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN -MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp -c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B -AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq -t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C -jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg -vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF -ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR -AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend -jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO -peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR -7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi -GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64 -OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov -L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm -5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr -44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf -Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m -Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp -mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk -vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf -KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br -NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj -viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ ------END CERTIFICATE----- - ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE -ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li -ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC -SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs -dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME -uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB -UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C -G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9 -XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr -l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI -VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB -BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh -cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5 -hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa -Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H -RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +MIIFgTCCBGmgAwIBAgIQOXJEOvkit1HX02wQ3TE1lTANBgkqhkiG9w0BAQwFADB7 +MQswCQYDVQQGEwJHQjEbMBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYD +VQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UE +AwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTE5MDMxMjAwMDAwMFoXDTI4 +MTIzMTIzNTk1OVowgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpOZXcgSmVyc2V5 +MRQwEgYDVQQHEwtKZXJzZXkgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBO +ZXR3b3JrMS4wLAYDVQQDEyVVU0VSVHJ1c3QgUlNBIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAgBJlFzYOw9sI +s9CsVw127c0n00ytUINh4qogTQktZAnczomfzD2p7PbPwdzx07HWezcoEStH2jnG +vDoZtF+mvX2do2NCtnbyqTsrkfjib9DsFiCQCT7i6HTJGLSR1GJk23+jBvGIGGqQ +Ijy8/hPwhxR79uQfjtTkUcYRZ0YIUcuGFFQ/vDP+fmyc/xadGL1RjjWmp2bIcmfb +IWax1Jt4A8BQOujM8Ny8nkz+rwWWNR9XWrf/zvk9tyy29lTdyOcSOk2uTIq3XJq0 +tyA9yn8iNK5+O2hmAUTnAU5GU5szYPeUvlM3kHND8zLDU+/bqv50TmnHa4xgk97E +xwzf4TKuzJM7UXiVZ4vuPVb+DNBpDxsP8yUmazNt925H+nND5X4OpWaxKXwyhGNV +icQNwZNUMBkTrNN9N6frXTpsNVzbQdcS2qlJC9/YgIoJk2KOtWbPJYjNhLixP6Q5 +D9kCnusSTJV882sFqV4Wg8y4Z+LoE53MW4LTTLPtW//e5XOsIzstAL81VXQJSdhJ +WBp/kjbmUZIO8yZ9HE0XvMnsQybQv0FfQKlERPSZ51eHnlAfV1SoPv10Yy+xUGUJ +5lhCLkMaTLTwJUdZ+gQek9QmRkpQgbLevni3/GcV4clXhB4PY9bpYrrWX1Uu6lzG +KAgEJTm4Diup8kyXHAc/DVL17e8vgg8CAwEAAaOB8jCB7zAfBgNVHSMEGDAWgBSg +EQojPpbxB+zirynvgqV/0DCktDAdBgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rID +ZsswDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0gBAowCDAG +BgRVHSAAMEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwuY29tb2RvY2EuY29t +L0FBQUNlcnRpZmljYXRlU2VydmljZXMuY3JsMDQGCCsGAQUFBwEBBCgwJjAkBggr +BgEFBQcwAYYYaHR0cDovL29jc3AuY29tb2RvY2EuY29tMA0GCSqGSIb3DQEBDAUA +A4IBAQAYh1HcdCE9nIrgJ7cz0C7M7PDmy14R3iJvm3WOnnL+5Nb+qh+cli3vA0p+ +rvSNb3I8QzvAP+u431yqqcau8vzY7qN7Q/aGNnwU4M309z/+3ri0ivCRlv79Q2R+ +/czSAaF9ffgZGclCKxO/WIu6pKJmBHaIkU4MiRTOok3JMrO66BQavHHxW/BBC5gA +CiIDEOUMsfnNkjcZ7Tvx5Dq2+UUTJnWvu6rvP3t3O9LEApE9GQDTF1w52z97GA1F +zZOFli9d31kWTz9RvdVFGD/tSo7oBmF0Ixa1DVBzJ0RHfxBdiSprhTEUxOipakyA +vGp4z7h/jnZymQyd/teRCBaho1+V -----END CERTIFICATE----- diff --git a/wallee.php b/wallee.php index 8fa4cd3..536447f 100644 --- a/wallee.php +++ b/wallee.php @@ -32,7 +32,7 @@ public function __construct() $this->author = 'wallee AG'; $this->bootstrap = true; $this->need_instance = 0; - $this->version = '1.0.6'; + $this->version = '1.0.7'; $this->displayName = 'wallee'; $this->description = $this->l('This PrestaShop module enables to process payments with %s.'); $this->description = sprintf($this->description, 'wallee'); diff --git a/wallee.zip b/wallee.zip index a8c5778..7f5875d 100644 Binary files a/wallee.zip and b/wallee.zip differ