diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bf061cb..17c50a2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### v3.10.0 от 04.09.2025 +* Добавлен параметр `suspended_until` (период охлаждения для «Покупок в кредит» от СберБанка) +* В запрос на создание выплаты у `bank_id` добавлена минимально допустимая длина 12 и проверка по регулярному выражению +* Добавлен новый способ оплаты — Плати частями +* Ошибки вынесены в отдельные объекты +* Внесены небольшие изменения в тексты + ### v3.9.1 от 31.07.2025 * В объект выплаты добавлен параметр `succeeded_at` (время перехода выплаты в статус `succeeded`) diff --git a/composer.json b/composer.json index e8bd0616..4ad3f347 100644 --- a/composer.json +++ b/composer.json @@ -17,9 +17,9 @@ ], "dist": { "type": "zip", - "url": "https://git.yoomoney.ru/rest/api/latest/projects/SDK/repos/yookassa-sdk-php/archive?at=refs%2Ftags%2F3.9.1&format=zip" + "url": "https://git.yoomoney.ru/rest/api/latest/projects/SDK/repos/yookassa-sdk-php/archive?at=refs%2Ftags%2F3.10.0&format=zip" }, - "version": "3.9.1", + "version": "3.10.0", "require": { "php": ">=8.0", "ext-curl": "*", diff --git a/docs/classes/YooKassa-Client-ApiClientInterface.md b/docs/classes/YooKassa-Client-ApiClientInterface.md index 304243ec..a971a02e 100644 --- a/docs/classes/YooKassa-Client-ApiClientInterface.md +++ b/docs/classes/YooKassa-Client-ApiClientInterface.md @@ -223,10 +223,10 @@ public setAdvancedCurlOptions() : void ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client-BaseClient.md b/docs/classes/YooKassa-Client-BaseClient.md index 6ce8ec33..8db5e58c 100644 --- a/docs/classes/YooKassa-Client-BaseClient.md +++ b/docs/classes/YooKassa-Client-BaseClient.md @@ -721,6 +721,7 @@ protected handleError(\YooKassa\Common\ResponseObject $response) : void | \YooKassa\Common\Exceptions\ForbiddenException | секретный ключ или OAuth-токен верный, но не хватает прав для совершения операции | | \YooKassa\Common\Exceptions\InternalServerError | Технические неполадки на стороне ЮKassa. Результат обработки запроса неизвестен. Повторите запрос позднее с тем же ключом идемпотентности. | | \YooKassa\Common\Exceptions\NotFoundException | ресурс не найден | +| \YooKassa\Common\Exceptions\GoneException | ресурс удален | | \YooKassa\Common\Exceptions\ResponseProcessingException | запрос был принят на обработку, но она не завершена | | \YooKassa\Common\Exceptions\TooManyRequestsException | Превышен лимит запросов в единицу времени. Попробуйте снизить интенсивность запросов. | | \YooKassa\Common\Exceptions\UnauthorizedException | неверное имя пользователя или пароль или невалидный OAuth-токен при аутентификации | @@ -741,10 +742,10 @@ protected handleError(\YooKassa\Common\ResponseObject $response) : void ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client-CurlClient.md b/docs/classes/YooKassa-Client-CurlClient.md index aadac3cd..1fbd6d41 100644 --- a/docs/classes/YooKassa-Client-CurlClient.md +++ b/docs/classes/YooKassa-Client-CurlClient.md @@ -510,10 +510,10 @@ public setTimeout(int $timeout) : void ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client-UserAgent.md b/docs/classes/YooKassa-Client-UserAgent.md index 48fea728..7d7fa6c4 100644 --- a/docs/classes/YooKassa-Client-UserAgent.md +++ b/docs/classes/YooKassa-Client-UserAgent.md @@ -325,10 +325,10 @@ public setModule(string $name, string $version) : void ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client.md b/docs/classes/YooKassa-Client.md index 3d3aa3f8..a0c3e9f3 100644 --- a/docs/classes/YooKassa-Client.md +++ b/docs/classes/YooKassa-Client.md @@ -298,7 +298,7 @@ DEFAULT_ATTEMPTS_COUNT = 3 Текущая версия библиотеки. ```php -SDK_VERSION = '3.9.1' +SDK_VERSION = '3.10.0' ``` @@ -2868,6 +2868,7 @@ protected handleError(\YooKassa\Common\ResponseObject $response) : void | \YooKassa\Common\Exceptions\ForbiddenException | секретный ключ или OAuth-токен верный, но не хватает прав для совершения операции | | \YooKassa\Common\Exceptions\InternalServerError | Технические неполадки на стороне ЮKassa. Результат обработки запроса неизвестен. Повторите запрос позднее с тем же ключом идемпотентности. | | \YooKassa\Common\Exceptions\NotFoundException | ресурс не найден | +| \YooKassa\Common\Exceptions\GoneException | ресурс удален | | \YooKassa\Common\Exceptions\ResponseProcessingException | запрос был принят на обработку, но она не завершена | | \YooKassa\Common\Exceptions\TooManyRequestsException | Превышен лимит запросов в единицу времени. Попробуйте снизить интенсивность запросов. | | \YooKassa\Common\Exceptions\UnauthorizedException | неверное имя пользователя или пароль или невалидный OAuth-токен при аутентификации | @@ -2888,10 +2889,10 @@ protected handleError(\YooKassa\Common\ResponseObject $response) : void ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractEnum.md b/docs/classes/YooKassa-Common-AbstractEnum.md index b792ab01..b8e9d208 100644 --- a/docs/classes/YooKassa-Common-AbstractEnum.md +++ b/docs/classes/YooKassa-Common-AbstractEnum.md @@ -127,10 +127,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractObject.md b/docs/classes/YooKassa-Common-AbstractObject.md index c9dd68e9..d1917ef1 100644 --- a/docs/classes/YooKassa-Common-AbstractObject.md +++ b/docs/classes/YooKassa-Common-AbstractObject.md @@ -375,10 +375,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractRequest.md b/docs/classes/YooKassa-Common-AbstractRequest.md index a8226b65..c66e1314 100644 --- a/docs/classes/YooKassa-Common-AbstractRequest.md +++ b/docs/classes/YooKassa-Common-AbstractRequest.md @@ -452,10 +452,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractRequestBuilder.md b/docs/classes/YooKassa-Common-AbstractRequestBuilder.md index a39bf536..6a0c4866 100644 --- a/docs/classes/YooKassa-Common-AbstractRequestBuilder.md +++ b/docs/classes/YooKassa-Common-AbstractRequestBuilder.md @@ -160,10 +160,10 @@ Abstract protected initCurrentObject() : \YooKassa\Common\AbstractRequestInterfa ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractRequestInterface.md b/docs/classes/YooKassa-Common-AbstractRequestInterface.md index fa4d3ae9..87a12d80 100644 --- a/docs/classes/YooKassa-Common-AbstractRequestInterface.md +++ b/docs/classes/YooKassa-Common-AbstractRequestInterface.md @@ -99,10 +99,10 @@ public getLastValidationError() : string|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-AbstractError.md b/docs/classes/YooKassa-Common-Errors-AbstractError.md new file mode 100644 index 00000000..d6fadb4a --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-AbstractError.md @@ -0,0 +1,727 @@ +# [YooKassa API SDK](../home.md) + +# Abstract Class: \YooKassa\Common\Errors\AbstractError +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель AbstractError. + +**Description:** + +Объект ошибки. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-AbstractObject.md#method___construct) | | AbstractObject constructor. | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/AbstractError.php](../../lib/Common/Errors/AbstractError.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * \YooKassa\Common\Errors\AbstractError + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(array|null $data = []) : mixed +``` + +**Summary** + +AbstractObject constructor. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR null | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorBadRequest.md b/docs/classes/YooKassa-Common-Errors-ErrorBadRequest.md new file mode 100644 index 00000000..8122b091 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorBadRequest.md @@ -0,0 +1,732 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorBadRequest +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorBadRequest. + +**Description:** + +Запрос не может быть обработан. +Причиной может быть неправильный синтаксис запроса, ошибка в обязательных параметрах запроса, их отсутствие или неподдерживаемый метод. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorBadRequest.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorBadRequest.php](../../lib/Common/Errors/ErrorBadRequest.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorBadRequest + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorBadRequest](../classes/YooKassa-Common-Errors-ErrorBadRequest.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorCode.md b/docs/classes/YooKassa-Common-Errors-ErrorCode.md new file mode 100644 index 00000000..803bdfc1 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorCode.md @@ -0,0 +1,253 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorCode +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorCode. + +**Description:** + +Код ошибки. + +Возможные значения: +- `error` — Общая ошибка. +- `invalid_request` — Запрос не может быть обработан. +- `invalid_credentials` — В заголовке Authorization указан неверный ключ. +- `forbidden` — Секретный ключ указан верно, но не хватает прав для совершения операции. +- `not_found` — Сущность не найдена. +- `gone` — Сущность была раньше, но была умышленно удалена и теперь недоступна. +- `too_many_requests` — Слишком много запросов одновременно отправляется в API. +- `internal_server_error` — Внутренняя ошибка сервера ЮKassa. +- `unknown` — Для неописанных типов ошибок. + +Подробнее об [ошибках](https://yookassa.ru/developers/using-api/response-handling/response-format#error) + +--- +### Constants +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [ERROR](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_ERROR) | | Общая ошибка | +| public | [INVALID_REQUEST](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_INVALID_REQUEST) | | Запрос не может быть обработан. Причиной может быть неправильный синтаксис запроса, ошибка в обязательных параметрах запроса, их отсутствие или неподдерживаемый метод. | +| public | [INVALID_CREDENTIALS](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_INVALID_CREDENTIALS) | | В заголовке Authorization указан неверный ключ. | +| public | [FORBIDDEN](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_FORBIDDEN) | | Секретный ключ указан верно, но не хватает прав для совершения операции. | +| public | [NOT_FOUND](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_NOT_FOUND) | | Сущность не найдена. | +| public | [GONE](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_GONE) | | Сущность была раньше, но была умышленно удалена и теперь недоступна. | +| public | [TOO_MANY_REQUESTS](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_TOO_MANY_REQUESTS) | | Слишком много запросов одновременно отправляется в API. Повторите запрос позже. | +| public | [INTERNAL_SERVER_ERROR](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_INTERNAL_SERVER_ERROR) | | Внутренняя ошибка сервера ЮKassa. | +| public | [UNKNOWN](../classes/YooKassa-Common-Errors-ErrorCode.md#constant_UNKNOWN) | | Для неописанных кодов ошибок. | + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| protected | [$validValues](../classes/YooKassa-Common-Errors-ErrorCode.md#property_validValues) | | Возвращает список доступных значений | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [getEnabledValues()](../classes/YooKassa-Common-AbstractEnum.md#method_getEnabledValues) | | Возвращает значения в enum'е значения которых разрешены. | +| public | [getValidValues()](../classes/YooKassa-Common-AbstractEnum.md#method_getValidValues) | | Возвращает все значения в enum'e. | +| public | [valueExists()](../classes/YooKassa-Common-AbstractEnum.md#method_valueExists) | | Проверяет наличие значения в enum'e. | + +--- +### Details +* File: [lib/Common/Errors/ErrorCode.php](../../lib/Common/Errors/ErrorCode.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractEnum](../classes/YooKassa-Common-AbstractEnum.md) + * \YooKassa\Common\Errors\ErrorCode + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Constants + +###### ERROR +Общая ошибка + +```php +ERROR = 'error' +``` + + + +###### INVALID_REQUEST +Запрос не может быть обработан. Причиной может быть неправильный синтаксис запроса, ошибка в обязательных параметрах запроса, их отсутствие или неподдерживаемый метод. + +```php +INVALID_REQUEST = 'invalid_request' +``` + + + +###### INVALID_CREDENTIALS +В заголовке Authorization указан неверный ключ. + +```php +INVALID_CREDENTIALS = 'invalid_credentials' +``` + + + +###### FORBIDDEN +Секретный ключ указан верно, но не хватает прав для совершения операции. + +```php +FORBIDDEN = 'forbidden' +``` + + + +###### NOT_FOUND +Сущность не найдена. + +```php +NOT_FOUND = 'not_found' +``` + + + +###### GONE +Сущность была раньше, но была умышленно удалена и теперь недоступна. + +```php +GONE = 'gone' +``` + + + +###### TOO_MANY_REQUESTS +Слишком много запросов одновременно отправляется в API. Повторите запрос позже. + +```php +TOO_MANY_REQUESTS = 'too_many_requests' +``` + + + +###### INTERNAL_SERVER_ERROR +Внутренняя ошибка сервера ЮKassa. + +```php +INTERNAL_SERVER_ERROR = 'internal_server_error' +``` + + + +###### UNKNOWN +Для неописанных кодов ошибок. + +```php +UNKNOWN = 'unknown' +``` + + + +--- +## Properties + +#### protected $validValues : array +--- +**Summary** + +Возвращает список доступных значений + +**Type:** array +Массив принимаемых enum'ом значений +**Details:** + + +##### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| return | | | + + +--- +## Methods + +#### public getEnabledValues() : string[] + +```php +Static public getEnabledValues() : string[] +``` + +**Summary** + +Возвращает значения в enum'е значения которых разрешены. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractEnum](../classes/YooKassa-Common-AbstractEnum.md) + +**Returns:** string[] - Массив разрешённых значений + + + +#### public getValidValues() : array + +```php +Static public getValidValues() : array +``` + +**Summary** + +Возвращает все значения в enum'e. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractEnum](../classes/YooKassa-Common-AbstractEnum.md) + +**Returns:** array - Массив значений в перечислении + + + +#### public valueExists() : bool + +```php +Static public valueExists(mixed $value) : bool +``` + +**Summary** + +Проверяет наличие значения в enum'e. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractEnum](../classes/YooKassa-Common-AbstractEnum.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| mixed | value | Проверяемое значение | + +**Returns:** bool - True если значение имеется, false если нет + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorCommon.md b/docs/classes/YooKassa-Common-Errors-ErrorCommon.md new file mode 100644 index 00000000..b36ef185 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorCommon.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorCommon +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorCommon. + +**Description:** + +Объект ошибки. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorCommon.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorCommon.php](../../lib/Common/Errors/ErrorCommon.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorCommon + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorCommon](../classes/YooKassa-Common-Errors-ErrorCommon.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorFactory.md b/docs/classes/YooKassa-Common-Errors-ErrorFactory.md new file mode 100644 index 00000000..04e052e2 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorFactory.md @@ -0,0 +1,107 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorFactory +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorFactory. + +**Description:** + +Фабрика создания объекта ошибки из массива. + +--- +### Constants +* No constants found + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [factory()](../classes/YooKassa-Common-Errors-ErrorFactory.md#method_factory) | | Фабричный метод создания объекта ошибки по типу. | +| public | [factoryFromArray()](../classes/YooKassa-Common-Errors-ErrorFactory.md#method_factoryFromArray) | | Фабричный метод создания объекта ошибки из массива. | + +--- +### Details +* File: [lib/Common/Errors/ErrorFactory.php](../../lib/Common/Errors/ErrorFactory.php) +* Package: YooKassa\Model +* Class Hierarchy: + * \YooKassa\Common\Errors\ErrorFactory + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Methods + +#### public factory() : \YooKassa\Common\Errors\AbstractError + +```php +public factory(string|null $code) : \YooKassa\Common\Errors\AbstractError +``` + +**Summary** + +Фабричный метод создания объекта ошибки по типу. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorFactory](../classes/YooKassa-Common-Errors-ErrorFactory.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки | + +**Returns:** \YooKassa\Common\Errors\AbstractError - + + + +#### public factoryFromArray() : \YooKassa\Common\Errors\AbstractError + +```php +public factoryFromArray(array $data, null|string $code = null) : \YooKassa\Common\Errors\AbstractError +``` + +**Summary** + +Фабричный метод создания объекта ошибки из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorFactory](../classes/YooKassa-Common-Errors-ErrorFactory.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | data | Массив данных ошибки | +| null OR string | code | Код ошибки | + +**Returns:** \YooKassa\Common\Errors\AbstractError - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorForbidden.md b/docs/classes/YooKassa-Common-Errors-ErrorForbidden.md new file mode 100644 index 00000000..fa9a1291 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorForbidden.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorForbidden +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorForbidden. + +**Description:** + +Секретный ключ указан верно, но не хватает прав для совершения операции. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorForbidden.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorForbidden.php](../../lib/Common/Errors/ErrorForbidden.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorForbidden + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorForbidden](../classes/YooKassa-Common-Errors-ErrorForbidden.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorGone.md b/docs/classes/YooKassa-Common-Errors-ErrorGone.md new file mode 100644 index 00000000..0659a887 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorGone.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorGone +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorGone. + +**Description:** + +Сущность была раньше, но была умышленно удалена и теперь недоступна. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorGone.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorGone.php](../../lib/Common/Errors/ErrorGone.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorGone + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorGone](../classes/YooKassa-Common-Errors-ErrorGone.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorInternalServerError.md b/docs/classes/YooKassa-Common-Errors-ErrorInternalServerError.md new file mode 100644 index 00000000..68c0210b --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorInternalServerError.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorInternalServerError +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorInternalServerError. + +**Description:** + +Внутренняя ошибка сервера ЮKassa. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorInternalServerError.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorInternalServerError.php](../../lib/Common/Errors/ErrorInternalServerError.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorInternalServerError + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorInternalServerError](../classes/YooKassa-Common-Errors-ErrorInternalServerError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorInvalidCredentials.md b/docs/classes/YooKassa-Common-Errors-ErrorInvalidCredentials.md new file mode 100644 index 00000000..af15a6b9 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorInvalidCredentials.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorInvalidCredentials +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorInvalidCredentials. + +**Description:** + +В заголовке Authorization указан неверный ключ. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorInvalidCredentials.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorInvalidCredentials.php](../../lib/Common/Errors/ErrorInvalidCredentials.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorInvalidCredentials + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorInvalidCredentials](../classes/YooKassa-Common-Errors-ErrorInvalidCredentials.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorNotFound.md b/docs/classes/YooKassa-Common-Errors-ErrorNotFound.md new file mode 100644 index 00000000..2852bdd5 --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorNotFound.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorNotFound +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorNotFound. + +**Description:** + +Сущность не найдена. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorNotFound.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorNotFound.php](../../lib/Common/Errors/ErrorNotFound.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorNotFound + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorNotFound](../classes/YooKassa-Common-Errors-ErrorNotFound.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorTooManyRequests.md b/docs/classes/YooKassa-Common-Errors-ErrorTooManyRequests.md new file mode 100644 index 00000000..afe6919b --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorTooManyRequests.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorTooManyRequests +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorTooManyRequests. + +**Description:** + +Слишком много запросов одновременно отправляется в API. Повторите запрос позже. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorTooManyRequests.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorTooManyRequests.php](../../lib/Common/Errors/ErrorTooManyRequests.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorTooManyRequests + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorTooManyRequests](../classes/YooKassa-Common-Errors-ErrorTooManyRequests.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Errors-ErrorUnknown.md b/docs/classes/YooKassa-Common-Errors-ErrorUnknown.md new file mode 100644 index 00000000..694efa7b --- /dev/null +++ b/docs/classes/YooKassa-Common-Errors-ErrorUnknown.md @@ -0,0 +1,731 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Errors\ErrorUnknown +### Namespace: [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) +--- +**Summary:** + +Класс, представляющий модель ErrorUnknown. + +**Description:** + +Для неописанных кодов ошибок. + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$description](../classes/YooKassa-Common-Errors-AbstractError.md#property_description) | | Подробное описание ошибки. | +| public | [$id](../classes/YooKassa-Common-Errors-AbstractError.md#property_id) | | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | +| public | [$parameter](../classes/YooKassa-Common-Errors-AbstractError.md#property_parameter) | | Название параметра, из-за которого произошла ошибка. | +| public | [$retry_after](../classes/YooKassa-Common-Errors-AbstractError.md#property_retry_after) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$retryAfter](../classes/YooKassa-Common-Errors-AbstractError.md#property_retryAfter) | | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | +| public | [$type](../classes/YooKassa-Common-Errors-AbstractError.md#property_type) | | Тип объекта. | +| protected | [$_code](../classes/YooKassa-Common-Errors-AbstractError.md#property__code) | | Код ошибки. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Errors-ErrorUnknown.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getCode) | | Возвращает code. | +| public | [getDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getDescription) | | Возвращает description. | +| public | [getId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getId) | | Возвращает id. | +| public | [getParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getParameter) | | Возвращает parameter. | +| public | [getRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getRetryAfter) | | Возвращает retry_after. | +| public | [getType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_getType) | | Возвращает type. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setCode()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setCode) | | Устанавливает code. | +| public | [setDescription()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setDescription) | | Устанавливает description. | +| public | [setId()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setId) | | Устанавливает id. | +| public | [setParameter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setParameter) | | Устанавливает parameter. | +| public | [setRetryAfter()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setRetryAfter) | | Устанавливает retry_after. | +| public | [setType()](../classes/YooKassa-Common-Errors-AbstractError.md#method_setType) | | Устанавливает type. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Common/Errors/ErrorUnknown.php](../../lib/Common/Errors/ErrorUnknown.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + * \YooKassa\Common\Errors\ErrorUnknown + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $description : string +--- +***Description*** + +Подробное описание ошибки. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $id : string +--- +***Description*** + +Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $parameter : string +--- +***Description*** + +Название параметра, из-за которого произошла ошибка. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retry_after : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $retryAfter : int +--- +***Description*** + +Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + +**Type:** int + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### public $type : string +--- +***Description*** + +Тип объекта. + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +#### protected $_code : ?string +--- +**Summary** + +Код ошибки. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\ErrorUnknown](../classes/YooKassa-Common-Errors-ErrorUnknown.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getCode() : string|null + +```php +public getCode() : string|null +``` + +**Summary** + +Возвращает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getDescription() : string|null + +```php +public getDescription() : string|null +``` + +**Summary** + +Возвращает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getParameter() : string|null + +```php +public getParameter() : string|null +``` + +**Summary** + +Возвращает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getRetryAfter() : int|null + +```php +public getRetryAfter() : int|null +``` + +**Summary** + +Возвращает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** int|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +**Returns:** string|null - + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setCode() : self + +```php +public setCode(string|null $code = null) : self +``` + +**Summary** + +Устанавливает code. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | code | Код ошибки. | + +**Returns:** self - + + + +#### public setDescription() : self + +```php +public setDescription(string|null $description = null) : self +``` + +**Summary** + +Устанавливает description. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | description | Подробное описание ошибки. | + +**Returns:** self - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. | + +**Returns:** self - + + + +#### public setParameter() : self + +```php +public setParameter(string|null $parameter = null) : self +``` + +**Summary** + +Устанавливает parameter. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | parameter | Название параметра, из-за которого произошла ошибка. | + +**Returns:** self - + + + +#### public setRetryAfter() : self + +```php +public setRetryAfter(int|null $retry_after = null) : self +``` + +**Summary** + +Устанавливает retry_after. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| int OR null | retry_after | Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает type. + +**Details:** +* Inherited From: [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип объекта. | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md b/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md index 4f7a89b4..82e5d816 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md @@ -16,8 +16,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -26,13 +27,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-ApiException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -46,19 +49,28 @@ --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -109,13 +121,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -123,12 +154,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -136,12 +169,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -149,12 +184,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -187,13 +224,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -205,6 +246,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -217,10 +280,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ApiException.md b/docs/classes/YooKassa-Common-Exceptions-ApiException.md index c5d735e6..73ca4751 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ApiException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ApiException.md @@ -16,8 +16,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -26,13 +27,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-ApiException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -45,18 +48,26 @@ --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** @@ -104,13 +115,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -118,12 +148,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -131,12 +163,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -144,12 +178,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -182,13 +218,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -200,6 +240,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -212,10 +274,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md b/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md index 2aff6bd5..6abc897a 100644 --- a/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md +++ b/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md @@ -16,8 +16,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -26,13 +27,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-ApiException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -46,19 +49,28 @@ --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -109,13 +121,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -123,12 +154,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -136,12 +169,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -149,12 +184,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -187,13 +224,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -205,6 +246,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -217,10 +280,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md b/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md index 2d23bf34..1b30061a 100644 --- a/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md +++ b/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md @@ -18,8 +18,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -28,13 +29,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-BadApiRequestException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -58,19 +61,28 @@ HTTP_CODE = 400 --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -119,13 +131,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -133,12 +164,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -146,12 +179,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -159,12 +194,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -197,13 +234,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -215,6 +256,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -227,10 +290,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md b/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md index 16bfed28..21149192 100644 --- a/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md +++ b/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md @@ -75,10 +75,10 @@ public getProperty() : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md b/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md index 6ee58620..d2396b18 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md @@ -63,10 +63,10 @@ Constructor. ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md b/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md index 31b1b8d7..890a9f7d 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md @@ -18,8 +18,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -28,13 +29,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-ForbiddenException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -58,19 +61,28 @@ HTTP_CODE = 403 --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -119,13 +131,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -133,12 +164,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -146,12 +179,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -159,12 +194,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -197,13 +234,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -215,6 +256,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -227,10 +290,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-GoneException.md b/docs/classes/YooKassa-Common-Exceptions-GoneException.md new file mode 100644 index 00000000..ed368261 --- /dev/null +++ b/docs/classes/YooKassa-Common-Exceptions-GoneException.md @@ -0,0 +1,299 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Common\Exceptions\GoneException +### Namespace: [\YooKassa\Common\Exceptions](../namespaces/yookassa-common-exceptions.md) +--- +**Summary:** + +Сущность была раньше, но была умышленно удалена и теперь недоступна. + + +--- +### Constants +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [HTTP_CODE](../classes/YooKassa-Common-Exceptions-GoneException.md#constant_HTTP_CODE) | | | + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | +| protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | +| protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Common-Exceptions-GoneException.md#method___construct) | | Constructor. | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | +| public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | +| public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | + +--- +### Details +* File: [lib/Common/Exceptions/GoneException.php](../../lib/Common/Exceptions/GoneException.php) +* Package: Default +* Class Hierarchy: + * [\Exception](\Exception) + * [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + * \YooKassa\Common\Exceptions\GoneException + +--- +## Constants + +###### HTTP_CODE +```php +HTTP_CODE = 410 +``` + + + +--- +## Properties + +#### public $retryAfter : mixed - (deprecated) +--- +**Type:** mixed +Время в секундах до повторной попытки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + + +#### public $type : mixed - (deprecated) +--- +**Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + + +#### protected $responseBody : ?string +--- +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + + +#### protected $responseHeaders : array +--- +**Type:** array + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(mixed $responseHeaders = [], mixed $responseBody = '') : mixed +``` + +**Summary** + +Constructor. + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\GoneException](../classes/YooKassa-Common-Exceptions-GoneException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| mixed | responseHeaders | HTTP header | +| mixed | responseBody | HTTP body | + +**Returns:** mixed - + + + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + + +#### (deprecated) - public getErrorCode() : ?string + +```php +public getErrorCode() : ?string +``` + +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** ?string - + + + +#### (deprecated) - public getErrorDescription() : ?string + +```php +public getErrorDescription() : ?string +``` + +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** ?string - + + + +#### (deprecated) - public getErrorId() : ?string + +```php +public getErrorId() : ?string +``` + +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** ?string - + + + +#### (deprecated) - public getErrorParameter() : ?string + +```php +public getErrorParameter() : ?string +``` + +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** ?string - + + + +#### public getResponseBody() : ?string + +```php +public getResponseBody() : ?string +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** ?string - + + + +#### public getResponseHeaders() : string[] + +```php +public getResponseHeaders() : string[] +``` + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** string[] - + + + +#### protected createMessageFromError() : string + +```php +protected createMessageFromError(mixed $responseBody) : string +``` + +**Summary** + +Создает сообщение из объекта ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| mixed | responseBody | | + +**Returns:** string - + + + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md b/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md index d369436c..4ef713e4 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md +++ b/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md @@ -21,8 +21,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -31,13 +32,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-InternalServerError.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -61,19 +64,28 @@ HTTP_CODE = 500 --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -122,13 +134,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -136,12 +167,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -149,12 +182,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -162,12 +197,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -200,13 +237,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -218,6 +259,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -230,10 +293,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md index 55243a94..05bb3d00 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md @@ -74,10 +74,10 @@ public getProperty() : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md index d50818e1..1639f453 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md @@ -90,10 +90,10 @@ public getValue() : mixed ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md index 0a1609be..02ee8e4d 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md @@ -90,10 +90,10 @@ public getType() : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md index e1b0d33d..ba64d656 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md @@ -74,10 +74,10 @@ public getRequestObject() : ?\YooKassa\Common\AbstractRequestInterface ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-JsonException.md b/docs/classes/YooKassa-Common-Exceptions-JsonException.md index e019aa92..5f56fdf6 100644 --- a/docs/classes/YooKassa-Common-Exceptions-JsonException.md +++ b/docs/classes/YooKassa-Common-Exceptions-JsonException.md @@ -73,10 +73,10 @@ public __construct(mixed $message = '', mixed $code, mixed $previous = ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md b/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md index 9d8f4aa2..52e1c066 100644 --- a/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md +++ b/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md @@ -18,8 +18,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -28,13 +29,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-NotFoundException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -58,19 +61,28 @@ HTTP_CODE = 404 --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -119,13 +131,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -133,12 +164,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -146,12 +179,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -159,12 +194,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -197,13 +234,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -215,6 +256,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -227,10 +290,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md b/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md index 537b7719..d945b08b 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md @@ -18,8 +18,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -28,13 +29,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-ResponseProcessingException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -58,19 +61,28 @@ HTTP_CODE = 202 --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -119,13 +131,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -133,12 +164,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -146,12 +179,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -159,12 +194,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -197,13 +234,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -215,6 +256,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -227,10 +290,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md b/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md index 2872015b..f785531b 100644 --- a/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md +++ b/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md @@ -18,8 +18,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -28,13 +29,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-TooManyRequestsException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -58,19 +61,28 @@ HTTP_CODE = 429 --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -119,13 +131,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -133,12 +164,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -146,12 +179,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -159,12 +194,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -197,13 +234,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -215,6 +256,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -227,10 +290,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md b/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md index 57c8c360..c0fac044 100644 --- a/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md +++ b/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md @@ -21,8 +21,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | | | -| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | | | +| public | [$retryAfter](../classes/YooKassa-Common-Exceptions-ApiException.md#property_retryAfter) | *deprecated* | | +| public | [$type](../classes/YooKassa-Common-Exceptions-ApiException.md#property_type) | *deprecated* | | +| protected | [$error](../classes/YooKassa-Common-Exceptions-ApiException.md#property_error) | | | | protected | [$responseBody](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseBody) | | | | protected | [$responseHeaders](../classes/YooKassa-Common-Exceptions-ApiException.md#property_responseHeaders) | | | @@ -31,13 +32,15 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [__construct()](../classes/YooKassa-Common-Exceptions-UnauthorizedException.md#method___construct) | | Constructor. | -| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | | | -| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | | | -| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | | | -| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | | | +| public | [getError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getError) | | Возвращает объект ошибки | +| public | [getErrorCode()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorCode) | *deprecated* | | +| public | [getErrorDescription()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorDescription) | *deprecated* | | +| public | [getErrorId()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorId) | *deprecated* | | +| public | [getErrorParameter()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getErrorParameter) | *deprecated* | | | public | [getResponseBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseBody) | | | | public | [getResponseHeaders()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_getResponseHeaders) | | | -| protected | [parseErrorResponse()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorResponse) | | | +| protected | [createMessageFromError()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_createMessageFromError) | | Создает сообщение из объекта ошибки | +| protected | [parseErrorBody()](../classes/YooKassa-Common-Exceptions-ApiException.md#method_parseErrorBody) | | Подготавливает объект ошибки | --- ### Details @@ -61,19 +64,28 @@ HTTP_CODE = 401 --- ## Properties -#### public $retryAfter : mixed +#### public $retryAfter : mixed - (deprecated) --- **Type:** mixed - +Время в секундах до повторной попытки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) -#### public $type : mixed +#### public $type : mixed - (deprecated) --- **Type:** mixed +Тип ошибки +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + + +#### protected $error : ?\YooKassa\Common\Errors\AbstractError +--- +**Type:** AbstractError +Объект ошибки **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -122,13 +134,32 @@ Constructor. **Returns:** mixed - + +#### public getError() : \YooKassa\Common\Errors\AbstractError|null + +```php +public getError() : \YooKassa\Common\Errors\AbstractError|null +``` + +**Summary** + +Возвращает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +**Returns:** \YooKassa\Common\Errors\AbstractError|null - + + -#### public getErrorCode() : ?string +#### (deprecated) - public getErrorCode() : ?string ```php public getErrorCode() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getCode() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -136,12 +167,14 @@ public getErrorCode() : ?string -#### public getErrorDescription() : ?string +#### (deprecated) - public getErrorDescription() : ?string ```php public getErrorDescription() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getDescription() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -149,12 +182,14 @@ public getErrorDescription() : ?string -#### public getErrorId() : ?string +#### (deprecated) - public getErrorId() : ?string ```php public getErrorId() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getId() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -162,12 +197,14 @@ public getErrorId() : ?string -#### public getErrorParameter() : ?string +#### (deprecated) - public getErrorParameter() : ?string ```php public getErrorParameter() : ?string ``` +**Deprecated** +DeprecatedУстарело. Вместо него нужно использовать getError()->getParameter() **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -200,13 +237,17 @@ public getResponseHeaders() : string[] **Returns:** string[] - - -#### protected parseErrorResponse() : string + +#### protected createMessageFromError() : string ```php -protected parseErrorResponse(mixed $responseBody) : string +protected createMessageFromError(mixed $responseBody) : string ``` +**Summary** + +Создает сообщение из объекта ошибки + **Details:** * Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) @@ -218,6 +259,28 @@ protected parseErrorResponse(mixed $responseBody) : string **Returns:** string - + +#### protected parseErrorBody() : void + +```php +protected parseErrorBody(array $errorData) : void +``` + +**Summary** + +Подготавливает объект ошибки + +**Details:** +* Inherited From: [\YooKassa\Common\Exceptions\ApiException](../classes/YooKassa-Common-Exceptions-ApiException.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array | errorData | | + +**Returns:** void - + + --- @@ -230,10 +293,10 @@ protected parseErrorResponse(mixed $responseBody) : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-HttpVerb.md b/docs/classes/YooKassa-Common-HttpVerb.md index a8b0a95d..016b8d3c 100644 --- a/docs/classes/YooKassa-Common-HttpVerb.md +++ b/docs/classes/YooKassa-Common-HttpVerb.md @@ -202,10 +202,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-ListObject.md b/docs/classes/YooKassa-Common-ListObject.md index 6c3aca28..e0e86ab3 100644 --- a/docs/classes/YooKassa-Common-ListObject.md +++ b/docs/classes/YooKassa-Common-ListObject.md @@ -473,10 +473,10 @@ public toArray() : array ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-ListObjectInterface.md b/docs/classes/YooKassa-Common-ListObjectInterface.md index bac5bba0..83409989 100644 --- a/docs/classes/YooKassa-Common-ListObjectInterface.md +++ b/docs/classes/YooKassa-Common-ListObjectInterface.md @@ -215,10 +215,10 @@ public toArray() : array ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-LoggerWrapper.md b/docs/classes/YooKassa-Common-LoggerWrapper.md index 781ae916..996c3f28 100644 --- a/docs/classes/YooKassa-Common-LoggerWrapper.md +++ b/docs/classes/YooKassa-Common-LoggerWrapper.md @@ -312,10 +312,10 @@ that are not necessarily wrong. ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-ResponseObject.md b/docs/classes/YooKassa-Common-ResponseObject.md index 7c8a8af7..940712c5 100644 --- a/docs/classes/YooKassa-Common-ResponseObject.md +++ b/docs/classes/YooKassa-Common-ResponseObject.md @@ -171,10 +171,10 @@ public getHeaders() : array ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md index 1018fc16..3b5b0883 100644 --- a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md +++ b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md @@ -91,10 +91,10 @@ public load(mixed $filePath = null) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md index 7fc2ce14..7e80561b 100644 --- a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md +++ b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md @@ -73,10 +73,10 @@ public load() : \YooKassa\Helpers\Config\ConfigurationLoaderInterface ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-ProductCode.md b/docs/classes/YooKassa-Helpers-ProductCode.md index 29d5b21f..65d76734 100644 --- a/docs/classes/YooKassa-Helpers-ProductCode.md +++ b/docs/classes/YooKassa-Helpers-ProductCode.md @@ -642,10 +642,10 @@ public validate() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-Random.md b/docs/classes/YooKassa-Helpers-Random.md index 5aba82b9..5fc48f0e 100644 --- a/docs/classes/YooKassa-Helpers-Random.md +++ b/docs/classes/YooKassa-Helpers-Random.md @@ -212,10 +212,10 @@ Static public value(array $values) : mixed ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-RawHeadersParser.md b/docs/classes/YooKassa-Helpers-RawHeadersParser.md index e9d811d8..21cb400a 100644 --- a/docs/classes/YooKassa-Helpers-RawHeadersParser.md +++ b/docs/classes/YooKassa-Helpers-RawHeadersParser.md @@ -70,10 +70,10 @@ Static public parse(mixed $rawHeaders) : mixed ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-SecurityHelper.md b/docs/classes/YooKassa-Helpers-SecurityHelper.md index 55c9bd4e..65464627 100644 --- a/docs/classes/YooKassa-Helpers-SecurityHelper.md +++ b/docs/classes/YooKassa-Helpers-SecurityHelper.md @@ -79,10 +79,10 @@ public isIPTrusted(mixed $ip) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-StringObject.md b/docs/classes/YooKassa-Helpers-StringObject.md index 6a69650a..68137e87 100644 --- a/docs/classes/YooKassa-Helpers-StringObject.md +++ b/docs/classes/YooKassa-Helpers-StringObject.md @@ -92,10 +92,10 @@ public __toString() : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-TypeCast.md b/docs/classes/YooKassa-Helpers-TypeCast.md index f88f4490..2f639364 100644 --- a/docs/classes/YooKassa-Helpers-TypeCast.md +++ b/docs/classes/YooKassa-Helpers-TypeCast.md @@ -166,10 +166,10 @@ Static public castToDateTime(\DateTime|int|string $value) : null|\DateTime ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-UUID.md b/docs/classes/YooKassa-Helpers-UUID.md index 400fc3f3..d644d4bf 100644 --- a/docs/classes/YooKassa-Helpers-UUID.md +++ b/docs/classes/YooKassa-Helpers-UUID.md @@ -65,10 +65,10 @@ Static public v4() : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-AmountInterface.md b/docs/classes/YooKassa-Model-AmountInterface.md index 3327d797..f2e71f0f 100644 --- a/docs/classes/YooKassa-Model-AmountInterface.md +++ b/docs/classes/YooKassa-Model-AmountInterface.md @@ -161,10 +161,10 @@ public toArray() : array ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-CancellationDetailsInterface.md b/docs/classes/YooKassa-Model-CancellationDetailsInterface.md index 99a04c34..3729e51c 100644 --- a/docs/classes/YooKassa-Model-CancellationDetailsInterface.md +++ b/docs/classes/YooKassa-Model-CancellationDetailsInterface.md @@ -79,10 +79,10 @@ public getReason() : string ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-CurrencyCode.md b/docs/classes/YooKassa-Model-CurrencyCode.md index 72d6649b..ff6b5cff 100644 --- a/docs/classes/YooKassa-Model-CurrencyCode.md +++ b/docs/classes/YooKassa-Model-CurrencyCode.md @@ -261,10 +261,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-AbstractBaseDeal.md b/docs/classes/YooKassa-Model-Deal-AbstractBaseDeal.md index 8192e5d8..5d8d77d6 100644 --- a/docs/classes/YooKassa-Model-Deal-AbstractBaseDeal.md +++ b/docs/classes/YooKassa-Model-Deal-AbstractBaseDeal.md @@ -448,10 +448,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-CaptureDealData.md b/docs/classes/YooKassa-Model-Deal-CaptureDealData.md index 94580e1b..5b9ccec3 100644 --- a/docs/classes/YooKassa-Model-Deal-CaptureDealData.md +++ b/docs/classes/YooKassa-Model-Deal-CaptureDealData.md @@ -432,10 +432,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md b/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md index c62ed17a..6ea1c1ee 100644 --- a/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md +++ b/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md @@ -510,10 +510,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-DealInterface.md b/docs/classes/YooKassa-Model-Deal-DealInterface.md index 427d3520..0bb2416e 100644 --- a/docs/classes/YooKassa-Model-Deal-DealInterface.md +++ b/docs/classes/YooKassa-Model-Deal-DealInterface.md @@ -258,10 +258,10 @@ public getTest() : bool|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-DealStatus.md b/docs/classes/YooKassa-Model-Deal-DealStatus.md index 27092c5d..4605dfe5 100644 --- a/docs/classes/YooKassa-Model-Deal-DealStatus.md +++ b/docs/classes/YooKassa-Model-Deal-DealStatus.md @@ -164,10 +164,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-DealType.md b/docs/classes/YooKassa-Model-Deal-DealType.md index 55530226..c92d88a7 100644 --- a/docs/classes/YooKassa-Model-Deal-DealType.md +++ b/docs/classes/YooKassa-Model-Deal-DealType.md @@ -152,10 +152,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-FeeMoment.md b/docs/classes/YooKassa-Model-Deal-FeeMoment.md index 3a019a28..4796bd2c 100644 --- a/docs/classes/YooKassa-Model-Deal-FeeMoment.md +++ b/docs/classes/YooKassa-Model-Deal-FeeMoment.md @@ -159,10 +159,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md b/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md index 27e71686..22cb1570 100644 --- a/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md +++ b/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md @@ -506,10 +506,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md b/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md index a616a291..01d55b31 100644 --- a/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md +++ b/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md @@ -455,10 +455,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-RefundDealData.md b/docs/classes/YooKassa-Model-Deal-RefundDealData.md index c81ac04f..6301f336 100644 --- a/docs/classes/YooKassa-Model-Deal-RefundDealData.md +++ b/docs/classes/YooKassa-Model-Deal-RefundDealData.md @@ -448,10 +448,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md b/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md index c79ed713..1ad91475 100644 --- a/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md +++ b/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md @@ -502,10 +502,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-SafeDeal.md b/docs/classes/YooKassa-Model-Deal-SafeDeal.md index ec7e9169..c533dac5 100644 --- a/docs/classes/YooKassa-Model-Deal-SafeDeal.md +++ b/docs/classes/YooKassa-Model-Deal-SafeDeal.md @@ -1200,10 +1200,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md index 50910c1d..540559b2 100644 --- a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md +++ b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md @@ -491,10 +491,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md index 1e2ce2c3..6b034f19 100644 --- a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md +++ b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md @@ -152,10 +152,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md b/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md index deae66e1..c7402596 100644 --- a/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md +++ b/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md @@ -495,10 +495,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-AbstractDeliveryMethod.md b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-AbstractDeliveryMethod.md index 55bc9211..d225fb01 100644 --- a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-AbstractDeliveryMethod.md +++ b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-AbstractDeliveryMethod.md @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodFactory.md b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodFactory.md index b40bb627..bc04bde6 100644 --- a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodFactory.md +++ b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodSelf.md b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodSelf.md index 4928c6cd..6be71a71 100644 --- a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodSelf.md +++ b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodSelf.md @@ -522,10 +522,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodType.md b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodType.md index 436cc87c..a2ce0e60 100644 --- a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodType.md +++ b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodType.md @@ -168,10 +168,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodUnknown.md b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodUnknown.md index ef61fe5b..93307d41 100644 --- a/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodUnknown.md +++ b/docs/classes/YooKassa-Model-Invoice-DeliveryMethod-DeliveryMethodUnknown.md @@ -444,10 +444,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-Invoice.md b/docs/classes/YooKassa-Model-Invoice-Invoice.md index e197542e..0d7c7c0c 100644 --- a/docs/classes/YooKassa-Model-Invoice-Invoice.md +++ b/docs/classes/YooKassa-Model-Invoice-Invoice.md @@ -9,7 +9,7 @@ **Description:** -Данные о счете. +Объект счета (Invoice) — актуальная информация о счете. --- ### Constants @@ -29,7 +29,7 @@ | public | [$description](../classes/YooKassa-Model-Invoice-Invoice.md#property_description) | | Описание выставленного счета (не более 128 символов), которое вы увидите в личном кабинете ЮKassa, а пользователь на странице счета. Например: «Счет на оплату по договору 37». | | public | [$expires_at](../classes/YooKassa-Model-Invoice-Invoice.md#property_expires_at) | | Срок действия счета — дата и время, до которых можно оплатить выставленный счет. Указывается по [UTC](https://ru.wikipedia.org/wiki/Всемирное_координированное_время) и передается в формате [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). Пример: `2024-10-18T10:51:18.139Z` Присутствует только для счетов в статусе `pending`. | | public | [$expiresAt](../classes/YooKassa-Model-Invoice-Invoice.md#property_expiresAt) | | Срок действия счета — дата и время, до которых можно оплатить выставленный счет. Указывается по [UTC](https://ru.wikipedia.org/wiki/Всемирное_координированное_время) и передается в формате [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). Пример: `2024-10-18T10:51:18.139Z` Присутствует только для счетов в статусе `pending`. | -| public | [$id](../classes/YooKassa-Model-Invoice-Invoice.md#property_id) | | Идентификатор счета в ЮКасса. | +| public | [$id](../classes/YooKassa-Model-Invoice-Invoice.md#property_id) | | Идентификатор счета в ЮKassa. | | public | [$metadata](../classes/YooKassa-Model-Invoice-Invoice.md#property_metadata) | | Любые дополнительные данные, которые нужны вам для работы (например, ваш внутренний идентификатор заказа). Передаются в виде набора пар «ключ-значение» и возвращаются в ответе от ЮKassa. Ограничения: максимум 16 ключей, имя ключа не больше 32 символов, значение ключа не больше 512 символов, тип данных — строка в формате UTF-8. | | public | [$payment_details](../classes/YooKassa-Model-Invoice-Invoice.md#property_payment_details) | | Данные о платеже по выставленному счету. Присутствуют, только если платеж успешно [подтвержден пользователем](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-process#user-confirmation). | | public | [$paymentDetails](../classes/YooKassa-Model-Invoice-Invoice.md#property_paymentDetails) | | Данные о платеже по выставленному счету. Присутствуют, только если платеж успешно [подтвержден пользователем](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-process#user-confirmation). | @@ -40,7 +40,7 @@ | protected | [$_delivery_method](../classes/YooKassa-Model-Invoice-Invoice.md#property__delivery_method) | | Данные о выбранном способе доставки счета. Присутствует только для счетов в статусе `pending`. | | protected | [$_description](../classes/YooKassa-Model-Invoice-Invoice.md#property__description) | | Описание выставленного счета (не более 128 символов), которое вы увидите в личном кабинете ЮKassa, а пользователь на странице счета. | | protected | [$_expires_at](../classes/YooKassa-Model-Invoice-Invoice.md#property__expires_at) | | Срок действия счета — дата и время, до которых можно оплатить выставленный счет. Указывается по [UTC](https://ru.wikipedia.org/wiki/Всемирное_координированное_время) и передается в формате [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). | -| protected | [$_id](../classes/YooKassa-Model-Invoice-Invoice.md#property__id) | | Идентификатор счета в ЮКасса. | +| protected | [$_id](../classes/YooKassa-Model-Invoice-Invoice.md#property__id) | | Идентификатор счета в ЮKassa. | | protected | [$_metadata](../classes/YooKassa-Model-Invoice-Invoice.md#property__metadata) | | Любые дополнительные данные, которые нужны вам для работы (например, ваш внутренний идентификатор заказа). | | protected | [$_payment_details](../classes/YooKassa-Model-Invoice-Invoice.md#property__payment_details) | | Данные о платеже по выставленному счету. Присутствуют, только если платеж успешно [подтвержден пользователем](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-process#user-confirmation). | | protected | [$_status](../classes/YooKassa-Model-Invoice-Invoice.md#property__status) | | Статус счета. Возможные значения: `pending`, `succeeded`, `canceled`. | @@ -232,7 +232,7 @@ --- ***Description*** -Идентификатор счета в ЮКасса. +Идентификатор счета в ЮKassa. **Type:** string @@ -378,7 +378,7 @@ --- **Summary** -Идентификатор счета в ЮКасса. +Идентификатор счета в ЮKassa. **Type:** ?string @@ -678,7 +678,7 @@ public getId() : string|null **Details:** * Inherited From: [\YooKassa\Model\Invoice\Invoice](../classes/YooKassa-Model-Invoice-Invoice.md) -**Returns:** string|null - Идентификатор счета в ЮКасса +**Returns:** string|null - Идентификатор счета в ЮKassa @@ -1000,7 +1000,7 @@ public setId(string|null $id = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | id | Идентификатор счета в ЮКасса. | +| string OR null | id | Идентификатор счета в ЮKassa. | **Returns:** self - @@ -1137,10 +1137,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetails.md b/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetails.md index f4181769..5dc86c0e 100644 --- a/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetails.md +++ b/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetails.md @@ -489,10 +489,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsPartyCode.md b/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsPartyCode.md index d52447cf..2b7b1c50 100644 --- a/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsPartyCode.md +++ b/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsPartyCode.md @@ -152,10 +152,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsReasonCode.md b/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsReasonCode.md index 7eeed97f..c84cbc44 100644 --- a/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsReasonCode.md +++ b/docs/classes/YooKassa-Model-Invoice-InvoiceCancellationDetailsReasonCode.md @@ -182,10 +182,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-InvoiceInterface.md b/docs/classes/YooKassa-Model-Invoice-InvoiceInterface.md index 67e91ebd..f67a9200 100644 --- a/docs/classes/YooKassa-Model-Invoice-InvoiceInterface.md +++ b/docs/classes/YooKassa-Model-Invoice-InvoiceInterface.md @@ -57,7 +57,7 @@ | --- | ------- | ----------- | | category | | Class | | author | | cms@yoomoney.ru | -| property | | Идентификатор счета в ЮКасса. | +| property | | Идентификатор счета в ЮKassa. | | property | | Статус счета. Возможные значения: `pending`, `succeeded`, `canceled`. | | property | | Корзина заказа — список товаров или услуг, который отобразится на странице счета перед оплатой. | | property | | Данные о выбранном способе доставки счета. Присутствует только для счетов в статусе `pending`. | @@ -133,7 +133,7 @@ public setId(string|null $id = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | id | Идентификатор счета в ЮКасса. | +| string OR null | id | Идентификатор счета в ЮKassa. | **Returns:** self - @@ -502,10 +502,10 @@ public setMetadata(string|array|null $metadata = null) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-InvoiceStatus.md b/docs/classes/YooKassa-Model-Invoice-InvoiceStatus.md index 31dc2727..749e5ca8 100644 --- a/docs/classes/YooKassa-Model-Invoice-InvoiceStatus.md +++ b/docs/classes/YooKassa-Model-Invoice-InvoiceStatus.md @@ -178,10 +178,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-LineItem.md b/docs/classes/YooKassa-Model-Invoice-LineItem.md index 77442525..444487a3 100644 --- a/docs/classes/YooKassa-Model-Invoice-LineItem.md +++ b/docs/classes/YooKassa-Model-Invoice-LineItem.md @@ -630,10 +630,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Invoice-PaymentDetails.md b/docs/classes/YooKassa-Model-Invoice-PaymentDetails.md index 3f4a323a..6d5d4eb7 100644 --- a/docs/classes/YooKassa-Model-Invoice-PaymentDetails.md +++ b/docs/classes/YooKassa-Model-Invoice-PaymentDetails.md @@ -490,10 +490,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Metadata.md b/docs/classes/YooKassa-Model-Metadata.md index 94d2c403..71516e67 100644 --- a/docs/classes/YooKassa-Model-Metadata.md +++ b/docs/classes/YooKassa-Model-Metadata.md @@ -403,10 +403,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-MonetaryAmount.md b/docs/classes/YooKassa-Model-MonetaryAmount.md index 9b918198..cdeae8c2 100644 --- a/docs/classes/YooKassa-Model-MonetaryAmount.md +++ b/docs/classes/YooKassa-Model-MonetaryAmount.md @@ -571,10 +571,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-AbstractNotification.md b/docs/classes/YooKassa-Model-Notification-AbstractNotification.md index 51368a88..62fdb3dc 100644 --- a/docs/classes/YooKassa-Model-Notification-AbstractNotification.md +++ b/docs/classes/YooKassa-Model-Notification-AbstractNotification.md @@ -619,10 +619,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md b/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md index a819a51a..5919ba1d 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md @@ -669,10 +669,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md b/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md index 26e67a15..5d86525b 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md @@ -669,10 +669,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationEventType.md b/docs/classes/YooKassa-Model-Notification-NotificationEventType.md index b0c9ea8b..06529cda 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationEventType.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationEventType.md @@ -199,10 +199,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationFactory.md b/docs/classes/YooKassa-Model-Notification-NotificationFactory.md index 16623d58..a5fb2130 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationFactory.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationFactory.md @@ -138,10 +138,10 @@ public factory(array $data) : \YooKassa\Model\Notification\AbstractNotification ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationInterface.md b/docs/classes/YooKassa-Model-Notification-NotificationInterface.md index d7d6caea..b669db7d 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationInterface.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationInterface.md @@ -100,10 +100,10 @@ public getObject() : \YooKassa\Model\Payment\PaymentInterface|\YooKassa\Model\Re ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md b/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md index 9cbce93f..74e8e38b 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md @@ -669,10 +669,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md b/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md index 860f33d8..9f08a925 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md @@ -669,10 +669,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md b/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md index 14606e25..9076aa22 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md @@ -669,10 +669,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md b/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md index 5002e229..ab8f24f0 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md @@ -669,10 +669,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationType.md b/docs/classes/YooKassa-Model-Notification-NotificationType.md index 2675b1f9..b2b0f400 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationType.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationType.md @@ -130,10 +130,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md b/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md index 2206350f..90f8c0b1 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md @@ -671,10 +671,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-AuthorizationDetails.md b/docs/classes/YooKassa-Model-Payment-AuthorizationDetails.md index 9068db3f..abea6cca 100644 --- a/docs/classes/YooKassa-Model-Payment-AuthorizationDetails.md +++ b/docs/classes/YooKassa-Model-Payment-AuthorizationDetails.md @@ -573,10 +573,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-AuthorizationDetailsInterface.md b/docs/classes/YooKassa-Model-Payment-AuthorizationDetailsInterface.md index d66d4d06..8a66c8a3 100644 --- a/docs/classes/YooKassa-Model-Payment-AuthorizationDetailsInterface.md +++ b/docs/classes/YooKassa-Model-Payment-AuthorizationDetailsInterface.md @@ -100,10 +100,10 @@ public getThreeDSecure() : null|\YooKassa\Model\Payment\ThreeDSecure ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-CancellationDetails.md b/docs/classes/YooKassa-Model-Payment-CancellationDetails.md index bdd45022..6dc2d73c 100644 --- a/docs/classes/YooKassa-Model-Payment-CancellationDetails.md +++ b/docs/classes/YooKassa-Model-Payment-CancellationDetails.md @@ -491,10 +491,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-CancellationDetailsPartyCode.md b/docs/classes/YooKassa-Model-Payment-CancellationDetailsPartyCode.md index 9cc2f50a..d8223d19 100644 --- a/docs/classes/YooKassa-Model-Payment-CancellationDetailsPartyCode.md +++ b/docs/classes/YooKassa-Model-Payment-CancellationDetailsPartyCode.md @@ -172,10 +172,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-CancellationDetailsReasonCode.md b/docs/classes/YooKassa-Model-Payment-CancellationDetailsReasonCode.md index 4ed130e8..699ec25d 100644 --- a/docs/classes/YooKassa-Model-Payment-CancellationDetailsReasonCode.md +++ b/docs/classes/YooKassa-Model-Payment-CancellationDetailsReasonCode.md @@ -349,10 +349,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md b/docs/classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md index 202bfb27..a103f683 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md @@ -20,8 +20,8 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Тип подтверждения платежа | -| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Тип подтверждения платежа. | +| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Код сценария подтверждения | +| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Код сценария подтверждения. | --- ### Methods @@ -36,14 +36,14 @@ | public | [getConfirmationData()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationData) | | | | public | [getConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationToken) | | | | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationUrl) | | | -| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает тип подтверждения платежа. | +| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает код сценария подтверждения. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | | public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | -| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает тип подтверждения платежа | +| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает код сценария подтверждения | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -73,7 +73,7 @@ --- ***Description*** -Тип подтверждения платежа +Код сценария подтверждения **Type:** string @@ -85,7 +85,7 @@ --- **Summary** -Тип подтверждения платежа. +Код сценария подтверждения. **Type:** ?string @@ -288,7 +288,7 @@ public getType() : ?string **Summary** -Возвращает тип подтверждения платежа. +Возвращает код сценария подтверждения. **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -424,7 +424,7 @@ public setType(string|null $type = null) : self **Summary** -Устанавливает тип подтверждения платежа +Устанавливает код сценария подтверждения **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -432,7 +432,7 @@ public setType(string|null $type = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Тип подтверждения платежа | +| string OR null | type | Код сценария подтверждения | **Returns:** self - @@ -503,10 +503,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationCodeVerification.md b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationCodeVerification.md index 72f40258..095a8fb6 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationCodeVerification.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationCodeVerification.md @@ -16,8 +16,8 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Тип подтверждения платежа | -| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Тип подтверждения платежа. | +| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Код сценария подтверждения | +| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Код сценария подтверждения. | --- ### Methods @@ -32,14 +32,14 @@ | public | [getConfirmationData()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationData) | | | | public | [getConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationToken) | | | | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationUrl) | | | -| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает тип подтверждения платежа. | +| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает код сценария подтверждения. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | | public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | -| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает тип подтверждения платежа | +| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает код сценария подтверждения | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -70,7 +70,7 @@ --- ***Description*** -Тип подтверждения платежа +Код сценария подтверждения **Type:** string @@ -83,7 +83,7 @@ --- **Summary** -Тип подтверждения платежа. +Код сценария подтверждения. **Type:** ?string @@ -283,7 +283,7 @@ public getType() : ?string **Summary** -Возвращает тип подтверждения платежа. +Возвращает код сценария подтверждения. **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -419,7 +419,7 @@ public setType(string|null $type = null) : self **Summary** -Устанавливает тип подтверждения платежа +Устанавливает код сценария подтверждения **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -427,7 +427,7 @@ public setType(string|null $type = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Тип подтверждения платежа | +| string OR null | type | Код сценария подтверждения | **Returns:** self - @@ -498,10 +498,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md index 09cdfb88..a77cc479 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md @@ -23,8 +23,8 @@ | ----------:| ---- | ---- | ------- | | public | [$confirmation_token](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md#property_confirmation_token) | | Токен для платежного виджета | | public | [$confirmationToken](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md#property_confirmationToken) | | Токен для платежного виджета | -| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Тип подтверждения платежа | -| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Тип подтверждения платежа. | +| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Код сценария подтверждения | +| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Код сценария подтверждения. | --- ### Methods @@ -40,7 +40,7 @@ | public | [getConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md#method_getConfirmationToken) | | Возвращает токен для инициализации платежного виджета. | | public | [getConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationToken) | | | | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationUrl) | | | -| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает тип подтверждения платежа. | +| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает код сценария подтверждения. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | @@ -48,7 +48,7 @@ | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | | public | [setConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationEmbedded.md#method_setConfirmationToken) | | Устанавливает токен для инициализации платежного виджета. | -| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает тип подтверждения платежа | +| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает код сценария подтверждения | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -103,7 +103,7 @@ --- ***Description*** -Тип подтверждения платежа +Код сценария подтверждения **Type:** string @@ -116,7 +116,7 @@ --- **Summary** -Тип подтверждения платежа. +Код сценария подтверждения. **Type:** ?string @@ -333,7 +333,7 @@ public getType() : ?string **Summary** -Возвращает тип подтверждения платежа. +Возвращает код сценария подтверждения. **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -491,7 +491,7 @@ public setType(string|null $type = null) : self **Summary** -Устанавливает тип подтверждения платежа +Устанавливает код сценария подтверждения **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -499,7 +499,7 @@ public setType(string|null $type = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Тип подтверждения платежа | +| string OR null | type | Код сценария подтверждения | **Returns:** self - @@ -570,10 +570,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationExternal.md b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationExternal.md index 20bd6cea..2df2a8cd 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationExternal.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationExternal.md @@ -20,9 +20,9 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Тип подтверждения платежа | +| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Код сценария подтверждения | | public | [$type](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationExternal.md#property_type) | | Код сценария подтверждения. | -| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Тип подтверждения платежа. | +| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Код сценария подтверждения. | --- ### Methods @@ -37,14 +37,14 @@ | public | [getConfirmationData()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationData) | | | | public | [getConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationToken) | | | | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationUrl) | | | -| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает тип подтверждения платежа. | +| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает код сценария подтверждения. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | | public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | -| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает тип подтверждения платежа | +| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает код сценария подтверждения | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -75,7 +75,7 @@ --- ***Description*** -Тип подтверждения платежа +Код сценария подтверждения **Type:** string @@ -100,7 +100,7 @@ --- **Summary** -Тип подтверждения платежа. +Код сценария подтверждения. **Type:** ?string @@ -300,7 +300,7 @@ public getType() : ?string **Summary** -Возвращает тип подтверждения платежа. +Возвращает код сценария подтверждения. **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -436,7 +436,7 @@ public setType(string|null $type = null) : self **Summary** -Устанавливает тип подтверждения платежа +Устанавливает код сценария подтверждения **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -444,7 +444,7 @@ public setType(string|null $type = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Тип подтверждения платежа | +| string OR null | type | Код сценария подтверждения | **Returns:** self - @@ -515,10 +515,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationFactory.md b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationFactory.md index fef6b090..f2b4cc7d 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationFactory.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationFactory.md @@ -55,7 +55,7 @@ public factory(string $type) : \YooKassa\Model\Payment\Confirmation\AbstractConf ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string | type | Тип подтверждения платежа | +| string | type | Код сценария подтверждения | **Returns:** \YooKassa\Model\Payment\Confirmation\AbstractConfirmation - @@ -78,7 +78,7 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model | Type | Name | Description | | ---- | ---- | ----------- | | array | data | Массив данных подтверждения платежа | -| null OR string | type | Тип подтверждения платежа | +| null OR string | type | Код сценария подтверждения | **Returns:** \YooKassa\Model\Payment\Confirmation\AbstractConfirmation - @@ -95,10 +95,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md index 6238896c..86304915 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md @@ -22,8 +22,8 @@ | ----------:| ---- | ---- | ------- | | public | [$confirmation_url](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md#property_confirmation_url) | | URL на который необходимо перенаправить плательщика для подтверждения оплаты | | public | [$confirmationUrl](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md#property_confirmationUrl) | | URL на который необходимо перенаправить плательщика для подтверждения оплаты | -| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Тип подтверждения платежа | -| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Тип подтверждения платежа. | +| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Код сценария подтверждения | +| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Код сценария подтверждения. | --- ### Methods @@ -39,7 +39,7 @@ | public | [getConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationToken) | | | | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationUrl) | | | | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md#method_getConfirmationUrl) | | Возвращает URL на который необходимо перенаправить плательщика для подтверждения оплаты | -| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает тип подтверждения платежа. | +| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает код сценария подтверждения. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | @@ -47,7 +47,7 @@ | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | | public | [setConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationMobileApplication.md#method_setConfirmationUrl) | | Устанавливает URL на который необходимо перенаправить плательщика для подтверждения оплаты | -| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает тип подтверждения платежа | +| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает код сценария подтверждения | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -102,7 +102,7 @@ URL на который необходимо перенаправить плат --- ***Description*** -Тип подтверждения платежа +Код сценария подтверждения **Type:** string @@ -115,7 +115,7 @@ URL на который необходимо перенаправить плат --- **Summary** -Тип подтверждения платежа. +Код сценария подтверждения. **Type:** ?string @@ -332,7 +332,7 @@ public getType() : ?string **Summary** -Возвращает тип подтверждения платежа. +Возвращает код сценария подтверждения. **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -490,7 +490,7 @@ public setType(string|null $type = null) : self **Summary** -Устанавливает тип подтверждения платежа +Устанавливает код сценария подтверждения **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -498,7 +498,7 @@ public setType(string|null $type = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Тип подтверждения платежа | +| string OR null | type | Код сценария подтверждения | **Returns:** self - @@ -569,10 +569,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationQr.md b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationQr.md index f1019601..79228dbd 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationQr.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationQr.md @@ -22,8 +22,8 @@ | ----------:| ---- | ---- | ------- | | public | [$confirmation_data](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationQr.md#property_confirmation_data) | | URL для создания QR-кода | | public | [$confirmationData](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationQr.md#property_confirmationData) | | URL для создания QR-кода | -| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Тип подтверждения платежа | -| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Тип подтверждения платежа. | +| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Код сценария подтверждения | +| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Код сценария подтверждения. | --- ### Methods @@ -39,7 +39,7 @@ | public | [getConfirmationData()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationData) | | | | public | [getConfirmationToken()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationToken) | | | | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getConfirmationUrl) | | | -| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает тип подтверждения платежа. | +| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает код сценария подтверждения. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | @@ -47,7 +47,7 @@ | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | | public | [setConfirmationData()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationQr.md#method_setConfirmationData) | | Устанавливает данные для генерации QR-кода. | -| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает тип подтверждения платежа | +| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает код сценария подтверждения | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -102,7 +102,7 @@ URL для создания QR-кода --- ***Description*** -Тип подтверждения платежа +Код сценария подтверждения **Type:** string @@ -115,7 +115,7 @@ URL для создания QR-кода --- **Summary** -Тип подтверждения платежа. +Код сценария подтверждения. **Type:** ?string @@ -332,7 +332,7 @@ public getType() : ?string **Summary** -Возвращает тип подтверждения платежа. +Возвращает код сценария подтверждения. **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -490,7 +490,7 @@ public setType(string|null $type = null) : self **Summary** -Устанавливает тип подтверждения платежа +Устанавливает код сценария подтверждения **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -498,7 +498,7 @@ public setType(string|null $type = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Тип подтверждения платежа | +| string OR null | type | Код сценария подтверждения | **Returns:** self - @@ -569,10 +569,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md index 4aa1b3a1..e88071f6 100644 --- a/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md +++ b/docs/classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md @@ -25,8 +25,8 @@ | public | [$enforce](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#property_enforce) | | Требование принудительного подтверждения платежа покупателем, требование 3-D Secure для оплаты банковскими картами. По умолчанию определяется политикой платежной системы | | public | [$return_url](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#property_return_url) | | URL на который вернется плательщик после подтверждения или отмены платежа на странице партнера | | public | [$returnUrl](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#property_returnUrl) | | URL на который вернется плательщик после подтверждения или отмены платежа на странице партнера | -| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Тип подтверждения платежа | -| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Тип подтверждения платежа. | +| public | [$type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property_type) | | Код сценария подтверждения | +| protected | [$_type](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#property__type) | | Код сценария подтверждения. | --- ### Methods @@ -44,7 +44,7 @@ | public | [getConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#method_getConfirmationUrl) | | Возвращает URL на который необходимо перенаправить плательщика для подтверждения оплаты | | public | [getEnforce()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#method_getEnforce) | | Возвращает флаг принудительного подтверждения платежа покупателем | | public | [getReturnUrl()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#method_getReturnUrl) | | Возвращает URL на который вернется плательщик после подтверждения или отмены платежа на странице партнера | -| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает тип подтверждения платежа. | +| public | [getType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_getType) | | Возвращает код сценария подтверждения. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | @@ -54,7 +54,7 @@ | public | [setConfirmationUrl()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#method_setConfirmationUrl) | | Устанавливает URL на который необходимо перенаправить плательщика для подтверждения оплаты | | public | [setEnforce()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#method_setEnforce) | | Устанавливает флаг принудительного подтверждения платежа покупателем | | public | [setReturnUrl()](../classes/YooKassa-Model-Payment-Confirmation-ConfirmationRedirect.md#method_setReturnUrl) | | Устанавливает URL на который вернется плательщик после подтверждения или отмены платежа на странице партнера | -| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает тип подтверждения платежа | +| public | [setType()](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md#method_setType) | | Устанавливает код сценария подтверждения | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -146,7 +146,7 @@ URL на который вернется плательщик после под --- ***Description*** -Тип подтверждения платежа +Код сценария подтверждения **Type:** string @@ -159,7 +159,7 @@ URL на который вернется плательщик после под --- **Summary** -Тип подтверждения платежа. +Код сценария подтверждения. **Type:** ?string @@ -411,7 +411,7 @@ public getType() : ?string **Summary** -Возвращает тип подтверждения платежа. +Возвращает код сценария подтверждения. **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -613,7 +613,7 @@ public setType(string|null $type = null) : self **Summary** -Устанавливает тип подтверждения платежа +Устанавливает код сценария подтверждения **Details:** * Inherited From: [\YooKassa\Model\Payment\Confirmation\AbstractConfirmation](../classes/YooKassa-Model-Payment-Confirmation-AbstractConfirmation.md) @@ -621,7 +621,7 @@ public setType(string|null $type = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Тип подтверждения платежа | +| string OR null | type | Код сценария подтверждения | **Returns:** self - @@ -692,10 +692,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-ConfirmationType.md b/docs/classes/YooKassa-Model-Payment-ConfirmationType.md index 81224efb..c782a1dc 100644 --- a/docs/classes/YooKassa-Model-Payment-ConfirmationType.md +++ b/docs/classes/YooKassa-Model-Payment-ConfirmationType.md @@ -202,10 +202,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Payment.md b/docs/classes/YooKassa-Model-Payment-Payment.md index 38397b73..ead65401 100644 --- a/docs/classes/YooKassa-Model-Payment-Payment.md +++ b/docs/classes/YooKassa-Model-Payment-Payment.md @@ -9,7 +9,7 @@ **Description:** -Данные о платеже. +Объект платежа (Payment) — актуальная информация о платеже. --- ### Constants @@ -1993,10 +1993,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentInterface.md b/docs/classes/YooKassa-Model-Payment-PaymentInterface.md index 92e24540..73d303bb 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentInterface.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentInterface.md @@ -479,10 +479,10 @@ public getInvoiceDetails() : \YooKassa\Model\Payment\PaymentInvoiceDetails|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentInvoiceDetails.md b/docs/classes/YooKassa-Model-Payment-PaymentInvoiceDetails.md index f1e3d15d..69a0f32d 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentInvoiceDetails.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentInvoiceDetails.md @@ -19,7 +19,7 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$id](../classes/YooKassa-Model-Payment-PaymentInvoiceDetails.md#property_id) | | Идентификатор счета в ЮКасса. | +| public | [$id](../classes/YooKassa-Model-Payment-PaymentInvoiceDetails.md#property_id) | | Идентификатор счета в ЮKassa. | --- ### Methods @@ -68,7 +68,7 @@ --- ***Description*** -Идентификатор счета в ЮКасса. +Идентификатор счета в ЮKassa. **Type:** string @@ -225,7 +225,7 @@ public getId() : string|null **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentInvoiceDetails](../classes/YooKassa-Model-Payment-PaymentInvoiceDetails.md) -**Returns:** string|null - Идентификатор счета в ЮКасса. +**Returns:** string|null - Идентификатор счета в ЮKassa. @@ -364,7 +364,7 @@ public setId(string|null $id = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | id | Идентификатор счета в ЮКасса. | +| string OR null | id | Идентификатор счета в ЮKassa. | **Returns:** self - @@ -435,10 +435,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md index 5c119218..d82811ec 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -157,7 +157,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -584,7 +588,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -731,10 +735,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md index 516d16c6..60385908 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md @@ -20,7 +20,7 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Способ расчёта НДС | +| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Код способа расчета НДС | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property__type) | | | --- @@ -33,14 +33,14 @@ | public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | | public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | | public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | -| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает способ расчёта НДС | +| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает код способа расчета НДС | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | | public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | -| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает способ расчёта НДС | +| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает код способа расчета НДС | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -70,7 +70,7 @@ --- ***Description*** -Способ расчёта НДС +Код способа расчета НДС **Type:** string @@ -81,7 +81,7 @@ #### protected $_type : ?string --- **Type:** ?string -Способ расчёта НДС +Код способа расчета НДС **Details:** @@ -230,12 +230,12 @@ public getType() : string|null **Summary** -Возвращает способ расчёта НДС +Возвращает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) -**Returns:** string|null - Способ расчёта НДС +**Returns:** string|null - Код способа расчета НДС @@ -366,7 +366,7 @@ public setType(string|null $type) : self **Summary** -Устанавливает способ расчёта НДС +Устанавливает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) @@ -374,7 +374,7 @@ public setType(string|null $type) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Способ расчёта НДС | +| string OR null | type | Код способа расчета НДС | **Returns:** self - @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md index 3d520e87..85a1478f 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md @@ -21,7 +21,7 @@ | ----------:| ---- | ---- | ------- | | public | [$amount](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md#property_amount) | | Сумма НДС | | public | [$rate](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md#property_rate) | | Налоговая ставка (в процентах). Возможные значения: ~`5`, ~`7`, ~`10` и ~`20`. | -| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Способ расчёта НДС | +| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Код способа расчета НДС | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property__type) | | | --- @@ -36,7 +36,7 @@ | public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | | public | [getAmount()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md#method_getAmount) | | Возвращает сумму НДС | | public | [getRate()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md#method_getRate) | | Возвращает налоговую ставку НДС | -| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает способ расчёта НДС | +| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает код способа расчета НДС | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | @@ -45,7 +45,7 @@ | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | | public | [setAmount()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md#method_setAmount) | | Устанавливает сумму НДС | | public | [setRate()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-CalculatedVatData.md#method_setRate) | | Устанавливает налоговую ставку НДС | -| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает способ расчёта НДС | +| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает код способа расчета НДС | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -100,7 +100,7 @@ --- ***Description*** -Способ расчёта НДС +Код способа расчета НДС **Type:** string @@ -112,7 +112,7 @@ #### protected $_type : ?string --- **Type:** ?string -Способ расчёта НДС +Код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) @@ -292,12 +292,12 @@ public getType() : string|null **Summary** -Возвращает способ расчёта НДС +Возвращает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) -**Returns:** string|null - Способ расчёта НДС +**Returns:** string|null - Код способа расчета НДС @@ -472,7 +472,7 @@ public setType(string|null $type) : self **Summary** -Устанавливает способ расчёта НДС +Устанавливает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) @@ -480,7 +480,7 @@ public setType(string|null $type) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Способ расчёта НДС | +| string OR null | type | Код способа расчета НДС | **Returns:** self - @@ -551,10 +551,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-MixedVatData.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-MixedVatData.md index 6a79eaab..d29d9304 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-MixedVatData.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-MixedVatData.md @@ -20,7 +20,7 @@ | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | | public | [$amount](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-MixedVatData.md#property_amount) | | Сумма НДС | -| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Способ расчёта НДС | +| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Код способа расчета НДС | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property__type) | | | --- @@ -34,7 +34,7 @@ | public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | | public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | | public | [getAmount()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-MixedVatData.md#method_getAmount) | | Возвращает сумму НДС | -| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает способ расчёта НДС | +| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает код способа расчета НДС | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | @@ -42,7 +42,7 @@ | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | | public | [setAmount()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-MixedVatData.md#method_setAmount) | | Устанавливает сумму НДС | -| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает способ расчёта НДС | +| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает код способа расчета НДС | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -85,7 +85,7 @@ --- ***Description*** -Способ расчёта НДС +Код способа расчета НДС **Type:** string @@ -97,7 +97,7 @@ #### protected $_type : ?string --- **Type:** ?string -Способ расчёта НДС +Код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) @@ -260,12 +260,12 @@ public getType() : string|null **Summary** -Возвращает способ расчёта НДС +Возвращает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) -**Returns:** string|null - Способ расчёта НДС +**Returns:** string|null - Код способа расчета НДС @@ -418,7 +418,7 @@ public setType(string|null $type) : self **Summary** -Устанавливает способ расчёта НДС +Устанавливает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) @@ -426,7 +426,7 @@ public setType(string|null $type) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Способ расчёта НДС | +| string OR null | type | Код способа расчета НДС | **Returns:** self - @@ -497,10 +497,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetails.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetails.md index ae39808f..e5d43d46 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetails.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetails.md @@ -934,10 +934,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md index c5b56063..f34f7b57 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md @@ -216,10 +216,10 @@ public getAccount() : string|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-UntaxedVatData.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-UntaxedVatData.md index 3a081cb3..c8a9ee00 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-UntaxedVatData.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-UntaxedVatData.md @@ -19,7 +19,7 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Способ расчёта НДС | +| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property_type) | | Код способа расчета НДС | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#property__type) | | | --- @@ -32,14 +32,14 @@ | public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | | public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | | public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | -| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает способ расчёта НДС | +| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_getType) | | Возвращает код способа расчета НДС | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | | public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | | public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | | public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | | public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | | public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | -| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает способ расчёта НДС | +| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md#method_setType) | | Устанавливает код способа расчета НДС | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | | protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | | protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | @@ -70,7 +70,7 @@ --- ***Description*** -Способ расчёта НДС +Код способа расчета НДС **Type:** string @@ -82,7 +82,7 @@ #### protected $_type : ?string --- **Type:** ?string -Способ расчёта НДС +Код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) @@ -228,12 +228,12 @@ public getType() : string|null **Summary** -Возвращает способ расчёта НДС +Возвращает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) -**Returns:** string|null - Способ расчёта НДС +**Returns:** string|null - Код способа расчета НДС @@ -364,7 +364,7 @@ public setType(string|null $type) : self **Summary** -Устанавливает способ расчёта НДС +Устанавливает код способа расчета НДС **Details:** * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\B2b\Sberbank\AbstractVatData](../classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-AbstractVatData.md) @@ -372,7 +372,7 @@ public setType(string|null $type) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | type | Способ расчёта НДС | +| string OR null | type | Код способа расчета НДС | **Returns:** self - @@ -443,10 +443,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataFactory.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataFactory.md index f5e432f5..21e84b90 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataFactory.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataFactory.md @@ -99,10 +99,10 @@ public factoryFromArray(array|null $data = [], string|null $type = null) : \YooK ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataInterface.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataInterface.md index d66ac564..62998196 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataInterface.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataInterface.md @@ -102,10 +102,10 @@ public getAmount() : \YooKassa\Model\AmountInterface|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataRate.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataRate.md index 8c7ae975..1b991d75 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataRate.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataRate.md @@ -190,10 +190,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataType.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataType.md index 6c3a7c64..b05847a4 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataType.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-B2b-Sberbank-VatDataType.md @@ -167,10 +167,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCard.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCard.md index 3b69f951..2931ce3d 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCard.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCard.md @@ -957,10 +957,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardProduct.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardProduct.md index 73cbaac8..aaceb8cd 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardProduct.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardProduct.md @@ -490,10 +490,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardSource.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardSource.md index b464d742..0ca53dc0 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardSource.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardSource.md @@ -167,10 +167,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardType.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardType.md index 3407366d..488c464e 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardType.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-BankCardType.md @@ -269,10 +269,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificate.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificate.md index 217bf58a..cdf201b1 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificate.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificate.md @@ -649,10 +649,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificateApprovedPaymentArticle.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificateApprovedPaymentArticle.md index cb6205f3..c5c4060b 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificateApprovedPaymentArticle.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificateApprovedPaymentArticle.md @@ -636,10 +636,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificatePaymentData.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificatePaymentData.md index c076e6ce..daba3c8f 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificatePaymentData.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-ElectronicCertificate-ElectronicCertificatePaymentData.md @@ -503,10 +503,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodAlfaBank.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodAlfaBank.md index 2404d6e6..a02afc84 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodAlfaBank.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodAlfaBank.md @@ -26,7 +26,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -180,7 +180,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -646,7 +650,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -793,10 +797,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodApplePay.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodApplePay.md index 1dbe0dd4..637235f3 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodApplePay.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodApplePay.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -164,7 +164,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -591,7 +595,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -738,10 +742,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodB2bSberbank.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodB2bSberbank.md index 95e82787..914e086e 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodB2bSberbank.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodB2bSberbank.md @@ -31,7 +31,7 @@ | public | [$vat_data](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodB2bSberbank.md#property_vat_data) | | Данные об НДС | | public | [$vatData](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodB2bSberbank.md#property_vatData) | | Данные об НДС | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -248,7 +248,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -770,7 +774,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -939,10 +943,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodBankCard.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodBankCard.md index c3be4c60..da2228c7 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodBankCard.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodBankCard.md @@ -27,7 +27,7 @@ | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_card](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodBankCard.md#property__card) | | | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -188,7 +188,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -654,7 +658,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -801,10 +805,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodCash.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodCash.md index 272e8645..f6c51e75 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodCash.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodCash.md @@ -9,7 +9,7 @@ **Description:** -Оплата наличными в терминалах РФ или СНГ. +Оплата наличными в терминалах. --- ### Constants @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -164,7 +164,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -591,7 +595,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -738,10 +742,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodElectronicCertificate.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodElectronicCertificate.md index fd1ef04b..3a6d846a 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodElectronicCertificate.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodElectronicCertificate.md @@ -30,7 +30,7 @@ | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodElectronicCertificate.md#property_type) | | Код способа оплаты. | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -235,7 +235,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -779,7 +783,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -926,10 +930,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodFactory.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodFactory.md index 6c6ee927..ba8ad258 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodFactory.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodFactory.md @@ -112,10 +112,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodGooglePay.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodGooglePay.md index 408f2daf..fa4646e4 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodGooglePay.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodGooglePay.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -164,7 +164,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -591,7 +595,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -738,10 +742,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodInstallments.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodInstallments.md index 7e92e52f..c499b80e 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodInstallments.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodInstallments.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -165,7 +165,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -592,7 +596,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -739,10 +743,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodMobileBalance.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodMobileBalance.md index a36b239b..e3e57e45 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodMobileBalance.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodMobileBalance.md @@ -26,7 +26,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -179,7 +179,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -645,7 +649,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -792,10 +796,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodPsb.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodPsb.md index aa5cc7f4..9fe333f2 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodPsb.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodPsb.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -165,7 +165,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -592,7 +596,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -739,10 +743,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodQiwi.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodQiwi.md index 3f802d1f..943232e6 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodQiwi.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodQiwi.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -165,7 +165,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -592,7 +596,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -739,10 +743,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberBnpl.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberBnpl.md new file mode 100644 index 00000000..31ba21d5 --- /dev/null +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberBnpl.md @@ -0,0 +1,751 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberBnpl +### Namespace: [\YooKassa\Model\Payment\PaymentMethod](../namespaces/yookassa-model-payment-paymentmethod.md) +--- +**Summary:** + +Класс, представляющий модель PaymentMethodSberBnpl. + +**Description:** + +Оплата через сервис «Плати частями». + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_id) | | Идентификатор записи о сохраненных платежных данных | +| public | [$saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_saved) | | Возможность многократного использования | +| public | [$status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_status) | | Название метода оплаты | +| public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | +| public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | +| protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | +| protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | +| protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | +| protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberBnpl.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getId()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getId) | | Возвращает id. | +| public | [getSaved()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getSaved) | | Возвращает saved. | +| public | [getStatus()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getStatus) | | Возвращает status. | +| public | [getTitle()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getTitle) | | Возвращает Название способа оплаты. | +| public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getType) | | Возвращает тип платежного метода. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setId()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setId) | | Устанавливает id. | +| public | [setSaved()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setSaved) | | Устанавливает признак возможности многократного использования. | +| public | [setStatus()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setStatus) | | Устанавливает status. | +| public | [setTitle()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setTitle) | | Устанавливает Название способа оплаты. | +| public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setType) | | Устанавливает тип платежного метода. | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Model/Payment/PaymentMethod/PaymentMethodSberBnpl.php](../../lib/Model/Payment/PaymentMethod/PaymentMethodSberBnpl.php) +* Package: YooKassa\Model +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + * \YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberBnpl + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $id : string +--- +***Description*** + +Идентификатор записи о сохраненных платежных данных + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### public $saved : bool +--- +***Description*** + +Возможность многократного использования + +**Type:** bool + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### public $status : string +--- +***Description*** + +Название метода оплаты + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### public $title : string +--- +***Description*** + +Название метода оплаты + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### public $type : string +--- +***Description*** + +Код способа оплаты + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### protected $_id : ?string +--- +**Summary** + +Идентификатор записи о сохраненных платежных данных. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### protected $_saved : bool +--- +**Summary** + +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. + +**Type:** bool + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### protected $_status : ?string +--- +**Summary** + +Статус проверки и сохранения способа оплаты. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### protected $_title : ?string +--- +**Summary** + +Название способа оплаты. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +#### protected $_type : ?string +--- +**Summary** + +Код способа оплаты. + +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberBnpl](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberBnpl.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getId() : string|null + +```php +public getId() : string|null +``` + +**Summary** + +Возвращает id. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +**Returns:** string|null - + + + +#### public getSaved() : bool|null + +```php +public getSaved() : bool|null +``` + +**Summary** + +Возвращает saved. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +**Returns:** bool|null - + + + +#### public getStatus() : string|null + +```php +public getStatus() : string|null +``` + +**Summary** + +Возвращает status. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +**Returns:** string|null - + + + +#### public getTitle() : string|null + +```php +public getTitle() : string|null +``` + +**Summary** + +Возвращает Название способа оплаты. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +**Returns:** string|null - Название способа оплаты + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает тип платежного метода. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +**Returns:** string|null - Тип платежного метода + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setId() : self + +```php +public setId(string|null $id = null) : self +``` + +**Summary** + +Устанавливает id. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | id | Идентификатор способа оплаты. | + +##### Throws: +| Type | Description | +| ---- | ----------- | +| \Exception | | + +**Returns:** self - + + + +#### public setSaved() : self + +```php +public setSaved(bool|null $saved = null) : self +``` + +**Summary** + +Устанавливает признак возможности многократного использования. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | + +##### Throws: +| Type | Description | +| ---- | ----------- | +| \Exception | | + +**Returns:** self - + + + +#### public setStatus() : self + +```php +public setStatus(string|null $status = null) : self +``` + +**Summary** + +Устанавливает status. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | status | | + +**Returns:** self - + + + +#### public setTitle() : self + +```php +public setTitle(string|null $title = null) : self +``` + +**Summary** + +Устанавливает Название способа оплаты. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | title | Название способа оплаты. | + +##### Throws: +| Type | Description | +| ---- | ----------- | +| \Exception | | + +**Returns:** self - + + + +#### public setType() : self + +```php +public setType(string|null $type = null) : self +``` + +**Summary** + +Устанавливает тип платежного метода. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип платежного метода | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md index 589a7860..df61f68b 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md @@ -26,10 +26,12 @@ | public | [$loanOption](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md#property_loanOption) | | Тариф кредита | | public | [$saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_saved) | | Возможность многократного использования | | public | [$status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_status) | | Название метода оплаты | +| public | [$suspended_until](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md#property_suspended_until) | | Время, когда заканчивается период охлаждения кредита или рассрочки. | +| public | [$suspendedUntil](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md#property_suspendedUntil) | | Время, когда заканчивается период охлаждения кредита или рассрочки. | | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -49,6 +51,7 @@ | public | [getLoanOption()](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md#method_getLoanOption) | | Возвращает тариф кредита. | | public | [getSaved()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getSaved) | | Возвращает saved. | | public | [getStatus()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getStatus) | | Возвращает status. | +| public | [getSuspendedUntil()](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md#method_getSuspendedUntil) | | Возвращает время, когда заканчивается период охлаждения кредита или рассрочки. | | public | [getTitle()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getTitle) | | Возвращает Название способа оплаты. | | public | [getType()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_getType) | | Возвращает тип платежного метода. | | public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | @@ -62,6 +65,7 @@ | public | [setLoanOption()](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md#method_setLoanOption) | | Устанавливает тариф кредита. | | public | [setSaved()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setSaved) | | Устанавливает признак возможности многократного использования. | | public | [setStatus()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setStatus) | | Устанавливает status. | +| public | [setSuspendedUntil()](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md#method_setSuspendedUntil) | | Устанавливает время, когда заканчивается период охлаждения кредита или рассрочки. | | public | [setTitle()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setTitle) | | Устанавливает Название способа оплаты. | | public | [setType()](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#method_setType) | | Устанавливает тип платежного метода. | | public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | @@ -176,6 +180,30 @@ * Inherited From: [\YooKassa\Model\Payment\PaymentMethod\AbstractPaymentMethod](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md) + +#### public $suspended_until : \DateTime +--- +***Description*** + +Время, когда заканчивается период охлаждения кредита или рассрочки. + +**Type:** \DateTime + +**Details:** + + + +#### public $suspendedUntil : \DateTime +--- +***Description*** + +Время, когда заканчивается период охлаждения кредита или рассрочки. + +**Type:** \DateTime + +**Details:** + + #### public $title : string --- @@ -220,7 +248,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -484,6 +516,23 @@ public getStatus() : string|null **Returns:** string|null - + +#### public getSuspendedUntil() : \DateTime|null + +```php +public getSuspendedUntil() : \DateTime|null +``` + +**Summary** + +Возвращает время, когда заканчивается период охлаждения кредита или рассрочки. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberLoan](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md) + +**Returns:** \DateTime|null - + + #### public getTitle() : string|null @@ -725,7 +774,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -757,6 +806,28 @@ public setStatus(string|null $status = null) : self **Returns:** self - + +#### public setSuspendedUntil() : self + +```php +public setSuspendedUntil(\DateTime|string|null $suspended_until = null) : self +``` + +**Summary** + +Устанавливает время, когда заканчивается период охлаждения кредита или рассрочки. + +**Details:** +* Inherited From: [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberLoan](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| \DateTime OR string OR null | suspended_until | Время, когда заканчивается период охлаждения кредита или рассрочки. | + +**Returns:** self - + + #### public setTitle() : self @@ -872,10 +943,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberbank.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberbank.md index 2f524744..db98c1e0 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberbank.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberbank.md @@ -28,7 +28,7 @@ | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_card](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodBankCard.md#property__card) | | | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -206,7 +206,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -711,7 +715,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -858,10 +862,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSbp.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSbp.md index da39965f..2ab1e1ce 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSbp.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSbp.md @@ -33,7 +33,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -276,7 +276,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -837,7 +841,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -1006,10 +1010,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodTinkoffBank.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodTinkoffBank.md index 92b45048..d598982d 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodTinkoffBank.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodTinkoffBank.md @@ -27,7 +27,7 @@ | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_card](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodBankCard.md#property__card) | | | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -191,7 +191,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -657,7 +661,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -804,10 +808,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodUnknown.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodUnknown.md index 16010f93..266cc600 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodUnknown.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodUnknown.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -165,7 +165,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -592,7 +596,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -739,10 +743,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWebmoney.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWebmoney.md index a0899623..13791477 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWebmoney.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWebmoney.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -165,7 +165,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -592,7 +596,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -739,10 +743,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWechat.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWechat.md index 072fda81..8bf5df90 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWechat.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodWechat.md @@ -25,7 +25,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -165,7 +165,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -592,7 +596,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -739,10 +743,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodYooMoney.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodYooMoney.md index 92a2c5a1..e47d911f 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodYooMoney.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodYooMoney.md @@ -27,7 +27,7 @@ | public | [$title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_title) | | Название метода оплаты | | public | [$type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property_type) | | Код способа оплаты | | protected | [$_id](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__id) | | Идентификатор записи о сохраненных платежных данных. | -| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| protected | [$_saved](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__saved) | | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). | | protected | [$_status](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__status) | | Статус проверки и сохранения способа оплаты. | | protected | [$_title](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__title) | | Название способа оплаты. | | protected | [$_type](../classes/YooKassa-Model-Payment-PaymentMethod-AbstractPaymentMethod.md#property__type) | | Код способа оплаты. | @@ -192,7 +192,11 @@ --- **Summary** -С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). +Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + +***Description*** + +Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. **Type:** bool @@ -658,7 +662,7 @@ public setSaved(bool|null $saved = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| bool OR null | saved | С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). | +| bool OR null | saved | Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. | ##### Throws: | Type | Description | @@ -805,10 +809,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethod-SbpPayerBankDetails.md b/docs/classes/YooKassa-Model-Payment-PaymentMethod-SbpPayerBankDetails.md index aa1465b0..a9a72f68 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethod-SbpPayerBankDetails.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethod-SbpPayerBankDetails.md @@ -490,10 +490,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethodStatus.md b/docs/classes/YooKassa-Model-Payment-PaymentMethodStatus.md index b9a17bca..fb66dc61 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethodStatus.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethodStatus.md @@ -168,10 +168,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentMethodType.md b/docs/classes/YooKassa-Model-Payment-PaymentMethodType.md index cd1d9cdb..e720dbd2 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentMethodType.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentMethodType.md @@ -9,7 +9,7 @@ **Description:** -Тип источника средств для проведения платежа. +Код способа оплаты — тип платежного средства, которое используется для оплаты. [Подробнее о способах оплаты](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-methods) Возможные значения: - `yoo_money` - Платеж из кошелька ЮMoney @@ -51,6 +51,7 @@ | public | [SBP](../classes/YooKassa-Model-Payment-PaymentMethodType.md#constant_SBP) | | Оплата через сервис быстрых платежей | | public | [SBER_LOAN](../classes/YooKassa-Model-Payment-PaymentMethodType.md#constant_SBER_LOAN) | | Прием оплаты с использованием Кредита от СберБанка | | public | [ELECTRONIC_CERTIFICATE](../classes/YooKassa-Model-Payment-PaymentMethodType.md#constant_ELECTRONIC_CERTIFICATE) | | Прием платежей по электронному сертификату, привязанному к карте «Мир» | +| public | [SBER_BNPL](../classes/YooKassa-Model-Payment-PaymentMethodType.md#constant_SBER_BNPL) | | Оплата через сервис «Плати частями» | | public | [UNKNOWN](../classes/YooKassa-Model-Payment-PaymentMethodType.md#constant_UNKNOWN) | *deprecated* | Для неизвестных методов оплаты | --- @@ -261,6 +262,15 @@ ELECTRONIC_CERTIFICATE = 'electronic_certificate' ``` + +###### SBER_BNPL +Оплата через сервис «Плати частями» + +```php +SBER_BNPL = 'sber_bnpl' +``` + + ###### ~~UNKNOWN~~ Для неизвестных методов оплаты @@ -354,10 +364,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-PaymentStatus.md b/docs/classes/YooKassa-Model-Payment-PaymentStatus.md index f42e4a18..fea301f3 100644 --- a/docs/classes/YooKassa-Model-Payment-PaymentStatus.md +++ b/docs/classes/YooKassa-Model-Payment-PaymentStatus.md @@ -178,10 +178,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-ReceiptRegistrationStatus.md b/docs/classes/YooKassa-Model-Payment-ReceiptRegistrationStatus.md index 2952bb9f..ff2b328b 100644 --- a/docs/classes/YooKassa-Model-Payment-ReceiptRegistrationStatus.md +++ b/docs/classes/YooKassa-Model-Payment-ReceiptRegistrationStatus.md @@ -167,10 +167,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Recipient.md b/docs/classes/YooKassa-Model-Payment-Recipient.md index d35c5779..1c8b4e05 100644 --- a/docs/classes/YooKassa-Model-Payment-Recipient.md +++ b/docs/classes/YooKassa-Model-Payment-Recipient.md @@ -527,10 +527,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-RecipientInterface.md b/docs/classes/YooKassa-Model-Payment-RecipientInterface.md index 34ab59bd..267caf21 100644 --- a/docs/classes/YooKassa-Model-Payment-RecipientInterface.md +++ b/docs/classes/YooKassa-Model-Payment-RecipientInterface.md @@ -94,10 +94,10 @@ public getGatewayId() : string|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-ThreeDSecure.md b/docs/classes/YooKassa-Model-Payment-ThreeDSecure.md index 22c213aa..d4c44d8a 100644 --- a/docs/classes/YooKassa-Model-Payment-ThreeDSecure.md +++ b/docs/classes/YooKassa-Model-Payment-ThreeDSecure.md @@ -435,10 +435,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-Transfer.md b/docs/classes/YooKassa-Model-Payment-Transfer.md index cded2879..5bd77ed3 100644 --- a/docs/classes/YooKassa-Model-Payment-Transfer.md +++ b/docs/classes/YooKassa-Model-Payment-Transfer.md @@ -882,10 +882,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-TransferInterface.md b/docs/classes/YooKassa-Model-Payment-TransferInterface.md index 5417a963..4ded3f12 100644 --- a/docs/classes/YooKassa-Model-Payment-TransferInterface.md +++ b/docs/classes/YooKassa-Model-Payment-TransferInterface.md @@ -308,10 +308,10 @@ public getMetadata() : null|\YooKassa\Model\Metadata ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment-TransferStatus.md b/docs/classes/YooKassa-Model-Payment-TransferStatus.md index 9919f210..e1c33638 100644 --- a/docs/classes/YooKassa-Model-Payment-TransferStatus.md +++ b/docs/classes/YooKassa-Model-Payment-TransferStatus.md @@ -177,10 +177,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md b/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md index 16ab3c63..b3313c63 100644 --- a/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md +++ b/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md @@ -9,7 +9,7 @@ **Description:** -Платежное средство продавца, на которое ЮKassa переводит оплату. +Платежное средство, на которое ЮKassa зачисляет выплату. --- ### Constants @@ -448,10 +448,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-IncomeReceipt.md b/docs/classes/YooKassa-Model-Payout-IncomeReceipt.md index 238d91c2..6178bf70 100644 --- a/docs/classes/YooKassa-Model-Payout-IncomeReceipt.md +++ b/docs/classes/YooKassa-Model-Payout-IncomeReceipt.md @@ -644,10 +644,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-Payout.md b/docs/classes/YooKassa-Model-Payout-Payout.md index 238caad5..0df7cedd 100644 --- a/docs/classes/YooKassa-Model-Payout-Payout.md +++ b/docs/classes/YooKassa-Model-Payout-Payout.md @@ -9,7 +9,7 @@ **Description:** -Объект выплаты. +Объект выплаты (Payout) — актуальная информация о выплате. --- ### Constants @@ -1348,10 +1348,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md index 58ae13ab..e0966a2e 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md @@ -491,10 +491,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md index 0d971823..4fb6ad4f 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md @@ -163,10 +163,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md index 3b228ec0..26a46bce 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md @@ -262,10 +262,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md index bbcf73ec..9c8198ab 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md @@ -505,10 +505,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md index 3953a39f..76ca8b65 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md @@ -703,10 +703,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md index affc3ce0..59c0e2ea 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationSbp.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationSbp.md index 4ee0207d..ece571ba 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationSbp.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationSbp.md @@ -651,10 +651,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md index 93eaa5e5..dd04d244 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md @@ -174,10 +174,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md index ab9027ad..f6ab9ceb 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md @@ -538,10 +538,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutInterface.md b/docs/classes/YooKassa-Model-Payout-PayoutInterface.md index fa0b9814..92f70ebe 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutInterface.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutInterface.md @@ -22,7 +22,7 @@ Interface DealInterface. | public | [getDescription()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getDescription) | | Возвращает описание транзакции (не более 128 символов). | | public | [getId()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getId) | | Возвращает Id сделки. | | public | [getMetadata()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getMetadata) | | Возвращает дополнительные данные сделки. | -| public | [getPayoutDestination()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getPayoutDestination) | | Возвращает платежное средство продавца, на которое ЮKassa переводит оплату. | +| public | [getPayoutDestination()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getPayoutDestination) | | Возвращает платежное средство, на которое ЮKassa зачисляет выплату. | | public | [getStatus()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getStatus) | | Возвращает статус сделки. | | public | [getSucceededAt()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getSucceededAt) | | Возвращает время успешного проведения выплаты. | | public | [getTest()](../classes/YooKassa-Model-Payout-PayoutInterface.md#method_getTest) | | Возвращает признак тестовой операции. | @@ -118,12 +118,12 @@ public getPayoutDestination() : \YooKassa\Model\Payout\AbstractPayoutDestination **Summary** -Возвращает платежное средство продавца, на которое ЮKassa переводит оплату. +Возвращает платежное средство, на которое ЮKassa зачисляет выплату. **Details:** * Inherited From: [\YooKassa\Model\Payout\PayoutInterface](../classes/YooKassa-Model-Payout-PayoutInterface.md) -**Returns:** \YooKassa\Model\Payout\AbstractPayoutDestination|null - Платежное средство продавца, на которое ЮKassa переводит оплату +**Returns:** \YooKassa\Model\Payout\AbstractPayoutDestination|null - Платежное средство, на которое ЮKassa зачисляет выплату. @@ -258,10 +258,10 @@ public getTest() : bool|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutSelfEmployed.md b/docs/classes/YooKassa-Model-Payout-PayoutSelfEmployed.md index 316661f5..f7c287c9 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutSelfEmployed.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutSelfEmployed.md @@ -452,10 +452,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutStatus.md b/docs/classes/YooKassa-Model-Payout-PayoutStatus.md index 4500b5e3..bdc85c80 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutStatus.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutStatus.md @@ -174,10 +174,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-SbpParticipantBank.md b/docs/classes/YooKassa-Model-Payout-SbpParticipantBank.md index 169e564f..34dd256c 100644 --- a/docs/classes/YooKassa-Model-Payout-SbpParticipantBank.md +++ b/docs/classes/YooKassa-Model-Payout-SbpParticipantBank.md @@ -9,7 +9,7 @@ **Description:** -Участник СБП (Системы быстрых платежей ЦБ РФ) +Объект участника СБП (Системы быстрых платежей ЦБ РФ) — актуальная информация о банке или платежном сервисе, подключенном к СБП. --- ### Constants @@ -576,10 +576,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PersonalData-PersonalData.md b/docs/classes/YooKassa-Model-PersonalData-PersonalData.md index a2b5b870..f9f49214 100644 --- a/docs/classes/YooKassa-Model-PersonalData-PersonalData.md +++ b/docs/classes/YooKassa-Model-PersonalData-PersonalData.md @@ -9,7 +9,7 @@ **Description:** -Информация о персональных данных +Объект персональных данных (PersonalData) — актуальная информация о персональных данных пользователя, сохраненных в ЮKassa. --- ### Constants @@ -923,10 +923,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetails.md b/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetails.md index 146de382..4fdd6a00 100644 --- a/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetails.md +++ b/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetails.md @@ -489,10 +489,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsPartyCode.md b/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsPartyCode.md index d40dd4fb..5dbc9152 100644 --- a/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsPartyCode.md +++ b/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsPartyCode.md @@ -142,10 +142,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsReasonCode.md b/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsReasonCode.md index c0f93d26..7eb20738 100644 --- a/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsReasonCode.md +++ b/docs/classes/YooKassa-Model-PersonalData-PersonalDataCancellationDetailsReasonCode.md @@ -142,10 +142,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PersonalData-PersonalDataInterface.md b/docs/classes/YooKassa-Model-PersonalData-PersonalDataInterface.md index 94b8b284..db9aa97c 100644 --- a/docs/classes/YooKassa-Model-PersonalData-PersonalDataInterface.md +++ b/docs/classes/YooKassa-Model-PersonalData-PersonalDataInterface.md @@ -362,10 +362,10 @@ public setMetadata(null|array|\YooKassa\Model\Metadata $metadata = null) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PersonalData-PersonalDataStatus.md b/docs/classes/YooKassa-Model-PersonalData-PersonalDataStatus.md index 91a5b0a2..a7fe685d 100644 --- a/docs/classes/YooKassa-Model-PersonalData-PersonalDataStatus.md +++ b/docs/classes/YooKassa-Model-PersonalData-PersonalDataStatus.md @@ -166,10 +166,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PersonalData-PersonalDataType.md b/docs/classes/YooKassa-Model-PersonalData-PersonalDataType.md index 4f1dfb95..ea324c7d 100644 --- a/docs/classes/YooKassa-Model-PersonalData-PersonalDataType.md +++ b/docs/classes/YooKassa-Model-PersonalData-PersonalDataType.md @@ -155,10 +155,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md b/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md index e37c59c7..3df63f18 100644 --- a/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md +++ b/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md @@ -509,10 +509,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-AgentType.md b/docs/classes/YooKassa-Model-Receipt-AgentType.md index eb8eff6e..7cffc25f 100644 --- a/docs/classes/YooKassa-Model-Receipt-AgentType.md +++ b/docs/classes/YooKassa-Model-Receipt-AgentType.md @@ -203,10 +203,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md b/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md index 9036c592..8df23822 100644 --- a/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md +++ b/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md @@ -669,10 +669,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md b/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md index 12697d24..11c56b31 100644 --- a/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md +++ b/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md @@ -1085,10 +1085,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md b/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md index 71627ed9..e61b6772 100644 --- a/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md +++ b/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md @@ -509,10 +509,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md b/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md index 9c4ddfb4..05d80d91 100644 --- a/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md +++ b/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md @@ -602,10 +602,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-PaymentMode.md b/docs/classes/YooKassa-Model-Receipt-PaymentMode.md index 212020e2..4dac228d 100644 --- a/docs/classes/YooKassa-Model-Receipt-PaymentMode.md +++ b/docs/classes/YooKassa-Model-Receipt-PaymentMode.md @@ -202,10 +202,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md b/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md index 4684e00d..b42ed9f9 100644 --- a/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md +++ b/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md @@ -462,10 +462,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-Receipt.md b/docs/classes/YooKassa-Model-Receipt-Receipt.md index abc26a89..f00c436f 100644 --- a/docs/classes/YooKassa-Model-Receipt-Receipt.md +++ b/docs/classes/YooKassa-Model-Receipt-Receipt.md @@ -1068,10 +1068,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptCustomer.md b/docs/classes/YooKassa-Model-Receipt-ReceiptCustomer.md index 0aaa17ce..2e1b662c 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptCustomer.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptCustomer.md @@ -644,10 +644,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptCustomerInterface.md b/docs/classes/YooKassa-Model-Receipt-ReceiptCustomerInterface.md index 38dac1cf..c7a22d7a 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptCustomerInterface.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptCustomerInterface.md @@ -140,10 +140,10 @@ public jsonSerialize() : array ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptInterface.md b/docs/classes/YooKassa-Model-Receipt-ReceiptInterface.md index 2f603cba..d6a94498 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptInterface.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptInterface.md @@ -181,10 +181,10 @@ public normalize(\YooKassa\Model\AmountInterface $orderAmount, bool $withShippin ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptItem.md b/docs/classes/YooKassa-Model-Receipt-ReceiptItem.md index ec1a7c5c..6331adbd 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptItem.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptItem.md @@ -5,7 +5,7 @@ --- **Summary:** -Информация о товарной позиции в заказе, позиция фискального чека. +Информация о товарной позиции в заказе. Используется для формирования чека. --- @@ -1702,10 +1702,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md b/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md index 521f9468..12947db5 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md @@ -567,10 +567,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptItemInterface.md b/docs/classes/YooKassa-Model-Receipt-ReceiptItemInterface.md index 3a55f648..38f17bb2 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptItemInterface.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptItemInterface.md @@ -436,10 +436,10 @@ public isShipping() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md b/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md index 1689094d..ed44be3b 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md @@ -374,10 +374,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptType.md b/docs/classes/YooKassa-Model-Receipt-ReceiptType.md index 8e31b937..1549a7fb 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptType.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptType.md @@ -155,10 +155,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-Settlement.md b/docs/classes/YooKassa-Model-Receipt-Settlement.md index b6fd1889..bab6fdce 100644 --- a/docs/classes/YooKassa-Model-Receipt-Settlement.md +++ b/docs/classes/YooKassa-Model-Receipt-Settlement.md @@ -488,10 +488,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-SettlementInterface.md b/docs/classes/YooKassa-Model-Receipt-SettlementInterface.md index 7918bace..43b9d170 100644 --- a/docs/classes/YooKassa-Model-Receipt-SettlementInterface.md +++ b/docs/classes/YooKassa-Model-Receipt-SettlementInterface.md @@ -83,10 +83,10 @@ public getAmount() : \YooKassa\Model\AmountInterface|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-SettlementType.md b/docs/classes/YooKassa-Model-Receipt-SettlementType.md index b42e4499..9203f92a 100644 --- a/docs/classes/YooKassa-Model-Receipt-SettlementType.md +++ b/docs/classes/YooKassa-Model-Receipt-SettlementType.md @@ -168,10 +168,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-Supplier.md b/docs/classes/YooKassa-Model-Receipt-Supplier.md index e3bf0d36..a2b5ec4c 100644 --- a/docs/classes/YooKassa-Model-Receipt-Supplier.md +++ b/docs/classes/YooKassa-Model-Receipt-Supplier.md @@ -547,10 +547,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-SupplierInterface.md b/docs/classes/YooKassa-Model-Receipt-SupplierInterface.md index 6aa4417a..f8c7f64e 100644 --- a/docs/classes/YooKassa-Model-Receipt-SupplierInterface.md +++ b/docs/classes/YooKassa-Model-Receipt-SupplierInterface.md @@ -177,10 +177,10 @@ public setInn(null|string $inn) : mixed ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-Refund.md b/docs/classes/YooKassa-Model-Refund-Refund.md index e9522d31..420a4236 100644 --- a/docs/classes/YooKassa-Model-Refund-Refund.md +++ b/docs/classes/YooKassa-Model-Refund-Refund.md @@ -9,7 +9,7 @@ **Description:** -Данные о возврате платежа. +Объект возврата (Refund) — актуальная информация о возврате платежа. --- ### Constants @@ -1231,10 +1231,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundAuthorizationDetails.md b/docs/classes/YooKassa-Model-Refund-RefundAuthorizationDetails.md index e31ec885..01b89d35 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundAuthorizationDetails.md +++ b/docs/classes/YooKassa-Model-Refund-RefundAuthorizationDetails.md @@ -436,10 +436,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundCancellationDetails.md b/docs/classes/YooKassa-Model-Refund-RefundCancellationDetails.md index 3ff791e2..eaead661 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundCancellationDetails.md +++ b/docs/classes/YooKassa-Model-Refund-RefundCancellationDetails.md @@ -491,10 +491,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsPartyCode.md b/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsPartyCode.md index f8d86bd7..4866b01e 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsPartyCode.md +++ b/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsPartyCode.md @@ -164,10 +164,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsReasonCode.md b/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsReasonCode.md index 14844993..a9cc1a21 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsReasonCode.md +++ b/docs/classes/YooKassa-Model-Refund-RefundCancellationDetailsReasonCode.md @@ -232,10 +232,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundInterface.md b/docs/classes/YooKassa-Model-Refund-RefundInterface.md index 553a4e26..401f26cd 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundInterface.md +++ b/docs/classes/YooKassa-Model-Refund-RefundInterface.md @@ -221,10 +221,10 @@ public getDeal() : null|\YooKassa\Model\Deal\RefundDealInfo ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethod-AbstractRefundMethod.md b/docs/classes/YooKassa-Model-Refund-RefundMethod-AbstractRefundMethod.md index 0d5defd5..cac6835a 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethod-AbstractRefundMethod.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethod-AbstractRefundMethod.md @@ -448,10 +448,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundArticle.md b/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundArticle.md index 3aadfc15..2df19660 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundArticle.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundArticle.md @@ -636,10 +636,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundData.md b/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundData.md index 7d55526b..3e79f802 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundData.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethod-ElectronicCertificate-ElectronicCertificateRefundData.md @@ -504,10 +504,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodElectronicCertificate.md b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodElectronicCertificate.md index 3eea8cb3..ee9d2aac 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodElectronicCertificate.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodElectronicCertificate.md @@ -581,10 +581,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodFactory.md b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodFactory.md index 48d0fcf7..fa8b5b63 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodFactory.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodSbp.md b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodSbp.md index 564bde01..1286d4f7 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodSbp.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodSbp.md @@ -514,10 +514,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodUnknown.md b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodUnknown.md index 77b6f01f..c0611f5e 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodUnknown.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethod-RefundMethodUnknown.md @@ -448,10 +448,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundMethodType.md b/docs/classes/YooKassa-Model-Refund-RefundMethodType.md index a6709f5b..9d874abe 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundMethodType.md +++ b/docs/classes/YooKassa-Model-Refund-RefundMethodType.md @@ -168,10 +168,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-RefundStatus.md b/docs/classes/YooKassa-Model-Refund-RefundStatus.md index 06ccc29d..a5587ae6 100644 --- a/docs/classes/YooKassa-Model-Refund-RefundStatus.md +++ b/docs/classes/YooKassa-Model-Refund-RefundStatus.md @@ -161,10 +161,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-Source.md b/docs/classes/YooKassa-Model-Refund-Source.md index 77630dcd..82a8d40c 100644 --- a/docs/classes/YooKassa-Model-Refund-Source.md +++ b/docs/classes/YooKassa-Model-Refund-Source.md @@ -608,10 +608,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund-SourceInterface.md b/docs/classes/YooKassa-Model-Refund-SourceInterface.md index 8149754f..b2a03f55 100644 --- a/docs/classes/YooKassa-Model-Refund-SourceInterface.md +++ b/docs/classes/YooKassa-Model-Refund-SourceInterface.md @@ -209,10 +209,10 @@ public setPlatformFeeAmount(\YooKassa\Model\AmountInterface|array|null $platform ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-AbstractConfirmation.md b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-AbstractConfirmation.md index 9268fd1e..2afc2f31 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-AbstractConfirmation.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-AbstractConfirmation.md @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationFactory.md b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationFactory.md index 7167c5fa..697b96f6 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationFactory.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationRedirect.md b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationRedirect.md index d33c404c..886b3099 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationRedirect.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationRedirect.md @@ -631,10 +631,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationType.md b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationType.md index 879c5d20..f172ab8f 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationType.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-Confirmation-ConfirmationType.md @@ -152,10 +152,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethod.md b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethod.md index 532269d4..af472c40 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethod.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethod.md @@ -920,10 +920,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodHolder.md b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodHolder.md index 1cefdaf9..c1c2557d 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodHolder.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodHolder.md @@ -515,10 +515,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodInterface.md b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodInterface.md index 08ab8d29..1c46e699 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodInterface.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodInterface.md @@ -200,10 +200,10 @@ public getConfirmation() : \YooKassa\Model\SavePaymentMethod\Confirmation\Abstra ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodStatus.md b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodStatus.md index e2eed4a4..ed337956 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodStatus.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodStatus.md @@ -172,10 +172,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodType.md b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodType.md index eb7b4316..cb1f6a1a 100644 --- a/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodType.md +++ b/docs/classes/YooKassa-Model-SavePaymentMethod-SavePaymentMethodType.md @@ -152,10 +152,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployed.md b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployed.md index ac43ca38..d3a7b50f 100644 --- a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployed.md +++ b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployed.md @@ -9,7 +9,7 @@ **Description:** -Объект самозанятого. +Объект самозанятого (SelfEmployed) — актуальная информация о самозанятом. --- ### Constants @@ -870,10 +870,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmation.md b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmation.md index 3e45c223..10e3c537 100644 --- a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmation.md +++ b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmation.md @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationFactory.md b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationFactory.md index eaabb2ac..73955806 100644 --- a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationFactory.md +++ b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationFactory.md @@ -56,7 +56,7 @@ public factory(string $type) : \YooKassa\Model\SelfEmployed\SelfEmployedConfirma ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string | type | Тип подтверждения платежа | +| string | type | Код сценария подтверждения | **Returns:** \YooKassa\Model\SelfEmployed\SelfEmployedConfirmation - @@ -79,7 +79,7 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model | Type | Name | Description | | ---- | ---- | ----------- | | array | data | Массив данных подтверждения платежа | -| null OR string | type | Тип подтверждения платежа | +| null OR string | type | Код сценария подтверждения | **Returns:** \YooKassa\Model\SelfEmployed\SelfEmployedConfirmation - @@ -96,10 +96,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Model ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationRedirect.md b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationRedirect.md index 90c831e9..f6bba4c4 100644 --- a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationRedirect.md +++ b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationRedirect.md @@ -518,10 +518,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationType.md b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationType.md index 4cf64674..076d8661 100644 --- a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationType.md +++ b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedConfirmationType.md @@ -151,10 +151,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedInterface.md b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedInterface.md index 6feee816..8f7cc296 100644 --- a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedInterface.md +++ b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedInterface.md @@ -360,10 +360,10 @@ public setTest(bool $test) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedStatus.md b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedStatus.md index ee3b7f3d..968069c7 100644 --- a/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedStatus.md +++ b/docs/classes/YooKassa-Model-SelfEmployed-SelfEmployedStatus.md @@ -187,10 +187,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Settings-FiscalizationData.md b/docs/classes/YooKassa-Model-Settings-FiscalizationData.md index 0484dbce..21026d4b 100644 --- a/docs/classes/YooKassa-Model-Settings-FiscalizationData.md +++ b/docs/classes/YooKassa-Model-Settings-FiscalizationData.md @@ -488,10 +488,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Settings-FiscalizationProvider.md b/docs/classes/YooKassa-Model-Settings-FiscalizationProvider.md index c8d607b1..6608c5d9 100644 --- a/docs/classes/YooKassa-Model-Settings-FiscalizationProvider.md +++ b/docs/classes/YooKassa-Model-Settings-FiscalizationProvider.md @@ -295,10 +295,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Settings-Me.md b/docs/classes/YooKassa-Model-Settings-Me.md index 43118003..bb368ca6 100644 --- a/docs/classes/YooKassa-Model-Settings-Me.md +++ b/docs/classes/YooKassa-Model-Settings-Me.md @@ -9,7 +9,7 @@ **Description:** -Информация о настройках магазина или шлюза. +Объект настроек магазина или шлюза (Me) — актуальная информация о настройках магазина или шлюза. --- ### Constants @@ -1014,10 +1014,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Webhook-Webhook.md b/docs/classes/YooKassa-Model-Webhook-Webhook.md index f26c4e80..d35e20e6 100644 --- a/docs/classes/YooKassa-Model-Webhook-Webhook.md +++ b/docs/classes/YooKassa-Model-Webhook-Webhook.md @@ -542,10 +542,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Webhook-WebhookInterface.md b/docs/classes/YooKassa-Model-Webhook-WebhookInterface.md index a9dcaa49..006a3995 100644 --- a/docs/classes/YooKassa-Model-Webhook-WebhookInterface.md +++ b/docs/classes/YooKassa-Model-Webhook-WebhookInterface.md @@ -171,10 +171,10 @@ public setUrl(string|null $url = null) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-AbstractListResponse.md b/docs/classes/YooKassa-Request-AbstractListResponse.md index ceb47669..1137e649 100644 --- a/docs/classes/YooKassa-Request-AbstractListResponse.md +++ b/docs/classes/YooKassa-Request-AbstractListResponse.md @@ -502,10 +502,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md b/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md index 122e1c0f..dcfaa93d 100644 --- a/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md +++ b/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md @@ -1232,10 +1232,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md index 56446b66..95454565 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md @@ -807,10 +807,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md index 51f59058..274293e8 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md @@ -280,10 +280,10 @@ protected initCurrentObject() : \YooKassa\Request\Deals\CreateDealRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md index c4256687..08499f97 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md @@ -286,10 +286,10 @@ public setMetadata(null|array|\YooKassa\Model\Metadata $metadata) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md index 0abe8665..2b3acb16 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Deals\CreateDealRequestInterface $request) : ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md b/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md index ddfed457..fe62c18d 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md @@ -1233,10 +1233,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealResponse.md b/docs/classes/YooKassa-Request-Deals-DealResponse.md index b38d0fec..94cddba7 100644 --- a/docs/classes/YooKassa-Request-Deals-DealResponse.md +++ b/docs/classes/YooKassa-Request-Deals-DealResponse.md @@ -1233,10 +1233,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequest.md b/docs/classes/YooKassa-Request-Deals-DealsRequest.md index 68ee8830..bd6a020b 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequest.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequest.md @@ -1488,10 +1488,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md b/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md index 030203df..9953b4e4 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md @@ -437,10 +437,10 @@ protected initCurrentObject() : \YooKassa\Request\Deals\DealsRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md b/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md index a243dc4c..492dc639 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md @@ -765,10 +765,10 @@ public setFullTextSearch(string|null $full_text_search) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md b/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md index ecf49535..4370d26b 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Common\AbstractRequest|\YooKassa\Request\Deals\DealsR ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsResponse.md b/docs/classes/YooKassa-Request-Deals-DealsResponse.md index 939de531..84e71e56 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsResponse.md +++ b/docs/classes/YooKassa-Request-Deals-DealsResponse.md @@ -19,10 +19,10 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$items](../classes/YooKassa-Request-Deals-DealsResponse.md#property_items) | | Массив сделок | +| public | [$items](../classes/YooKassa-Request-Deals-DealsResponse.md#property_items) | | Список сделок, созданных за последние три года. Сделки отсортированы по времени создания в порядке убывания (от новых к старым). | | public | [$nextCursor](../classes/YooKassa-Request-AbstractListResponse.md#property_nextCursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | public | [$type](../classes/YooKassa-Request-AbstractListResponse.md#property_type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | -| protected | [$_items](../classes/YooKassa-Request-Deals-DealsResponse.md#property__items) | | | +| protected | [$_items](../classes/YooKassa-Request-Deals-DealsResponse.md#property__items) | | Список сделок, созданных за последние три года. | | protected | [$_next_cursor](../classes/YooKassa-Request-AbstractListResponse.md#property__next_cursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | protected | [$_type](../classes/YooKassa-Request-AbstractListResponse.md#property__type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | @@ -76,7 +76,7 @@ --- ***Description*** -Массив сделок +Список сделок, созданных за последние три года. Сделки отсортированы по времени создания в порядке убывания (от новых к старым). **Type:** ListObjectInterface|null @@ -112,8 +112,18 @@ #### protected $_items : ?\YooKassa\Common\ListObject --- +**Summary** + +Список сделок, созданных за последние три года. + +***Description*** + +Сделки отсортированы по времени создания в порядке убывания (от новых к старым). +Если результатов больше, чем задано в limit, список будет выводиться фрагментами. +В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. + **Type:** ListObject -Массив сделок +Список сделок **Details:** @@ -532,10 +542,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequest.md b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequest.md index 573ac8b4..4ef1fa0d 100644 --- a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequest.md +++ b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequest.md @@ -980,10 +980,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestBuilder.md b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestBuilder.md index 117441ac..7b36b103 100644 --- a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestBuilder.md @@ -439,10 +439,10 @@ protected initCurrentObject() : \YooKassa\Request\Invoices\CreateInvoiceRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestInterface.md b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestInterface.md index 6ea007cc..ce3faa44 100644 --- a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestInterface.md +++ b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestInterface.md @@ -395,10 +395,10 @@ public setMetadata(\YooKassa\Model\Metadata|array|null $metadata = null) : \YooK ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestSerializer.md b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestSerializer.md index 34b0b2ad..b5e64a2f 100644 --- a/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Invoices-CreateInvoiceRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Invoices\CreateInvoiceRequestInterface $reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-AbstractDeliveryMethodData.md b/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-AbstractDeliveryMethodData.md index 8c4decb2..0e2a9138 100644 --- a/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-AbstractDeliveryMethodData.md +++ b/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-AbstractDeliveryMethodData.md @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataFactory.md b/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataFactory.md index 5c1638d2..879741fd 100644 --- a/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataFactory.md +++ b/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataSelf.md b/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataSelf.md index 5b265df9..d20f88b3 100644 --- a/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataSelf.md +++ b/docs/classes/YooKassa-Request-Invoices-DeliveryMethodData-DeliveryMethodDataSelf.md @@ -460,10 +460,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-InvoiceResponse.md b/docs/classes/YooKassa-Request-Invoices-InvoiceResponse.md index 566cfb98..17b7bd6d 100644 --- a/docs/classes/YooKassa-Request-Invoices-InvoiceResponse.md +++ b/docs/classes/YooKassa-Request-Invoices-InvoiceResponse.md @@ -29,7 +29,7 @@ | public | [$description](../classes/YooKassa-Model-Invoice-Invoice.md#property_description) | | Описание выставленного счета (не более 128 символов), которое вы увидите в личном кабинете ЮKassa, а пользователь на странице счета. Например: «Счет на оплату по договору 37». | | public | [$expires_at](../classes/YooKassa-Model-Invoice-Invoice.md#property_expires_at) | | Срок действия счета — дата и время, до которых можно оплатить выставленный счет. Указывается по [UTC](https://ru.wikipedia.org/wiki/Всемирное_координированное_время) и передается в формате [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). Пример: `2024-10-18T10:51:18.139Z` Присутствует только для счетов в статусе `pending`. | | public | [$expiresAt](../classes/YooKassa-Model-Invoice-Invoice.md#property_expiresAt) | | Срок действия счета — дата и время, до которых можно оплатить выставленный счет. Указывается по [UTC](https://ru.wikipedia.org/wiki/Всемирное_координированное_время) и передается в формате [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). Пример: `2024-10-18T10:51:18.139Z` Присутствует только для счетов в статусе `pending`. | -| public | [$id](../classes/YooKassa-Model-Invoice-Invoice.md#property_id) | | Идентификатор счета в ЮКасса. | +| public | [$id](../classes/YooKassa-Model-Invoice-Invoice.md#property_id) | | Идентификатор счета в ЮKassa. | | public | [$metadata](../classes/YooKassa-Model-Invoice-Invoice.md#property_metadata) | | Любые дополнительные данные, которые нужны вам для работы (например, ваш внутренний идентификатор заказа). Передаются в виде набора пар «ключ-значение» и возвращаются в ответе от ЮKassa. Ограничения: максимум 16 ключей, имя ключа не больше 32 символов, значение ключа не больше 512 символов, тип данных — строка в формате UTF-8. | | public | [$payment_details](../classes/YooKassa-Model-Invoice-Invoice.md#property_payment_details) | | Данные о платеже по выставленному счету. Присутствуют, только если платеж успешно [подтвержден пользователем](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-process#user-confirmation). | | public | [$paymentDetails](../classes/YooKassa-Model-Invoice-Invoice.md#property_paymentDetails) | | Данные о платеже по выставленному счету. Присутствуют, только если платеж успешно [подтвержден пользователем](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-process#user-confirmation). | @@ -40,7 +40,7 @@ | protected | [$_delivery_method](../classes/YooKassa-Model-Invoice-Invoice.md#property__delivery_method) | | Данные о выбранном способе доставки счета. Присутствует только для счетов в статусе `pending`. | | protected | [$_description](../classes/YooKassa-Model-Invoice-Invoice.md#property__description) | | Описание выставленного счета (не более 128 символов), которое вы увидите в личном кабинете ЮKassa, а пользователь на странице счета. | | protected | [$_expires_at](../classes/YooKassa-Model-Invoice-Invoice.md#property__expires_at) | | Срок действия счета — дата и время, до которых можно оплатить выставленный счет. Указывается по [UTC](https://ru.wikipedia.org/wiki/Всемирное_координированное_время) и передается в формате [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). | -| protected | [$_id](../classes/YooKassa-Model-Invoice-Invoice.md#property__id) | | Идентификатор счета в ЮКасса. | +| protected | [$_id](../classes/YooKassa-Model-Invoice-Invoice.md#property__id) | | Идентификатор счета в ЮKassa. | | protected | [$_metadata](../classes/YooKassa-Model-Invoice-Invoice.md#property__metadata) | | Любые дополнительные данные, которые нужны вам для работы (например, ваш внутренний идентификатор заказа). | | protected | [$_payment_details](../classes/YooKassa-Model-Invoice-Invoice.md#property__payment_details) | | Данные о платеже по выставленному счету. Присутствуют, только если платеж успешно [подтвержден пользователем](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-process#user-confirmation). | | protected | [$_status](../classes/YooKassa-Model-Invoice-Invoice.md#property__status) | | Статус счета. Возможные значения: `pending`, `succeeded`, `canceled`. | @@ -241,7 +241,7 @@ --- ***Description*** -Идентификатор счета в ЮКасса. +Идентификатор счета в ЮKassa. **Type:** string @@ -398,7 +398,7 @@ --- **Summary** -Идентификатор счета в ЮКасса. +Идентификатор счета в ЮKassa. **Type:** ?string @@ -702,7 +702,7 @@ public getId() : string|null **Details:** * Inherited From: [\YooKassa\Model\Invoice\Invoice](../classes/YooKassa-Model-Invoice-Invoice.md) -**Returns:** string|null - Идентификатор счета в ЮКасса +**Returns:** string|null - Идентификатор счета в ЮKassa @@ -1024,7 +1024,7 @@ public setId(string|null $id = null) : self ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string OR null | id | Идентификатор счета в ЮКасса. | +| string OR null | id | Идентификатор счета в ЮKassa. | **Returns:** self - @@ -1161,10 +1161,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Invoices-PaymentData.md b/docs/classes/YooKassa-Request-Invoices-PaymentData.md index 1fab692b..c75d540e 100644 --- a/docs/classes/YooKassa-Request-Invoices-PaymentData.md +++ b/docs/classes/YooKassa-Request-Invoices-PaymentData.md @@ -839,10 +839,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-AbstractConfirmation.md b/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-AbstractConfirmation.md index d459e7a6..88944050 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-AbstractConfirmation.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-AbstractConfirmation.md @@ -444,10 +444,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationFactory.md b/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationFactory.md index ae5bedaf..7b7b1709 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationFactory.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationRedirect.md b/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationRedirect.md index d63cbab3..855b9f1f 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationRedirect.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-ConfirmationData-ConfirmationRedirect.md @@ -618,10 +618,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequest.md b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequest.md index 850f011f..17412c89 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequest.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequest.md @@ -780,10 +780,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestBuilder.md b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestBuilder.md index f80620be..6d9b8e2b 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestBuilder.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestBuilder.md @@ -307,10 +307,10 @@ protected initCurrentObject() : \YooKassa\Request\PaymentMethods\CreatePaymentMe ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestInterface.md b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestInterface.md index e1fe46df..3008723f 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestInterface.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestInterface.md @@ -316,10 +316,10 @@ public setConfirmation(\YooKassa\Request\PaymentMethods\ConfirmationData\Abstrac ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestSerializer.md b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestSerializer.md index eb08c1c4..ce8767cc 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestSerializer.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-CreatePaymentMethodRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\PaymentMethods\CreatePaymentMethodRequestInte ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodCard.md b/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodCard.md index fa7d6341..904b1417 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodCard.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodCard.md @@ -677,10 +677,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodHolder.md b/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodHolder.md index ae4ad94c..637b9e24 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodHolder.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodHolder.md @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodResponse.md b/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodResponse.md index cf8bfc80..fdb59a8c 100644 --- a/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodResponse.md +++ b/docs/classes/YooKassa-Request-PaymentMethods-PaymentMethodResponse.md @@ -935,10 +935,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequest.md b/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequest.md index 37396c17..53c7dda5 100644 --- a/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequest.md +++ b/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequest.md @@ -806,10 +806,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequestBuilder.md b/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequestBuilder.md index fd7c3a1d..2c0e98cf 100644 --- a/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payments-AbstractPaymentRequestBuilder.md @@ -471,10 +471,10 @@ protected initCurrentObject() : \YooKassa\Common\AbstractRequestInterface|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md b/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md index 7ca3c5aa..225730be 100644 --- a/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md +++ b/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md @@ -2049,10 +2049,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Airline.md b/docs/classes/YooKassa-Request-Payments-Airline.md index 7b4c2d9f..d12a3815 100644 --- a/docs/classes/YooKassa-Request-Payments-Airline.md +++ b/docs/classes/YooKassa-Request-Payments-Airline.md @@ -690,10 +690,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-AirlineInterface.md b/docs/classes/YooKassa-Request-Payments-AirlineInterface.md index 6f92befc..1100e897 100644 --- a/docs/classes/YooKassa-Request-Payments-AirlineInterface.md +++ b/docs/classes/YooKassa-Request-Payments-AirlineInterface.md @@ -123,10 +123,10 @@ public getLegs() : \YooKassa\Request\Payments\LegInterface[]|\YooKassa\Common\Li ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CancelResponse.md b/docs/classes/YooKassa-Request-Payments-CancelResponse.md index 7d9d7736..b814c186 100644 --- a/docs/classes/YooKassa-Request-Payments-CancelResponse.md +++ b/docs/classes/YooKassa-Request-Payments-CancelResponse.md @@ -2050,10 +2050,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-AbstractConfirmationAttributes.md b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-AbstractConfirmationAttributes.md index 7822cc83..ad379daf 100644 --- a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-AbstractConfirmationAttributes.md +++ b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-AbstractConfirmationAttributes.md @@ -507,10 +507,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesEmbedded.md b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesEmbedded.md index 20d7a2a2..38865da4 100644 --- a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesEmbedded.md +++ b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesEmbedded.md @@ -535,10 +535,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesExternal.md b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesExternal.md index 8597fcbe..b27da442 100644 --- a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesExternal.md +++ b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesExternal.md @@ -535,10 +535,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesFactory.md b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesFactory.md index 99351a07..e12fb650 100644 --- a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesFactory.md +++ b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesFactory.md @@ -90,10 +90,10 @@ public factoryFromArray(array $data, string|null $type = null) : \YooKassa\Reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md index 2673d059..299f0da6 100644 --- a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md +++ b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md @@ -597,10 +597,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesQr.md b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesQr.md index a2922fec..238af813 100644 --- a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesQr.md +++ b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesQr.md @@ -594,10 +594,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesRedirect.md b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesRedirect.md index 19ef8fa9..8b07ea9c 100644 --- a/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesRedirect.md +++ b/docs/classes/YooKassa-Request-Payments-ConfirmationAttributes-ConfirmationAttributesRedirect.md @@ -644,10 +644,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequest.md b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequest.md index ffbde417..f98f0119 100644 --- a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequest.md +++ b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequest.md @@ -938,10 +938,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestBuilder.md b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestBuilder.md index 63077e6a..654eed30 100644 --- a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestBuilder.md @@ -519,10 +519,10 @@ protected initCurrentObject() : \YooKassa\Common\AbstractRequestInterface|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestInterface.md b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestInterface.md index 842355a0..7fb07120 100644 --- a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestInterface.md @@ -289,10 +289,10 @@ public setDeal(null|array|\YooKassa\Model\Deal\CaptureDealData $deal) : \YooKass ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestSerializer.md b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestSerializer.md index 099c064d..54ffb124 100644 --- a/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payments-CreateCaptureRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Payments\CreateCaptureRequestInterface $reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreateCaptureResponse.md b/docs/classes/YooKassa-Request-Payments-CreateCaptureResponse.md index 3dde81a6..81ffce59 100644 --- a/docs/classes/YooKassa-Request-Payments-CreateCaptureResponse.md +++ b/docs/classes/YooKassa-Request-Payments-CreateCaptureResponse.md @@ -2050,10 +2050,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md index 00967faa..8a0108e3 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md @@ -2148,10 +2148,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md index 3f52885d..b3adefad 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md @@ -1124,10 +1124,10 @@ protected initCurrentObject() : \YooKassa\Request\Payments\CreatePaymentRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md index d81b890c..617bad12 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md @@ -1074,10 +1074,10 @@ public setReceiver(null|array|\YooKassa\Request\Payments\ReceiverData\AbstractRe ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md index c8a1c8bd..d7aed645 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Payments\CreatePaymentRequestInterface $reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md index cff0f9bc..12266d2c 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md @@ -2050,10 +2050,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-FraudData.md b/docs/classes/YooKassa-Request-Payments-FraudData.md index acc34b18..0b74bd8b 100644 --- a/docs/classes/YooKassa-Request-Payments-FraudData.md +++ b/docs/classes/YooKassa-Request-Payments-FraudData.md @@ -516,10 +516,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Leg.md b/docs/classes/YooKassa-Request-Payments-Leg.md index 7dd1a6ed..9e1ed297 100644 --- a/docs/classes/YooKassa-Request-Payments-Leg.md +++ b/docs/classes/YooKassa-Request-Payments-Leg.md @@ -685,10 +685,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-LegInterface.md b/docs/classes/YooKassa-Request-Payments-LegInterface.md index 15a5c63a..a269abb8 100644 --- a/docs/classes/YooKassa-Request-Payments-LegInterface.md +++ b/docs/classes/YooKassa-Request-Payments-LegInterface.md @@ -176,10 +176,10 @@ public setDepartureDate(\DateTime|string|null $value) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Locale.md b/docs/classes/YooKassa-Request-Payments-Locale.md index d22be0bd..bcd70f7d 100644 --- a/docs/classes/YooKassa-Request-Payments-Locale.md +++ b/docs/classes/YooKassa-Request-Payments-Locale.md @@ -158,10 +158,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-MerchantCustomerBankAccount.md b/docs/classes/YooKassa-Request-Payments-MerchantCustomerBankAccount.md index 01d2c720..59c4c8c9 100644 --- a/docs/classes/YooKassa-Request-Payments-MerchantCustomerBankAccount.md +++ b/docs/classes/YooKassa-Request-Payments-MerchantCustomerBankAccount.md @@ -502,10 +502,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Passenger.md b/docs/classes/YooKassa-Request-Payments-Passenger.md index 7a1c1900..b82eddb6 100644 --- a/docs/classes/YooKassa-Request-Payments-Passenger.md +++ b/docs/classes/YooKassa-Request-Payments-Passenger.md @@ -517,10 +517,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PassengerInterface.md b/docs/classes/YooKassa-Request-Payments-PassengerInterface.md index 22d21ab8..202959a2 100644 --- a/docs/classes/YooKassa-Request-Payments-PassengerInterface.md +++ b/docs/classes/YooKassa-Request-Payments-PassengerInterface.md @@ -131,10 +131,10 @@ public setLastName(string|null $value) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md b/docs/classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md index 14f6a4d7..f6fc4cd9 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-ElectronicCertificate-ElectronicCertificateArticle.md b/docs/classes/YooKassa-Request-Payments-PaymentData-ElectronicCertificate-ElectronicCertificateArticle.md index e9208ad9..4bf9b24f 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-ElectronicCertificate-ElectronicCertificateArticle.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-ElectronicCertificate-ElectronicCertificateArticle.md @@ -811,10 +811,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataAlfabank.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataAlfabank.md index c77ff0d3..7a33d47b 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataAlfabank.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataAlfabank.md @@ -498,10 +498,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataApplePay.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataApplePay.md index 048c6801..15a4f24d 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataApplePay.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataApplePay.md @@ -510,10 +510,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataB2bSberbank.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataB2bSberbank.md index f6660cbd..6329bb34 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataB2bSberbank.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataB2bSberbank.md @@ -577,10 +577,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCard.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCard.md index 3bea40fe..9b0b3750 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCard.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCard.md @@ -497,10 +497,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCardCard.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCardCard.md index 30fa9c90..2622c4e5 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCardCard.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataBankCardCard.md @@ -677,10 +677,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataCash.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataCash.md index 93cdb78b..9b8297c7 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataCash.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataCash.md @@ -497,10 +497,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataElectronicCertificate.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataElectronicCertificate.md index a2b605df..d4ca73af 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataElectronicCertificate.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataElectronicCertificate.md @@ -631,10 +631,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataFactory.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataFactory.md index 41c31f29..2a17a5c2 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataFactory.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array|null $data = null, string|null $type = null) : \Yo ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataGooglePay.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataGooglePay.md index 27aba5ac..13b66ac9 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataGooglePay.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataGooglePay.md @@ -577,10 +577,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataInstallments.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataInstallments.md index 81cbd11f..90ddc3be 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataInstallments.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataInstallments.md @@ -444,10 +444,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataMobileBalance.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataMobileBalance.md index 89bc20fd..ef4a137c 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataMobileBalance.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataMobileBalance.md @@ -497,10 +497,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataQiwi.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataQiwi.md index 6ec56484..00e76423 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataQiwi.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataQiwi.md @@ -498,10 +498,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md new file mode 100644 index 00000000..8e409072 --- /dev/null +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md @@ -0,0 +1,506 @@ +# [YooKassa API SDK](../home.md) + +# Class: \YooKassa\Request\Payments\PaymentData\PaymentDataSberBnpl +### Namespace: [\YooKassa\Request\Payments\PaymentData](../namespaces/yookassa-request-payments-paymentdata.md) +--- +**Summary:** + +Класс, представляющий модель PaymentDataSberBnpl. + +**Description:** + +Данные для оплаты через сервис «Плати частями». + +--- +### Constants +* No constants found + +--- +### Properties +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [$phone](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md#property_phone) | | Номер телефона пользователя. Передается партнеру и используется для авторизации в сервисе «Плати частями». Максимум 15 символов. Указывается в формате [ITU-T E.164](https://ru.wikipedia.org/wiki/E.164), например ~`79000000000`. | +| public | [$type](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md#property_type) | | Тип метода оплаты | +| protected | [$_type](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md#property__type) | | | + +--- +### Methods +| Visibility | Name | Flag | Summary | +| ----------:| ---- | ---- | ------- | +| public | [__construct()](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md#method___construct) | | | +| public | [__get()](../classes/YooKassa-Common-AbstractObject.md#method___get) | | Возвращает значение свойства. | +| public | [__isset()](../classes/YooKassa-Common-AbstractObject.md#method___isset) | | Проверяет наличие свойства. | +| public | [__set()](../classes/YooKassa-Common-AbstractObject.md#method___set) | | Устанавливает значение свойства. | +| public | [__unset()](../classes/YooKassa-Common-AbstractObject.md#method___unset) | | Удаляет свойство. | +| public | [fromArray()](../classes/YooKassa-Common-AbstractObject.md#method_fromArray) | | Устанавливает значения свойств текущего объекта из массива. | +| public | [getPhone()](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md#method_getPhone) | | Возвращает номер телефона в формате ITU-T E.164 | +| public | [getType()](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md#method_getType) | | Возвращает тип метода оплаты. | +| public | [getValidator()](../classes/YooKassa-Common-AbstractObject.md#method_getValidator) | | | +| public | [jsonSerialize()](../classes/YooKassa-Common-AbstractObject.md#method_jsonSerialize) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. | +| public | [offsetExists()](../classes/YooKassa-Common-AbstractObject.md#method_offsetExists) | | Проверяет наличие свойства. | +| public | [offsetGet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetGet) | | Возвращает значение свойства. | +| public | [offsetSet()](../classes/YooKassa-Common-AbstractObject.md#method_offsetSet) | | Устанавливает значение свойства. | +| public | [offsetUnset()](../classes/YooKassa-Common-AbstractObject.md#method_offsetUnset) | | Удаляет свойство. | +| public | [setPhone()](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md#method_setPhone) | | Устанавливает номер телефона в формате ITU-T E.164 | +| public | [toArray()](../classes/YooKassa-Common-AbstractObject.md#method_toArray) | | Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации Является алиасом метода AbstractObject::jsonSerialize(). | +| protected | [getUnknownProperties()](../classes/YooKassa-Common-AbstractObject.md#method_getUnknownProperties) | | Возвращает массив свойств которые не существуют, но были заданы у объекта. | +| protected | [setType()](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md#method_setType) | | Устанавливает тип метода оплаты. | +| protected | [validatePropertyValue()](../classes/YooKassa-Common-AbstractObject.md#method_validatePropertyValue) | | | + +--- +### Details +* File: [lib/Request/Payments/PaymentData/PaymentDataSberBnpl.php](../../lib/Request/Payments/PaymentData/PaymentDataSberBnpl.php) +* Package: YooKassa\Request +* Class Hierarchy: + * [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + * [\YooKassa\Request\Payments\PaymentData\AbstractPaymentData](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md) + * \YooKassa\Request\Payments\PaymentData\PaymentDataSberBnpl + +* See Also: + * [](https://yookassa.ru/developers/api) + +--- +### Tags +| Tag | Version | Description | +| --- | ------- | ----------- | +| category | | Class | +| author | | cms@yoomoney.ru | + +--- +## Properties + +#### public $phone : string +--- +***Description*** + +Номер телефона пользователя. Передается партнеру и используется для авторизации в сервисе «Плати частями». Максимум 15 символов. Указывается в формате [ITU-T E.164](https://ru.wikipedia.org/wiki/E.164), например ~`79000000000`. + +**Type:** string + +**Details:** + + + +#### public $type : string +--- +***Description*** + +Тип метода оплаты + +**Type:** string + +**Details:** +* Inherited From: [\YooKassa\Request\Payments\PaymentData\AbstractPaymentData](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md) + + + +#### protected $_type : ?string +--- +**Type:** ?string + +**Details:** +* Inherited From: [\YooKassa\Request\Payments\PaymentData\AbstractPaymentData](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md) + + + +--- +## Methods + +#### public __construct() : mixed + +```php +public __construct(?array $data = []) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Request\Payments\PaymentData\PaymentDataSberBnpl](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| ?array | data | | + +**Returns:** mixed - + + + +#### public __get() : mixed + +```php +public __get(string $propertyName) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public __isset() : bool + +```php +public __isset(string $propertyName) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public __set() : void + +```php +public __set(string $propertyName, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public __unset() : void + +```php +public __unset(string $propertyName) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public fromArray() : void + +```php +public fromArray(array|\Traversable $sourceArray) : void +``` + +**Summary** + +Устанавливает значения свойств текущего объекта из массива. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| array OR \Traversable | sourceArray | Ассоциативный массив с настройками | + +**Returns:** void - + + + +#### public getPhone() : string|null + +```php +public getPhone() : string|null +``` + +**Summary** + +Возвращает номер телефона в формате ITU-T E.164 + +**Details:** +* Inherited From: [\YooKassa\Request\Payments\PaymentData\PaymentDataSberBnpl](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md) + +**Returns:** string|null - + + + +#### public getType() : string|null + +```php +public getType() : string|null +``` + +**Summary** + +Возвращает тип метода оплаты. + +**Details:** +* Inherited From: [\YooKassa\Request\Payments\PaymentData\AbstractPaymentData](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md) + +**Returns:** string|null - Тип метода оплаты + + + +#### public getValidator() : \YooKassa\Validator\Validator + +```php +public getValidator() : \YooKassa\Validator\Validator +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** \YooKassa\Validator\Validator - + + + +#### public jsonSerialize() : array + +```php +public jsonSerialize() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### public offsetExists() : bool + +```php +public offsetExists(string $offset) : bool +``` + +**Summary** + +Проверяет наличие свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя проверяемого свойства | + +**Returns:** bool - True если свойство имеется, false если нет + + + +#### public offsetGet() : mixed + +```php +public offsetGet(string $offset) : mixed +``` + +**Summary** + +Возвращает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | + +**Returns:** mixed - Значение свойства + + + +#### public offsetSet() : void + +```php +public offsetSet(string $offset, mixed $value) : void +``` + +**Summary** + +Устанавливает значение свойства. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя свойства | +| mixed | value | Значение свойства | + +**Returns:** void - + + + +#### public offsetUnset() : void + +```php +public offsetUnset(string $offset) : void +``` + +**Summary** + +Удаляет свойство. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | offset | Имя удаляемого свойства | + +**Returns:** void - + + + +#### public setPhone() : self + +```php +public setPhone(string|null $phone = null) : self +``` + +**Summary** + +Устанавливает номер телефона в формате ITU-T E.164 + +**Details:** +* Inherited From: [\YooKassa\Request\Payments\PaymentData\PaymentDataSberBnpl](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | phone | Номер телефона в формате ITU-T E.164 | + +**Returns:** self - + + + +#### public toArray() : array + +```php +public toArray() : array +``` + +**Summary** + +Возвращает ассоциативный массив со свойствами текущего объекта для его дальнейшей JSON сериализации +Является алиасом метода AbstractObject::jsonSerialize(). + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив со свойствами текущего объекта + + + +#### protected getUnknownProperties() : array + +```php +protected getUnknownProperties() : array +``` + +**Summary** + +Возвращает массив свойств которые не существуют, но были заданы у объекта. + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +**Returns:** array - Ассоциативный массив с не существующими у текущего объекта свойствами + + + +#### protected setType() : self + +```php +protected setType(string|null $type) : self +``` + +**Summary** + +Устанавливает тип метода оплаты. + +**Details:** +* Inherited From: [\YooKassa\Request\Payments\PaymentData\AbstractPaymentData](../classes/YooKassa-Request-Payments-PaymentData-AbstractPaymentData.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string OR null | type | Тип метода оплаты | + +**Returns:** self - + + + +#### protected validatePropertyValue() : mixed + +```php +protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mixed +``` + +**Details:** +* Inherited From: [\YooKassa\Common\AbstractObject](../classes/YooKassa-Common-AbstractObject.md) + +##### Parameters: +| Type | Name | Description | +| ---- | ---- | ----------- | +| string | propertyName | | +| mixed | propertyValue | | + +**Returns:** mixed - + + + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberLoan.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberLoan.md index cd522dec..a3eccede 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberLoan.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberLoan.md @@ -443,10 +443,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberbank.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberbank.md index fabb3314..3f6cbddb 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberbank.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberbank.md @@ -497,10 +497,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSbp.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSbp.md index 1e1fb5f4..91dcb7c1 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSbp.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataSbp.md @@ -577,10 +577,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataTinkoffBank.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataTinkoffBank.md index e2b8645a..a275a00b 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataTinkoffBank.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataTinkoffBank.md @@ -443,10 +443,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataYooMoney.md b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataYooMoney.md index d8bf2c14..aef03edc 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataYooMoney.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentData-PaymentDataYooMoney.md @@ -9,7 +9,7 @@ **Description:** -Данные для проведения оплаты через ЮMoney. +Данные для проведения оплаты из кошелька ЮMoney. --- ### Constants @@ -443,10 +443,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-AbstractPaymentOrder.md b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-AbstractPaymentOrder.md index e24fdc0a..bc143bf1 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-AbstractPaymentOrder.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-AbstractPaymentOrder.md @@ -450,10 +450,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderFactory.md b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderFactory.md index 2f267f79..630ce352 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderFactory.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array|null $data = null, string|null $type = null) : \Yo ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipient.md b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipient.md index 6f095bde..ded4b1d2 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipient.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipient.md @@ -597,10 +597,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipientBank.md b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipientBank.md index d38d2573..567f1dc0 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipientBank.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderRecipientBank.md @@ -594,10 +594,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderType.md b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderType.md index 5c54b315..e8c1a6a1 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderType.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderType.md @@ -151,10 +151,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderUtilities.md b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderUtilities.md index 2cc92ebc..905f113c 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderUtilities.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentOrderData-PaymentOrderUtilities.md @@ -1166,10 +1166,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentPeriod.md b/docs/classes/YooKassa-Request-Payments-PaymentPeriod.md index 894bdc2d..0faf4a56 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentPeriod.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentPeriod.md @@ -489,10 +489,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentResponse.md b/docs/classes/YooKassa-Request-Payments-PaymentResponse.md index 2b05581b..03b56bce 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentResponse.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentResponse.md @@ -2050,10 +2050,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md index 2fe21f3c..b40bcd1d 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md @@ -1357,10 +1357,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md index 988e3c3c..e2ade119 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md @@ -507,10 +507,10 @@ protected initCurrentObject() : \YooKassa\Request\Payments\PaymentsRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md index 89f37ebc..1f2c4236 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md @@ -765,10 +765,10 @@ public setPaymentMethod(string $payment_method) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md index 1fdbd5cf..7c046eed 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Payments\PaymentsRequestInterface $request) : ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md b/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md index b7df2c60..95192b67 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md @@ -19,10 +19,10 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$items](../classes/YooKassa-Request-Payments-PaymentsResponse.md#property_items) | | Массив платежей | +| public | [$items](../classes/YooKassa-Request-Payments-PaymentsResponse.md#property_items) | | Список платежей, созданных за последние три года. Платежи отсортированы по времени создания в порядке убывания (от новых к старым). | | public | [$nextCursor](../classes/YooKassa-Request-AbstractListResponse.md#property_nextCursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | public | [$type](../classes/YooKassa-Request-AbstractListResponse.md#property_type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | -| protected | [$_items](../classes/YooKassa-Request-Payments-PaymentsResponse.md#property__items) | | | +| protected | [$_items](../classes/YooKassa-Request-Payments-PaymentsResponse.md#property__items) | | Список платежей, созданных за последние три года. | | protected | [$_next_cursor](../classes/YooKassa-Request-AbstractListResponse.md#property__next_cursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | protected | [$_type](../classes/YooKassa-Request-AbstractListResponse.md#property__type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | @@ -76,7 +76,7 @@ --- ***Description*** -Массив платежей +Список платежей, созданных за последние три года. Платежи отсортированы по времени создания в порядке убывания (от новых к старым). **Type:** ListObjectInterface|null @@ -112,8 +112,18 @@ #### protected $_items : ?\YooKassa\Common\ListObject --- +**Summary** + +Список платежей, созданных за последние три года. + +***Description*** + +Платежи отсортированы по времени создания в порядке убывания (от новых к старым). +Если результатов больше, чем задано в limit, список будет выводиться фрагментами. +В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. + **Type:** ListObject -Массив платежей +Список платежей **Details:** @@ -532,10 +542,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ReceiverData-AbstractReceiver.md b/docs/classes/YooKassa-Request-Payments-ReceiverData-AbstractReceiver.md index 3e4c221d..d85628c1 100644 --- a/docs/classes/YooKassa-Request-Payments-ReceiverData-AbstractReceiver.md +++ b/docs/classes/YooKassa-Request-Payments-ReceiverData-AbstractReceiver.md @@ -448,10 +448,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverBankAccount.md b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverBankAccount.md index b4a81634..c9f7c48a 100644 --- a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverBankAccount.md +++ b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverBankAccount.md @@ -581,10 +581,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverDigitalWallet.md b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverDigitalWallet.md index 981f5387..98f81a5b 100644 --- a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverDigitalWallet.md +++ b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverDigitalWallet.md @@ -527,10 +527,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverFactory.md b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverFactory.md index 17349163..301803e8 100644 --- a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverFactory.md +++ b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array|null $data = null, string|null $type = null) : \Yo ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverMobileBalance.md b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverMobileBalance.md index e330f6af..fdcb784c 100644 --- a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverMobileBalance.md +++ b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverMobileBalance.md @@ -514,10 +514,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverType.md b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverType.md index 060e997d..ed052379 100644 --- a/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverType.md +++ b/docs/classes/YooKassa-Request-Payments-ReceiverData-ReceiverType.md @@ -171,10 +171,10 @@ Static public valueExists(mixed $value) : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Recipient.md b/docs/classes/YooKassa-Request-Payments-Recipient.md index 94acb3d6..341850c1 100644 --- a/docs/classes/YooKassa-Request-Payments-Recipient.md +++ b/docs/classes/YooKassa-Request-Payments-Recipient.md @@ -435,10 +435,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-TransferData.md b/docs/classes/YooKassa-Request-Payments-TransferData.md index 4d4a8b29..92afb155 100644 --- a/docs/classes/YooKassa-Request-Payments-TransferData.md +++ b/docs/classes/YooKassa-Request-Payments-TransferData.md @@ -764,10 +764,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-TransferDataInterface.md b/docs/classes/YooKassa-Request-Payments-TransferDataInterface.md index f88715ff..ce77d3dc 100644 --- a/docs/classes/YooKassa-Request-Payments-TransferDataInterface.md +++ b/docs/classes/YooKassa-Request-Payments-TransferDataInterface.md @@ -332,10 +332,10 @@ public hasMetadata() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md b/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md index 3a61c6b3..fbc4ec77 100644 --- a/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md +++ b/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md @@ -1384,10 +1384,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md index 98ebf393..b7986448 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md @@ -1339,10 +1339,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md index 64685611..aa7238f7 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md @@ -425,10 +425,10 @@ protected initCurrentObject() : \YooKassa\Request\Payouts\CreatePayoutRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md index 35a5cdfc..ef98cec7 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md @@ -655,10 +655,10 @@ public setMetadata(null|array|\YooKassa\Model\Metadata $metadata) : self ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md index 493629d0..b634aa97 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Payouts\CreatePayoutRequestInterface $request ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md index 8a173306..e5e4661d 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md @@ -1385,10 +1385,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-IncomeReceiptData.md b/docs/classes/YooKassa-Request-Payouts-IncomeReceiptData.md index 57e72cbb..97da73e5 100644 --- a/docs/classes/YooKassa-Request-Payouts-IncomeReceiptData.md +++ b/docs/classes/YooKassa-Request-Payouts-IncomeReceiptData.md @@ -523,10 +523,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md index 831a3cf7..4a13f438 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md @@ -464,10 +464,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md index 17f5284f..13fef0da 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md @@ -520,10 +520,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md index 91d7b265..c917789b 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md @@ -435,10 +435,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md index 59d2173f..2a3f8945 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataSbp.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataSbp.md index 92babd95..c10ff9d3 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataSbp.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataSbp.md @@ -13,9 +13,7 @@ --- ### Constants -| Visibility | Name | Flag | Summary | -| ----------:| ---- | ---- | ------- | -| public | [MAX_LENGTH_BANK_ID](../classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataSbp.md#constant_MAX_LENGTH_BANK_ID) | | | +* No constants found --- ### Properties @@ -74,16 +72,6 @@ | category | | Class | | author | | cms@yoomoney.ru | ---- -## Constants - -###### MAX_LENGTH_BANK_ID -```php -MAX_LENGTH_BANK_ID = 12 : int -``` - - - --- ## Properties @@ -599,10 +587,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md index 4e48c9af..1300d0fd 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md @@ -566,10 +566,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutPersonalData.md b/docs/classes/YooKassa-Request-Payouts-PayoutPersonalData.md index afa71a0a..d72da210 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutPersonalData.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutPersonalData.md @@ -458,10 +458,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md b/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md index 314787b4..cc0ab44b 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md @@ -1385,10 +1385,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutSelfEmployedInfo.md b/docs/classes/YooKassa-Request-Payouts-PayoutSelfEmployedInfo.md index afd4a8eb..d63115bc 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutSelfEmployedInfo.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutSelfEmployedInfo.md @@ -456,10 +456,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-SbpBanksResponse.md b/docs/classes/YooKassa-Request-Payouts-SbpBanksResponse.md index 0459ea62..26904663 100644 --- a/docs/classes/YooKassa-Request-Payouts-SbpBanksResponse.md +++ b/docs/classes/YooKassa-Request-Payouts-SbpBanksResponse.md @@ -9,7 +9,8 @@ **Description:** -Список участников СБП, отсортированный по идентификатору участника в порядке убывания (desc). +Список участников СБП. +Участники СБП отсортированы по идентификатору участника в порядке убывания. --- ### Constants @@ -532,10 +533,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-CreatePayoutStatementRecipientPersonalDataRequestBuilder.md b/docs/classes/YooKassa-Request-PersonalData-CreatePayoutStatementRecipientPersonalDataRequestBuilder.md index 75416cef..800d83fe 100644 --- a/docs/classes/YooKassa-Request-PersonalData-CreatePayoutStatementRecipientPersonalDataRequestBuilder.md +++ b/docs/classes/YooKassa-Request-PersonalData-CreatePayoutStatementRecipientPersonalDataRequestBuilder.md @@ -304,10 +304,10 @@ protected initCurrentObject() : \YooKassa\Request\PersonalData\PersonalDataType\ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-CreatePersonalDataRequestInterface.md b/docs/classes/YooKassa-Request-PersonalData-CreatePersonalDataRequestInterface.md index 7f6db32f..6e2d7046 100644 --- a/docs/classes/YooKassa-Request-PersonalData-CreatePersonalDataRequestInterface.md +++ b/docs/classes/YooKassa-Request-PersonalData-CreatePersonalDataRequestInterface.md @@ -376,10 +376,10 @@ public toArray() : array ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-CreateSbpPayoutRecipientPersonalDataRequestBuilder.md b/docs/classes/YooKassa-Request-PersonalData-CreateSbpPayoutRecipientPersonalDataRequestBuilder.md index 5c6e1a53..d8b3ac9b 100644 --- a/docs/classes/YooKassa-Request-PersonalData-CreateSbpPayoutRecipientPersonalDataRequestBuilder.md +++ b/docs/classes/YooKassa-Request-PersonalData-CreateSbpPayoutRecipientPersonalDataRequestBuilder.md @@ -281,10 +281,10 @@ protected initCurrentObject() : \YooKassa\Request\PersonalData\PersonalDataType\ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-PersonalDataResponse.md b/docs/classes/YooKassa-Request-PersonalData-PersonalDataResponse.md index 55326c46..2920571c 100644 --- a/docs/classes/YooKassa-Request-PersonalData-PersonalDataResponse.md +++ b/docs/classes/YooKassa-Request-PersonalData-PersonalDataResponse.md @@ -939,10 +939,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-AbstractPersonalDataRequest.md b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-AbstractPersonalDataRequest.md index 2730b3d5..543cda12 100644 --- a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-AbstractPersonalDataRequest.md +++ b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-AbstractPersonalDataRequest.md @@ -658,10 +658,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-PayoutStatementRecipientPersonalDataRequest.md b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-PayoutStatementRecipientPersonalDataRequest.md index 574a6b63..5d1a2ed8 100644 --- a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-PayoutStatementRecipientPersonalDataRequest.md +++ b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-PayoutStatementRecipientPersonalDataRequest.md @@ -1030,10 +1030,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-RecipientPersonalDataRequestFactory.md b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-RecipientPersonalDataRequestFactory.md index ab002f14..5fb058fe 100644 --- a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-RecipientPersonalDataRequestFactory.md +++ b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-RecipientPersonalDataRequestFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array|null $data = null, string|null $type = null) : \Yo ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-SbpPayoutRecipientPersonalDataRequest.md b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-SbpPayoutRecipientPersonalDataRequest.md index da851d9b..d8de0b86 100644 --- a/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-SbpPayoutRecipientPersonalDataRequest.md +++ b/docs/classes/YooKassa-Request-PersonalData-PersonalDataType-SbpPayoutRecipientPersonalDataRequest.md @@ -959,10 +959,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md index 8e1aeed9..f6a7bccf 100644 --- a/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md @@ -1563,10 +1563,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md index d80cf6c5..5d616090 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md @@ -1332,10 +1332,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md index ccd852ed..269b0da7 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md @@ -592,10 +592,10 @@ protected initCurrentObject() : \YooKassa\Request\Receipts\CreatePostReceiptRequ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md index 8491c5d3..86e50ce5 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md @@ -587,10 +587,10 @@ public notEmpty() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md index afe0d7f0..093deef7 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md @@ -61,10 +61,10 @@ public serialize(\YooKassa\Request\Receipts\CreatePostReceiptRequestInterface $r ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md index 33c43e33..13b9fee4 100644 --- a/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md @@ -1676,10 +1676,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md index 9514dd39..5a0759c5 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md @@ -61,10 +61,10 @@ public factory(array $data) : \YooKassa\Request\Receipts\AbstractReceiptResponse ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md index 287f7103..d3c3c4ff 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md @@ -206,10 +206,10 @@ public notEmpty() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md index daf057b8..33e7d614 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md @@ -1500,10 +1500,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md index 8c05e242..143d07f4 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md @@ -378,10 +378,10 @@ public getSupplier() : \YooKassa\Model\Receipt\SupplierInterface|null ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md index 147c6a79..d04daeb6 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md @@ -1236,10 +1236,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md index dafe5116..76f4753d 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md @@ -407,10 +407,10 @@ protected initCurrentObject() : \YooKassa\Request\Receipts\ReceiptsRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md index 7c0707de..90621c5f 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md @@ -378,10 +378,10 @@ public hasLimit() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md index 91cf6617..1d3b9543 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md @@ -61,10 +61,10 @@ public serialize(\YooKassa\Request\Receipts\ReceiptsRequestInterface $request) : ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md index 59a92e14..4cab486c 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md @@ -16,10 +16,10 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$items](../classes/YooKassa-Request-Receipts-ReceiptsResponse.md#property_items) | | Список чеков. Чеки отсортированы по времени создания в порядке убывания (desc) | +| public | [$items](../classes/YooKassa-Request-Receipts-ReceiptsResponse.md#property_items) | | Список чеков, созданных за последние три года. Чеки отсортированы по времени создания в порядке убывания (от новых к старым). | | public | [$nextCursor](../classes/YooKassa-Request-AbstractListResponse.md#property_nextCursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | public | [$type](../classes/YooKassa-Request-AbstractListResponse.md#property_type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | -| protected | [$_items](../classes/YooKassa-Request-Receipts-ReceiptsResponse.md#property__items) | | Список чеков. | +| protected | [$_items](../classes/YooKassa-Request-Receipts-ReceiptsResponse.md#property__items) | | Список чеков, созданных за последние три года. | | protected | [$_next_cursor](../classes/YooKassa-Request-AbstractListResponse.md#property__next_cursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | protected | [$_type](../classes/YooKassa-Request-AbstractListResponse.md#property__type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | @@ -73,7 +73,7 @@ --- ***Description*** -Список чеков. Чеки отсортированы по времени создания в порядке убывания (desc) +Список чеков, созданных за последние три года. Чеки отсортированы по времени создания в порядке убывания (от новых к старым). **Type:** ListObjectInterface|null @@ -111,7 +111,13 @@ --- **Summary** -Список чеков. +Список чеков, созданных за последние три года. + +***Description*** + +Чеки отсортированы по времени создания в порядке убывания (от новых к старым). +Если результатов больше, чем задано в limit, список будет выводиться фрагментами. +В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. **Type:** ListObject Список чеков @@ -533,10 +539,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md index 9f4e5449..9a9c0daa 100644 --- a/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md @@ -1676,10 +1676,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md index f73d11da..4f3a4768 100644 --- a/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md @@ -1589,10 +1589,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md b/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md index b2593887..cd85dd49 100644 --- a/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md @@ -1262,10 +1262,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md index 536e27d6..6c138a29 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md @@ -1068,10 +1068,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md index da986b55..11bf2f6f 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md @@ -669,10 +669,10 @@ protected initCurrentObject() : \YooKassa\Request\Refunds\CreateRefundRequest ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md index ba1e5145..736e588e 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md @@ -341,10 +341,10 @@ public hasDeal() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md index 7ab6fba2..93f999dd 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Refunds\CreateRefundRequestInterface $request ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md index 56626296..59b86dfd 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md @@ -1263,10 +1263,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundMethodData-AbstractRefundMethodData.md b/docs/classes/YooKassa-Request-Refunds-RefundMethodData-AbstractRefundMethodData.md index b181041c..c42af1fb 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundMethodData-AbstractRefundMethodData.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundMethodData-AbstractRefundMethodData.md @@ -448,10 +448,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataElectronicCertificate.md b/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataElectronicCertificate.md index e819d92a..65c567e6 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataElectronicCertificate.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataElectronicCertificate.md @@ -581,10 +581,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataFactory.md b/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataFactory.md index a457e4a3..fc42209c 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataFactory.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundMethodData-RefundMethodDataFactory.md @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundResponse.md b/docs/classes/YooKassa-Request-Refunds-RefundResponse.md index 45c1d423..53cd456e 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundResponse.md @@ -1263,10 +1263,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md index e1426415..90f89e31 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md @@ -1139,10 +1139,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md index c21cca32..3ea109b4 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md @@ -391,10 +391,10 @@ protected initCurrentObject() : \YooKassa\Request\Refunds\RefundsRequestInterfac ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md index 66266265..b9b021a4 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md @@ -305,10 +305,10 @@ public hasCursor() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md index f4aa957a..000ff3b3 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\Refunds\RefundsRequestInterface $request) : a ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md b/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md index 380a8d82..9f387ca5 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md @@ -19,10 +19,10 @@ ### Properties | Visibility | Name | Flag | Summary | | ----------:| ---- | ---- | ------- | -| public | [$items](../classes/YooKassa-Request-Refunds-RefundsResponse.md#property_items) | | Массив возвратов | +| public | [$items](../classes/YooKassa-Request-Refunds-RefundsResponse.md#property_items) | | Список возвратов, созданных за последние три года. Возвраты отсортированы по времени создания в порядке убывания (от новых к старым). | | public | [$nextCursor](../classes/YooKassa-Request-AbstractListResponse.md#property_nextCursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | public | [$type](../classes/YooKassa-Request-AbstractListResponse.md#property_type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | -| protected | [$_items](../classes/YooKassa-Request-Refunds-RefundsResponse.md#property__items) | | | +| protected | [$_items](../classes/YooKassa-Request-Refunds-RefundsResponse.md#property__items) | | Список возвратов, созданных за последние три года. | | protected | [$_next_cursor](../classes/YooKassa-Request-AbstractListResponse.md#property__next_cursor) | | Указатель на следующий фрагмент списка. Обязательный параметр, если размер списка больше размера выдачи (`limit`) и конец выдачи не достигнут. | | protected | [$_type](../classes/YooKassa-Request-AbstractListResponse.md#property__type) | | Формат выдачи результатов запроса. Возможное значение: `list` (список). | @@ -76,7 +76,7 @@ --- ***Description*** -Массив возвратов +Список возвратов, созданных за последние три года. Возвраты отсортированы по времени создания в порядке убывания (от новых к старым). **Type:** ListObjectInterface|null @@ -112,8 +112,18 @@ #### protected $_items : ?\YooKassa\Common\ListObject --- +**Summary** + +Список возвратов, созданных за последние три года. + +***Description*** + +Возвраты отсортированы по времени создания в порядке убывания (от новых к старым). +Если результатов больше, чем задано в limit, список будет выводиться фрагментами. +В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. + **Type:** ListObject -Массив возвратов +Список возвратов **Details:** @@ -532,10 +542,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequest.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequest.md index 9d27a1f5..a26ad7cb 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequest.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequest.md @@ -721,10 +721,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestBuilder.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestBuilder.md index 4701224d..2e522342 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestBuilder.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestBuilder.md @@ -261,10 +261,10 @@ protected initCurrentObject() : \YooKassa\Request\SelfEmployed\SelfEmployedReque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmation.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmation.md index 80779eb1..484a8d4c 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmation.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmation.md @@ -445,10 +445,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationFactory.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationFactory.md index 6d4ae2e3..cdf10768 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationFactory.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationFactory.md @@ -58,7 +58,7 @@ public factory(string $type) : \YooKassa\Request\SelfEmployed\SelfEmployedReques ##### Parameters: | Type | Name | Description | | ---- | ---- | ----------- | -| string | type | Тип подтверждения платежа | +| string | type | Код сценария подтверждения | **Returns:** \YooKassa\Request\SelfEmployed\SelfEmployedRequestConfirmation - @@ -81,7 +81,7 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Reque | Type | Name | Description | | ---- | ---- | ----------- | | array | data | Массив данных подтверждения платежа | -| null OR string | type | Тип подтверждения платежа | +| null OR string | type | Код сценария подтверждения | **Returns:** \YooKassa\Request\SelfEmployed\SelfEmployedRequestConfirmation - @@ -98,10 +98,10 @@ public factoryFromArray(array $data, null|string $type = null) : \YooKassa\Reque ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationRedirect.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationRedirect.md index bb449e90..9dcd6be5 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationRedirect.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestConfirmationRedirect.md @@ -451,10 +451,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestInterface.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestInterface.md index c85b26d7..6ac20a7d 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestInterface.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestInterface.md @@ -247,10 +247,10 @@ public validate() : bool ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestSerializer.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestSerializer.md index 5f81fad9..36662046 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestSerializer.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedRequestSerializer.md @@ -74,10 +74,10 @@ public serialize(\YooKassa\Request\SelfEmployed\SelfEmployedRequest $request) : ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedResponse.md b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedResponse.md index a61031c1..037b9895 100644 --- a/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedResponse.md +++ b/docs/classes/YooKassa-Request-SelfEmployed-SelfEmployedResponse.md @@ -884,10 +884,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md b/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md index e93d7709..1f704936 100644 --- a/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md +++ b/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md @@ -533,10 +533,10 @@ protected validatePropertyValue(string $propertyName, mixed $propertyValue) : mi ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/default.md b/docs/namespaces/default.md index ca84f9f9..dfc62a48 100644 --- a/docs/namespaces/default.md +++ b/docs/namespaces/default.md @@ -67,10 +67,10 @@ YOOKASSA_SDK_ROOT_PATH = __DIR__ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-client.md b/docs/namespaces/yookassa-client.md index 712af715..2110d7cd 100644 --- a/docs/namespaces/yookassa-client.md +++ b/docs/namespaces/yookassa-client.md @@ -29,10 +29,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-common-errors.md b/docs/namespaces/yookassa-common-errors.md new file mode 100644 index 00000000..2ba040da --- /dev/null +++ b/docs/namespaces/yookassa-common-errors.md @@ -0,0 +1,41 @@ +# [YooKassa API SDK](../home.md) + +# Namespace: \YooKassa\Common\Errors + +## Parent: [\YooKassa\Common](../namespaces/yookassa-common.md) + +### Classes + +| Name | Summary | +| ---- | ------- | +| [\YooKassa\Common\Errors\AbstractError](../classes/YooKassa-Common-Errors-AbstractError.md) | Класс, представляющий модель AbstractError. | +| [\YooKassa\Common\Errors\ErrorBadRequest](../classes/YooKassa-Common-Errors-ErrorBadRequest.md) | Класс, представляющий модель ErrorBadRequest. | +| [\YooKassa\Common\Errors\ErrorCode](../classes/YooKassa-Common-Errors-ErrorCode.md) | Класс, представляющий модель ErrorCode. | +| [\YooKassa\Common\Errors\ErrorCommon](../classes/YooKassa-Common-Errors-ErrorCommon.md) | Класс, представляющий модель ErrorCommon. | +| [\YooKassa\Common\Errors\ErrorFactory](../classes/YooKassa-Common-Errors-ErrorFactory.md) | Класс, представляющий модель ErrorFactory. | +| [\YooKassa\Common\Errors\ErrorForbidden](../classes/YooKassa-Common-Errors-ErrorForbidden.md) | Класс, представляющий модель ErrorForbidden. | +| [\YooKassa\Common\Errors\ErrorGone](../classes/YooKassa-Common-Errors-ErrorGone.md) | Класс, представляющий модель ErrorGone. | +| [\YooKassa\Common\Errors\ErrorInternalServerError](../classes/YooKassa-Common-Errors-ErrorInternalServerError.md) | Класс, представляющий модель ErrorInternalServerError. | +| [\YooKassa\Common\Errors\ErrorInvalidCredentials](../classes/YooKassa-Common-Errors-ErrorInvalidCredentials.md) | Класс, представляющий модель ErrorInvalidCredentials. | +| [\YooKassa\Common\Errors\ErrorNotFound](../classes/YooKassa-Common-Errors-ErrorNotFound.md) | Класс, представляющий модель ErrorNotFound. | +| [\YooKassa\Common\Errors\ErrorTooManyRequests](../classes/YooKassa-Common-Errors-ErrorTooManyRequests.md) | Класс, представляющий модель ErrorTooManyRequests. | +| [\YooKassa\Common\Errors\ErrorUnknown](../classes/YooKassa-Common-Errors-ErrorUnknown.md) | Класс, представляющий модель ErrorUnknown. | + +--- + +### Top Namespaces + +* [\YooKassa](../namespaces/yookassa.md) + +--- + +### Reports +* [Errors - 0](../reports/errors.md) +* [Markers - 0](../reports/markers.md) +* [Deprecated - 40](../reports/deprecated.md) + +--- + +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) + +© 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-common-exceptions.md b/docs/namespaces/yookassa-common-exceptions.md index 793390d3..f8dd2498 100644 --- a/docs/namespaces/yookassa-common-exceptions.md +++ b/docs/namespaces/yookassa-common-exceptions.md @@ -15,6 +15,7 @@ | [\YooKassa\Common\Exceptions\EmptyPropertyValueException](../classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md) | | | [\YooKassa\Common\Exceptions\ExtensionNotFoundException](../classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md) | Требуемое PHP расширение не установлено. | | [\YooKassa\Common\Exceptions\ForbiddenException](../classes/YooKassa-Common-Exceptions-ForbiddenException.md) | Секретный ключ или OAuth-токен верный, но не хватает прав для совершения операции. | +| [\YooKassa\Common\Exceptions\GoneException](../classes/YooKassa-Common-Exceptions-GoneException.md) | Сущность была раньше, но была умышленно удалена и теперь недоступна. | | [\YooKassa\Common\Exceptions\InternalServerError](../classes/YooKassa-Common-Exceptions-InternalServerError.md) | Технические неполадки на стороне ЮKassa. Результат обработки запроса неизвестен. Повторите запрос позднее с тем же ключом идемпотентности. | | [\YooKassa\Common\Exceptions\InvalidPropertyException](../classes/YooKassa-Common-Exceptions-InvalidPropertyException.md) | | | [\YooKassa\Common\Exceptions\InvalidPropertyValueException](../classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md) | | @@ -37,10 +38,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-common.md b/docs/namespaces/yookassa-common.md index e8ef3b82..bb30b0a1 100644 --- a/docs/namespaces/yookassa-common.md +++ b/docs/namespaces/yookassa-common.md @@ -6,6 +6,7 @@ ### Namespaces +* [\YooKassa\Common\Errors](../namespaces/yookassa-common-errors.md) * [\YooKassa\Common\Exceptions](../namespaces/yookassa-common-exceptions.md) ### Interfaces @@ -39,10 +40,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-helpers-config.md b/docs/namespaces/yookassa-helpers-config.md index 358f6a0b..018832a4 100644 --- a/docs/namespaces/yookassa-helpers-config.md +++ b/docs/namespaces/yookassa-helpers-config.md @@ -27,10 +27,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-helpers.md b/docs/namespaces/yookassa-helpers.md index b2bcacbf..b091b0f5 100644 --- a/docs/namespaces/yookassa-helpers.md +++ b/docs/namespaces/yookassa-helpers.md @@ -31,10 +31,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-deal.md b/docs/namespaces/yookassa-model-deal.md index f210871f..245ed901 100644 --- a/docs/namespaces/yookassa-model-deal.md +++ b/docs/namespaces/yookassa-model-deal.md @@ -40,10 +40,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-invoice-deliverymethod.md b/docs/namespaces/yookassa-model-invoice-deliverymethod.md index 84f3ff37..2b6e67e3 100644 --- a/docs/namespaces/yookassa-model-invoice-deliverymethod.md +++ b/docs/namespaces/yookassa-model-invoice-deliverymethod.md @@ -25,10 +25,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-invoice.md b/docs/namespaces/yookassa-model-invoice.md index ea350ad7..db77f7b8 100644 --- a/docs/namespaces/yookassa-model-invoice.md +++ b/docs/namespaces/yookassa-model-invoice.md @@ -37,10 +37,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-notification.md b/docs/namespaces/yookassa-model-notification.md index 897b5def..2bc9cb48 100644 --- a/docs/namespaces/yookassa-model-notification.md +++ b/docs/namespaces/yookassa-model-notification.md @@ -37,10 +37,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payment-confirmation.md b/docs/namespaces/yookassa-model-payment-confirmation.md index e5940ceb..a97ecbb3 100644 --- a/docs/namespaces/yookassa-model-payment-confirmation.md +++ b/docs/namespaces/yookassa-model-payment-confirmation.md @@ -28,10 +28,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payment-paymentmethod-b2b-sberbank.md b/docs/namespaces/yookassa-model-payment-paymentmethod-b2b-sberbank.md index 0ea21c91..652b49df 100644 --- a/docs/namespaces/yookassa-model-payment-paymentmethod-b2b-sberbank.md +++ b/docs/namespaces/yookassa-model-payment-paymentmethod-b2b-sberbank.md @@ -35,10 +35,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payment-paymentmethod-b2b.md b/docs/namespaces/yookassa-model-payment-paymentmethod-b2b.md index 7811432b..b8dc6d4b 100644 --- a/docs/namespaces/yookassa-model-payment-paymentmethod-b2b.md +++ b/docs/namespaces/yookassa-model-payment-paymentmethod-b2b.md @@ -19,10 +19,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payment-paymentmethod-electroniccertificate.md b/docs/namespaces/yookassa-model-payment-paymentmethod-electroniccertificate.md index c2e69efe..b0e38019 100644 --- a/docs/namespaces/yookassa-model-payment-paymentmethod-electroniccertificate.md +++ b/docs/namespaces/yookassa-model-payment-paymentmethod-electroniccertificate.md @@ -23,10 +23,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payment-paymentmethod.md b/docs/namespaces/yookassa-model-payment-paymentmethod.md index c7bf2266..96e66ea5 100644 --- a/docs/namespaces/yookassa-model-payment-paymentmethod.md +++ b/docs/namespaces/yookassa-model-payment-paymentmethod.md @@ -31,6 +31,7 @@ | [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodPsb](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodPsb.md) | Класс, представляющий модель PaymentMethodPsb. | | [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodQiwi](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodQiwi.md) | Класс, представляющий модель PaymentMethodQiwi. | | [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberbank](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberbank.md) | Класс, представляющий модель PaymentMethodSberbank. | +| [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberBnpl](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberBnpl.md) | Класс, представляющий модель PaymentMethodSberBnpl. | | [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodSberLoan](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSberLoan.md) | Класс, представляющий модель PaymentMethodSberLoan. | | [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodSbp](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodSbp.md) | Класс, представляющий модель PaymentMethodSbp. | | [\YooKassa\Model\Payment\PaymentMethod\PaymentMethodTinkoffBank](../classes/YooKassa-Model-Payment-PaymentMethod-PaymentMethodTinkoffBank.md) | Класс, представляющий модель PaymentMethodTinkoffBank. | @@ -51,10 +52,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payment.md b/docs/namespaces/yookassa-model-payment.md index a63a9919..e1bdde1a 100644 --- a/docs/namespaces/yookassa-model-payment.md +++ b/docs/namespaces/yookassa-model-payment.md @@ -49,10 +49,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payout.md b/docs/namespaces/yookassa-model-payout.md index d8cb0639..035abd38 100644 --- a/docs/namespaces/yookassa-model-payout.md +++ b/docs/namespaces/yookassa-model-payout.md @@ -41,10 +41,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-personaldata.md b/docs/namespaces/yookassa-model-personaldata.md index c1192928..7cc3c5e5 100644 --- a/docs/namespaces/yookassa-model-personaldata.md +++ b/docs/namespaces/yookassa-model-personaldata.md @@ -32,10 +32,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-receipt.md b/docs/namespaces/yookassa-model-receipt.md index e831dd52..b16c6762 100644 --- a/docs/namespaces/yookassa-model-receipt.md +++ b/docs/namespaces/yookassa-model-receipt.md @@ -28,7 +28,7 @@ | [\YooKassa\Model\Receipt\PaymentSubject](../classes/YooKassa-Model-Receipt-PaymentSubject.md) | Класс, представляющий модель PaymentSubject. | | [\YooKassa\Model\Receipt\Receipt](../classes/YooKassa-Model-Receipt-Receipt.md) | Класс данных для формирования чека в онлайн-кассе (для соблюдения 54-ФЗ). | | [\YooKassa\Model\Receipt\ReceiptCustomer](../classes/YooKassa-Model-Receipt-ReceiptCustomer.md) | Информация о плательщике. | -| [\YooKassa\Model\Receipt\ReceiptItem](../classes/YooKassa-Model-Receipt-ReceiptItem.md) | Информация о товарной позиции в заказе, позиция фискального чека. | +| [\YooKassa\Model\Receipt\ReceiptItem](../classes/YooKassa-Model-Receipt-ReceiptItem.md) | Информация о товарной позиции в заказе. Используется для формирования чека. | | [\YooKassa\Model\Receipt\ReceiptItemAmount](../classes/YooKassa-Model-Receipt-ReceiptItemAmount.md) | Class ReceiptItemAmount. | | [\YooKassa\Model\Receipt\ReceiptItemMeasure](../classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md) | Класс, представляющий модель ReceiptItemMeasure. | | [\YooKassa\Model\Receipt\ReceiptType](../classes/YooKassa-Model-Receipt-ReceiptType.md) | ReceiptType - Тип чека в онлайн-кассе. | @@ -47,10 +47,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-refund-refundmethod-electroniccertificate.md b/docs/namespaces/yookassa-model-refund-refundmethod-electroniccertificate.md index 79074a6a..f9506336 100644 --- a/docs/namespaces/yookassa-model-refund-refundmethod-electroniccertificate.md +++ b/docs/namespaces/yookassa-model-refund-refundmethod-electroniccertificate.md @@ -22,10 +22,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-refund-refundmethod.md b/docs/namespaces/yookassa-model-refund-refundmethod.md index ff5c44a0..81aee748 100644 --- a/docs/namespaces/yookassa-model-refund-refundmethod.md +++ b/docs/namespaces/yookassa-model-refund-refundmethod.md @@ -29,10 +29,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-refund.md b/docs/namespaces/yookassa-model-refund.md index 8c8537b3..5d8b8525 100644 --- a/docs/namespaces/yookassa-model-refund.md +++ b/docs/namespaces/yookassa-model-refund.md @@ -39,10 +39,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-savepaymentmethod-confirmation.md b/docs/namespaces/yookassa-model-savepaymentmethod-confirmation.md index 4ea47ff3..859c6eaa 100644 --- a/docs/namespaces/yookassa-model-savepaymentmethod-confirmation.md +++ b/docs/namespaces/yookassa-model-savepaymentmethod-confirmation.md @@ -24,10 +24,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-savepaymentmethod.md b/docs/namespaces/yookassa-model-savepaymentmethod.md index f40787d0..133a63aa 100644 --- a/docs/namespaces/yookassa-model-savepaymentmethod.md +++ b/docs/namespaces/yookassa-model-savepaymentmethod.md @@ -34,10 +34,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-selfemployed.md b/docs/namespaces/yookassa-model-selfemployed.md index efaaf839..d164589d 100644 --- a/docs/namespaces/yookassa-model-selfemployed.md +++ b/docs/namespaces/yookassa-model-selfemployed.md @@ -32,10 +32,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-settings.md b/docs/namespaces/yookassa-model-settings.md index cbe145dd..55109280 100644 --- a/docs/namespaces/yookassa-model-settings.md +++ b/docs/namespaces/yookassa-model-settings.md @@ -23,10 +23,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-webhook.md b/docs/namespaces/yookassa-model-webhook.md index 4b813a85..4b981494 100644 --- a/docs/namespaces/yookassa-model-webhook.md +++ b/docs/namespaces/yookassa-model-webhook.md @@ -27,10 +27,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model.md b/docs/namespaces/yookassa-model.md index 41f9212e..a99879c6 100644 --- a/docs/namespaces/yookassa-model.md +++ b/docs/namespaces/yookassa-model.md @@ -45,10 +45,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-deals.md b/docs/namespaces/yookassa-request-deals.md index f928ed1f..e2bf4f9a 100644 --- a/docs/namespaces/yookassa-request-deals.md +++ b/docs/namespaces/yookassa-request-deals.md @@ -37,10 +37,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-invoices-deliverymethoddata.md b/docs/namespaces/yookassa-request-invoices-deliverymethoddata.md index 9aeb3513..0ee1719e 100644 --- a/docs/namespaces/yookassa-request-invoices-deliverymethoddata.md +++ b/docs/namespaces/yookassa-request-invoices-deliverymethoddata.md @@ -23,10 +23,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-invoices.md b/docs/namespaces/yookassa-request-invoices.md index a2f61130..519b7ada 100644 --- a/docs/namespaces/yookassa-request-invoices.md +++ b/docs/namespaces/yookassa-request-invoices.md @@ -35,10 +35,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-paymentmethods-confirmationdata.md b/docs/namespaces/yookassa-request-paymentmethods-confirmationdata.md index 3a97de37..26049abf 100644 --- a/docs/namespaces/yookassa-request-paymentmethods-confirmationdata.md +++ b/docs/namespaces/yookassa-request-paymentmethods-confirmationdata.md @@ -23,10 +23,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-paymentmethods.md b/docs/namespaces/yookassa-request-paymentmethods.md index 763f5620..6a139637 100644 --- a/docs/namespaces/yookassa-request-paymentmethods.md +++ b/docs/namespaces/yookassa-request-paymentmethods.md @@ -36,10 +36,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments-confirmationattributes.md b/docs/namespaces/yookassa-request-payments-confirmationattributes.md index 5909c54b..0b099653 100644 --- a/docs/namespaces/yookassa-request-payments-confirmationattributes.md +++ b/docs/namespaces/yookassa-request-payments-confirmationattributes.md @@ -27,10 +27,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments-paymentdata-electroniccertificate.md b/docs/namespaces/yookassa-request-payments-paymentdata-electroniccertificate.md index 1c4210af..583cd0b8 100644 --- a/docs/namespaces/yookassa-request-payments-paymentdata-electroniccertificate.md +++ b/docs/namespaces/yookassa-request-payments-paymentdata-electroniccertificate.md @@ -21,10 +21,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments-paymentdata.md b/docs/namespaces/yookassa-request-payments-paymentdata.md index 87e0b353..01319e72 100644 --- a/docs/namespaces/yookassa-request-payments-paymentdata.md +++ b/docs/namespaces/yookassa-request-payments-paymentdata.md @@ -26,6 +26,7 @@ | [\YooKassa\Request\Payments\PaymentData\PaymentDataMobileBalance](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataMobileBalance.md) | Класс, представляющий модель PaymentMethodDataMobileBalance. | | [\YooKassa\Request\Payments\PaymentData\PaymentDataQiwi](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataQiwi.md) | Класс, представляющий модель PaymentMethodDataQiwi. | | [\YooKassa\Request\Payments\PaymentData\PaymentDataSberbank](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberbank.md) | Класс, представляющий модель PaymentMethodDataSberbank. | +| [\YooKassa\Request\Payments\PaymentData\PaymentDataSberBnpl](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberBnpl.md) | Класс, представляющий модель PaymentDataSberBnpl. | | [\YooKassa\Request\Payments\PaymentData\PaymentDataSberLoan](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSberLoan.md) | Класс, представляющий модель PaymentDataSberLoan. | | [\YooKassa\Request\Payments\PaymentData\PaymentDataSbp](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataSbp.md) | Класс, представляющий модель PaymentMethodDataSbp. | | [\YooKassa\Request\Payments\PaymentData\PaymentDataTinkoffBank](../classes/YooKassa-Request-Payments-PaymentData-PaymentDataTinkoffBank.md) | Класс, представляющий модель PaymentMethodDataTinkoffBank. | @@ -42,10 +43,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments-paymentorderdata.md b/docs/namespaces/yookassa-request-payments-paymentorderdata.md index 60a0a047..9b165810 100644 --- a/docs/namespaces/yookassa-request-payments-paymentorderdata.md +++ b/docs/namespaces/yookassa-request-payments-paymentorderdata.md @@ -26,10 +26,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments-receiverdata.md b/docs/namespaces/yookassa-request-payments-receiverdata.md index 76b72bf7..0ccfb1d4 100644 --- a/docs/namespaces/yookassa-request-payments-receiverdata.md +++ b/docs/namespaces/yookassa-request-payments-receiverdata.md @@ -26,10 +26,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments.md b/docs/namespaces/yookassa-request-payments.md index dccd8531..244ecdf6 100644 --- a/docs/namespaces/yookassa-request-payments.md +++ b/docs/namespaces/yookassa-request-payments.md @@ -65,10 +65,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md b/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md index 43dfbba2..dcfcd15a 100644 --- a/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md +++ b/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md @@ -26,10 +26,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payouts.md b/docs/namespaces/yookassa-request-payouts.md index b27c9a2d..16d5ec52 100644 --- a/docs/namespaces/yookassa-request-payouts.md +++ b/docs/namespaces/yookassa-request-payouts.md @@ -40,10 +40,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-personaldata-personaldatatype.md b/docs/namespaces/yookassa-request-personaldata-personaldatatype.md index 206af0aa..742f6c56 100644 --- a/docs/namespaces/yookassa-request-personaldata-personaldatatype.md +++ b/docs/namespaces/yookassa-request-personaldata-personaldatatype.md @@ -24,10 +24,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-personaldata.md b/docs/namespaces/yookassa-request-personaldata.md index c735dad9..d46d12e1 100644 --- a/docs/namespaces/yookassa-request-personaldata.md +++ b/docs/namespaces/yookassa-request-personaldata.md @@ -33,10 +33,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-receipts.md b/docs/namespaces/yookassa-request-receipts.md index 17863659..e28839ab 100644 --- a/docs/namespaces/yookassa-request-receipts.md +++ b/docs/namespaces/yookassa-request-receipts.md @@ -42,10 +42,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-refunds-refundmethoddata.md b/docs/namespaces/yookassa-request-refunds-refundmethoddata.md index 0ab8f308..3eef3f35 100644 --- a/docs/namespaces/yookassa-request-refunds-refundmethoddata.md +++ b/docs/namespaces/yookassa-request-refunds-refundmethoddata.md @@ -23,10 +23,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-refunds.md b/docs/namespaces/yookassa-request-refunds.md index 422822b4..96a67dbe 100644 --- a/docs/namespaces/yookassa-request-refunds.md +++ b/docs/namespaces/yookassa-request-refunds.md @@ -41,10 +41,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-selfemployed.md b/docs/namespaces/yookassa-request-selfemployed.md index 8dedee8c..fed7af9b 100644 --- a/docs/namespaces/yookassa-request-selfemployed.md +++ b/docs/namespaces/yookassa-request-selfemployed.md @@ -33,10 +33,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-webhook.md b/docs/namespaces/yookassa-request-webhook.md index fe681a69..159422c0 100644 --- a/docs/namespaces/yookassa-request-webhook.md +++ b/docs/namespaces/yookassa-request-webhook.md @@ -21,10 +21,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request.md b/docs/namespaces/yookassa-request.md index fc7f00f9..a47cd3c8 100644 --- a/docs/namespaces/yookassa-request.md +++ b/docs/namespaces/yookassa-request.md @@ -34,10 +34,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa.md b/docs/namespaces/yookassa.md index 07388e67..5897697f 100644 --- a/docs/namespaces/yookassa.md +++ b/docs/namespaces/yookassa.md @@ -29,10 +29,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/readme.md b/docs/readme.md index 0f363113..eeeab82b 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -67,10 +67,10 @@ YOOKASSA_SDK_ROOT_PATH = __DIR__ ### Reports * [Errors - 0](reports/errors.md) * [Markers - 0](reports/markers.md) -* [Deprecated - 34](reports/deprecated.md) +* [Deprecated - 40](reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/reports/deprecated.md b/docs/reports/deprecated.md index 217fbd58..f309b68d 100644 --- a/docs/reports/deprecated.md +++ b/docs/reports/deprecated.md @@ -2,6 +2,7 @@ # Deprecated Elements ### Table of Contents +* [lib/Common/Exceptions/ApiException.php](../../lib/Common/Exceptions/ApiException.php) * [lib/Model/Invoice/DeliveryMethod/DeliveryMethodType.php](../../lib/Model/Invoice/DeliveryMethod/DeliveryMethodType.php) * [lib/Model/Invoice/DeliveryMethod/DeliveryMethodUnknown.php](../../lib/Model/Invoice/DeliveryMethod/DeliveryMethodUnknown.php) * [lib/Model/Payment/CancellationDetailsPartyCode.php](../../lib/Model/Payment/CancellationDetailsPartyCode.php) @@ -27,6 +28,16 @@ * [lib/Request/Payments/PaymentData/PaymentDataInstallments.php](../../lib/Request/Payments/PaymentData/PaymentDataInstallments.php) * [lib/Request/Payments/PaymentData/PaymentDataQiwi.php](../../lib/Request/Payments/PaymentData/PaymentDataQiwi.php) + +#### [lib/Common/Exceptions/ApiException.php](../../lib/Common/Exceptions/ApiException.php) +| Line | Element | Description | +| ---- | ------- | ----------- | +| 154 | \YooKassa\Common\Exceptions\ApiException::getErrorId() | Устарело. Вместо него нужно использовать getError()->getId() | +| 161 | \YooKassa\Common\Exceptions\ApiException::getErrorCode() | Устарело. Вместо него нужно использовать getError()->getCode() | +| 168 | \YooKassa\Common\Exceptions\ApiException::getErrorDescription() | Устарело. Вместо него нужно использовать getError()->getDescription() | +| 175 | \YooKassa\Common\Exceptions\ApiException::getErrorParameter() | Устарело. Вместо него нужно использовать getError()->getParameter() | +| 57 | \YooKassa\Common\Exceptions\ApiException::$type | Устарело. Вместо него нужно использовать getError()->getType(). | +| 63 | \YooKassa\Common\Exceptions\ApiException::$retryAfter | Устарело. Вместо него нужно использовать getError()->getRetryAfter(). | #### [lib/Model/Invoice/DeliveryMethod/DeliveryMethodType.php](../../lib/Model/Invoice/DeliveryMethod/DeliveryMethodType.php) | Line | Element | Description | @@ -102,7 +113,7 @@ | 114 | \YooKassa\Model\Payment\PaymentMethodType::PSB | Больше недоступен | | 121 | \YooKassa\Model\Payment\PaymentMethodType::INSTALLMENTS | Больше недоступен | | 128 | \YooKassa\Model\Payment\PaymentMethodType::WECHAT | Больше недоступен | -| 144 | \YooKassa\Model\Payment\PaymentMethodType::UNKNOWN | Не используется для реальных платежей | +| 147 | \YooKassa\Model\Payment\PaymentMethodType::UNKNOWN | Не используется для реальных платежей | #### [lib/Model/Refund/RefundCancellationDetailsPartyCode.php](../../lib/Model/Refund/RefundCancellationDetailsPartyCode.php) | Line | Element | Description | @@ -169,10 +180,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/reports/errors.md b/docs/reports/errors.md index 38faba6e..4d1651f0 100644 --- a/docs/reports/errors.md +++ b/docs/reports/errors.md @@ -14,10 +14,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/docs/reports/markers.md b/docs/reports/markers.md index 3ba98ca8..62941f17 100644 --- a/docs/reports/markers.md +++ b/docs/reports/markers.md @@ -14,10 +14,10 @@ ### Reports * [Errors - 0](../reports/errors.md) * [Markers - 0](../reports/markers.md) -* [Deprecated - 34](../reports/deprecated.md) +* [Deprecated - 40](../reports/deprecated.md) --- -This document was automatically generated from source code comments on 2025-07-31 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2025-09-04 using [phpDocumentor](http://www.phpdoc.org/) © 2025 YooMoney \ No newline at end of file diff --git a/lib/Client.php b/lib/Client.php index 469a3dbd..b9be7118 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -130,7 +130,7 @@ class Client extends BaseClient /** * Текущая версия библиотеки. */ - public const SDK_VERSION = '3.9.1'; + public const SDK_VERSION = '3.10.0'; /** * Получить список платежей магазина. diff --git a/lib/Client/BaseClient.php b/lib/Client/BaseClient.php index 8b5d3cb8..9134aa4c 100644 --- a/lib/Client/BaseClient.php +++ b/lib/Client/BaseClient.php @@ -35,6 +35,7 @@ use YooKassa\Common\Exceptions\AuthorizeException; use YooKassa\Common\Exceptions\BadApiRequestException; use YooKassa\Common\Exceptions\ExtensionNotFoundException; use YooKassa\Common\Exceptions\ForbiddenException; +use YooKassa\Common\Exceptions\GoneException; use YooKassa\Common\Exceptions\InternalServerError; use YooKassa\Common\Exceptions\NotFoundException; use YooKassa\Common\Exceptions\ResponseProcessingException; @@ -344,6 +345,7 @@ class BaseClient * @throws ForbiddenException секретный ключ или OAuth-токен верный, но не хватает прав для совершения операции * @throws InternalServerError Технические неполадки на стороне ЮKassa. Результат обработки запроса неизвестен. Повторите запрос позднее с тем же ключом идемпотентности. * @throws NotFoundException ресурс не найден + * @throws GoneException ресурс удален * @throws ResponseProcessingException запрос был принят на обработку, но она не завершена * @throws TooManyRequestsException Превышен лимит запросов в единицу времени. Попробуйте снизить интенсивность запросов. * @throws UnauthorizedException неверное имя пользователя или пароль или невалидный OAuth-токен при аутентификации @@ -355,38 +357,27 @@ class BaseClient case BadApiRequestException::HTTP_CODE: throw new BadApiRequestException($response->getHeaders(), $response->getBody()); - break; - case ForbiddenException::HTTP_CODE: throw new ForbiddenException($response->getHeaders(), $response->getBody()); - break; - case UnauthorizedException::HTTP_CODE: throw new UnauthorizedException($response->getHeaders(), $response->getBody()); - break; - case InternalServerError::HTTP_CODE: throw new InternalServerError($response->getHeaders(), $response->getBody()); - break; - case NotFoundException::HTTP_CODE: throw new NotFoundException($response->getHeaders(), $response->getBody()); - break; + case GoneException::HTTP_CODE: + throw new GoneException($response->getHeaders(), $response->getBody()); case TooManyRequestsException::HTTP_CODE: throw new TooManyRequestsException($response->getHeaders(), $response->getBody()); - break; - case ResponseProcessingException::HTTP_CODE: throw new ResponseProcessingException($response->getHeaders(), $response->getBody()); - break; - default: if ($response->getCode() > 399) { throw new ApiException( diff --git a/lib/Common/Errors/AbstractError.php b/lib/Common/Errors/AbstractError.php new file mode 100644 index 00000000..c0905186 --- /dev/null +++ b/lib/Common/Errors/AbstractError.php @@ -0,0 +1,240 @@ +_type; + } + + /** + * Устанавливает type. + * + * @param string|null $type Тип объекта. + * + * @return self + */ + public function setType(?string $type = null): self + { + $this->_type = $this->validatePropertyValue('_type', $type); + return $this; + } + + /** + * Возвращает id. + * + * @return string|null + */ + public function getId(): ?string + { + return $this->_id; + } + + /** + * Устанавливает id. + * + * @param string|null $id Идентификатор ошибки. Используйте его, если возникла необходимость обратиться в техническую поддержку. + * + * @return self + */ + public function setId(?string $id = null): self + { + $this->_id = $this->validatePropertyValue('_id', $id); + return $this; + } + + /** + * Возвращает code. + * + * @return string|null + */ + public function getCode(): ?string + { + return $this->_code; + } + + /** + * Устанавливает code. + * + * @param string|null $code Код ошибки. + * + * @return self + */ + public function setCode(?string $code = null): self + { + $this->_code = $this->validatePropertyValue('_code', $code); + return $this; + } + + /** + * Возвращает description. + * + * @return string|null + */ + public function getDescription(): ?string + { + return $this->_description; + } + + /** + * Устанавливает description. + * + * @param string|null $description Подробное описание ошибки. + * + * @return self + */ + public function setDescription(?string $description = null): self + { + $this->_description = $this->validatePropertyValue('_description', $description); + return $this; + } + + /** + * Возвращает parameter. + * + * @return string|null + */ + public function getParameter(): ?string + { + return $this->_parameter; + } + + /** + * Устанавливает parameter. + * + * @param string|null $parameter Название параметра, из-за которого произошла ошибка. + * + * @return self + */ + public function setParameter(?string $parameter = null): self + { + $this->_parameter = $this->validatePropertyValue('_parameter', $parameter); + return $this; + } + + /** + * Возвращает retry_after. + * + * @return int|null + */ + public function getRetryAfter(): ?int + { + return $this->_retry_after; + } + + /** + * Устанавливает retry_after. + * + * @param int|null $retry_after Рекомендуемое количество миллисекунд, спустя которое следует повторить запрос. + * + * @return self + */ + public function setRetryAfter(?int $retry_after = null): self + { + $this->_retry_after = $this->validatePropertyValue('_retry_after', $retry_after); + return $this; + } + +} + diff --git a/lib/Common/Errors/ErrorBadRequest.php b/lib/Common/Errors/ErrorBadRequest.php new file mode 100644 index 00000000..1749708f --- /dev/null +++ b/lib/Common/Errors/ErrorBadRequest.php @@ -0,0 +1,47 @@ +setCode(ErrorCode::INVALID_REQUEST); + } +} diff --git a/lib/Common/Errors/ErrorCode.php b/lib/Common/Errors/ErrorCode.php new file mode 100644 index 00000000..89a42e71 --- /dev/null +++ b/lib/Common/Errors/ErrorCode.php @@ -0,0 +1,90 @@ + true, + self::INVALID_REQUEST => true, + self::INVALID_CREDENTIALS => true, + self::FORBIDDEN => true, + self::NOT_FOUND => true, + self::GONE => true, + self::TOO_MANY_REQUESTS => true, + self::INTERNAL_SERVER_ERROR => true, + self::UNKNOWN => false, + ]; +} diff --git a/lib/Common/Errors/ErrorCommon.php b/lib/Common/Errors/ErrorCommon.php new file mode 100644 index 00000000..a790c63a --- /dev/null +++ b/lib/Common/Errors/ErrorCommon.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::ERROR); + } +} diff --git a/lib/Common/Errors/ErrorFactory.php b/lib/Common/Errors/ErrorFactory.php new file mode 100644 index 00000000..857e9d83 --- /dev/null +++ b/lib/Common/Errors/ErrorFactory.php @@ -0,0 +1,94 @@ + 'ErrorCommon', + ErrorCode::INVALID_REQUEST => 'ErrorBadRequest', + ErrorCode::INVALID_CREDENTIALS => 'ErrorInvalidCredentials', + ErrorCode::FORBIDDEN => 'ErrorForbidden', + ErrorCode::NOT_FOUND => 'ErrorNotFound', + ErrorCode::GONE => 'ErrorGone', + ErrorCode::TOO_MANY_REQUESTS => 'ErrorTooManyRequests', + ErrorCode::INTERNAL_SERVER_ERROR => 'ErrorInternalServerError', + ErrorCode::UNKNOWN => 'ErrorUnknown', + ]; + + /** + * Фабричный метод создания объекта ошибки по типу. + * + * @param string|null $code Код ошибки + * + * @return AbstractError + */ + public function factory(?string $code): AbstractError + { + if (!array_key_exists($code, $this->typeClassMap)) { + $code = ErrorCode::UNKNOWN; + } + $className = __NAMESPACE__ . '\\' . $this->typeClassMap[$code]; + + return new $className(); + } + + /** + * Фабричный метод создания объекта ошибки из массива. + * + * @param array $data Массив данных ошибки + * @param null|string $code Код ошибки + */ + public function factoryFromArray(array $data, ?string $code = null): AbstractError + { + if (null === $code) { + if (array_key_exists('code', $data)) { + $code = $data['code']; + unset($data['code']); + } else { + $code = ErrorCode::UNKNOWN; + } + } + + $errorData = $this->factory($code); + $errorData->fromArray($data); + + return $errorData; + } +} diff --git a/lib/Common/Errors/ErrorForbidden.php b/lib/Common/Errors/ErrorForbidden.php new file mode 100644 index 00000000..fa0a2e9a --- /dev/null +++ b/lib/Common/Errors/ErrorForbidden.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::FORBIDDEN); + } +} diff --git a/lib/Common/Errors/ErrorGone.php b/lib/Common/Errors/ErrorGone.php new file mode 100644 index 00000000..4eeabdaf --- /dev/null +++ b/lib/Common/Errors/ErrorGone.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::GONE); + } +} diff --git a/lib/Common/Errors/ErrorInternalServerError.php b/lib/Common/Errors/ErrorInternalServerError.php new file mode 100644 index 00000000..9860c926 --- /dev/null +++ b/lib/Common/Errors/ErrorInternalServerError.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::INTERNAL_SERVER_ERROR); + } +} diff --git a/lib/Common/Errors/ErrorInvalidCredentials.php b/lib/Common/Errors/ErrorInvalidCredentials.php new file mode 100644 index 00000000..a6304af6 --- /dev/null +++ b/lib/Common/Errors/ErrorInvalidCredentials.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::INVALID_CREDENTIALS); + } +} diff --git a/lib/Common/Errors/ErrorNotFound.php b/lib/Common/Errors/ErrorNotFound.php new file mode 100644 index 00000000..e25c33b5 --- /dev/null +++ b/lib/Common/Errors/ErrorNotFound.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::NOT_FOUND); + } +} diff --git a/lib/Common/Errors/ErrorTooManyRequests.php b/lib/Common/Errors/ErrorTooManyRequests.php new file mode 100644 index 00000000..37a72ec1 --- /dev/null +++ b/lib/Common/Errors/ErrorTooManyRequests.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::TOO_MANY_REQUESTS); + } +} diff --git a/lib/Common/Errors/ErrorUnknown.php b/lib/Common/Errors/ErrorUnknown.php new file mode 100644 index 00000000..e9f6df6c --- /dev/null +++ b/lib/Common/Errors/ErrorUnknown.php @@ -0,0 +1,46 @@ +setCode(ErrorCode::UNKNOWN); + } +} diff --git a/lib/Common/Exceptions/ApiException.php b/lib/Common/Exceptions/ApiException.php index b4beecaa..7a5c5baa 100644 --- a/lib/Common/Exceptions/ApiException.php +++ b/lib/Common/Exceptions/ApiException.php @@ -27,6 +27,8 @@ namespace YooKassa\Common\Exceptions; use Exception; +use YooKassa\Common\Errors\AbstractError; +use YooKassa\Common\Errors\ErrorFactory; /** * Неожиданный код ошибки. @@ -43,15 +45,23 @@ class ApiException extends Exception */ protected array $responseHeaders = []; + /** + * @var AbstractError|null Объект ошибки + */ + protected ?AbstractError $error = null; + + /** + * @var mixed|null Тип ошибки + * @deprecated Устарело. Вместо него нужно использовать getError()->getType(). + */ public mixed $type = null; + /** + * @var mixed|null Время в секундах до повторной попытки + * @deprecated Устарело. Вместо него нужно использовать getError()->getRetryAfter(). + */ public mixed $retryAfter = null; - private ?string $errorId = null; - private ?string $errorCode = null; - private ?string $errorDescription = null; - private ?string $errorParameter = null; - /** * Constructor. * @@ -68,6 +78,7 @@ class ApiException extends Exception } /** + * * @return string[] */ public function getResponseHeaders(): array @@ -80,59 +91,90 @@ class ApiException extends Exception return $this->responseBody; } - protected function parseErrorResponse(mixed $responseBody): string + /** + * Создает сообщение из объекта ошибки + * @param mixed $responseBody + * @return string + */ + protected function createMessageFromError(mixed $responseBody): string { $errorData = json_decode($responseBody, true); + $this->parseErrorBody($errorData ?? []); $message = ''; - if (isset($errorData['description'])) { - $this->errorDescription = $errorData['description']; - $message .= $errorData['description'] . '. '; + if (!$this->getError()) { + return $message; } - if (isset($errorData['code'])) { - $this->errorCode = $errorData['code']; - $message .= sprintf('Error code: %s. ', $errorData['code']); + if ($this->getError()->getType() !== null) { + $this->type = $this->getError()->getType(); } - if (isset($errorData['parameter'])) { - $this->errorParameter = $errorData['parameter']; - $message .= sprintf('Parameter name: %s. ', $errorData['parameter']); + if ($this->getError()->getRetryAfter() !== null) { + $this->retryAfter = $this->getError()->getRetryAfter(); } - if (isset($errorData['retry_after'])) { - $this->retryAfter = $errorData['retry_after']; + if ($this->getError()->getDescription() !== null) { + $message .= $this->getError()->getDescription() . '. '; } - if (isset($errorData['type'])) { - $this->type = $errorData['type']; + if ($this->getError()->getCode() !== null) { + $message .= sprintf('Error code: %s. ', $this->getError()->getCode()); } - if (isset($errorData['id'])) { - $this->errorId = $errorData['id']; + if ($this->getError()->getParameter() !== null) { + $message .= sprintf('Parameter name: %s. ', $this->getError()->getParameter()); } return $message; } + /** + * Подготавливает объект ошибки + * @param array $errorData + * @return void + */ + protected function parseErrorBody(array $errorData): void + { + $this->error = (new ErrorFactory())->factoryFromArray($errorData); + } + + /** + * Возвращает объект ошибки + * @return AbstractError|null + */ + public function getError(): ?AbstractError + { + return $this->error; + } + + /** + * @deprecated Устарело. Вместо него нужно использовать getError()->getId() + */ public function getErrorId(): ?string { - return $this->errorId; + return $this->getError()?->getId(); } - + /** + * @deprecated Устарело. Вместо него нужно использовать getError()->getCode() + */ public function getErrorCode(): ?string { - return $this->errorCode; + return $this->getError()?->getCode(); } - + /** + * @deprecated Устарело. Вместо него нужно использовать getError()->getDescription() + */ public function getErrorDescription(): ?string { - return $this->errorDescription; + return $this->getError()?->getDescription(); } - + /** + * @deprecated Устарело. Вместо него нужно использовать getError()->getParameter() + */ public function getErrorParameter(): ?string { - return $this->errorParameter; + return $this->getError()?->getParameter(); } } diff --git a/lib/Common/Exceptions/BadApiRequestException.php b/lib/Common/Exceptions/BadApiRequestException.php index 121b8048..e51b5080 100644 --- a/lib/Common/Exceptions/BadApiRequestException.php +++ b/lib/Common/Exceptions/BadApiRequestException.php @@ -35,7 +35,7 @@ class BadApiRequestException extends ApiException public function __construct($responseHeaders = [], $responseBody = '') { - $message = $this->parseErrorResponse($responseBody); + $message = $this->createMessageFromError($responseBody); parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); } diff --git a/lib/Common/Exceptions/ForbiddenException.php b/lib/Common/Exceptions/ForbiddenException.php index fbfc17be..0de47c5a 100644 --- a/lib/Common/Exceptions/ForbiddenException.php +++ b/lib/Common/Exceptions/ForbiddenException.php @@ -35,7 +35,7 @@ class ForbiddenException extends ApiException public function __construct($responseHeaders = [], $responseBody = '') { - $message = $this->parseErrorResponse($responseBody); + $message = $this->createMessageFromError($responseBody); parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); } diff --git a/lib/Common/Exceptions/GoneException.php b/lib/Common/Exceptions/GoneException.php new file mode 100644 index 00000000..275c105d --- /dev/null +++ b/lib/Common/Exceptions/GoneException.php @@ -0,0 +1,42 @@ +createMessageFromError($responseBody); + + parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); + } +} diff --git a/lib/Common/Exceptions/InternalServerError.php b/lib/Common/Exceptions/InternalServerError.php index 529e7a6e..c13e4322 100644 --- a/lib/Common/Exceptions/InternalServerError.php +++ b/lib/Common/Exceptions/InternalServerError.php @@ -37,7 +37,7 @@ class InternalServerError extends ApiException public function __construct($responseHeaders = [], $responseBody = '') { - $message = $this->parseErrorResponse($responseBody); + $message = $this->createMessageFromError($responseBody); parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); } diff --git a/lib/Common/Exceptions/NotFoundException.php b/lib/Common/Exceptions/NotFoundException.php index 3aa68465..55c74346 100644 --- a/lib/Common/Exceptions/NotFoundException.php +++ b/lib/Common/Exceptions/NotFoundException.php @@ -35,7 +35,7 @@ class NotFoundException extends ApiException public function __construct(array $responseHeaders = [], ?string $responseBody = '') { - $message = $this->parseErrorResponse($responseBody); + $message = $this->createMessageFromError($responseBody); parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); } diff --git a/lib/Common/Exceptions/ResponseProcessingException.php b/lib/Common/Exceptions/ResponseProcessingException.php index 37fad4ec..8376f18e 100644 --- a/lib/Common/Exceptions/ResponseProcessingException.php +++ b/lib/Common/Exceptions/ResponseProcessingException.php @@ -35,20 +35,7 @@ class ResponseProcessingException extends ApiException public function __construct(array $responseHeaders = [], ?string $responseBody = '') { - $errorData = json_decode($responseBody, true); - $message = ''; - - if (isset($errorData['description'])) { - $message .= $errorData['description'] . '. '; - } - - if (isset($errorData['retry_after'])) { - $this->retryAfter = $errorData['retry_after']; - } - - if (isset($errorData['type'])) { - $this->type = $errorData['type']; - } + $message = $this->createMessageFromError($responseBody); parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); } diff --git a/lib/Common/Exceptions/TooManyRequestsException.php b/lib/Common/Exceptions/TooManyRequestsException.php index 3ec2e492..5543faea 100644 --- a/lib/Common/Exceptions/TooManyRequestsException.php +++ b/lib/Common/Exceptions/TooManyRequestsException.php @@ -35,7 +35,7 @@ class TooManyRequestsException extends ApiException public function __construct(array $responseHeaders = [], ?string $responseBody = '') { - $message = $this->parseErrorResponse($responseBody); + $message = $this->createMessageFromError($responseBody); parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); } diff --git a/lib/Common/Exceptions/UnauthorizedException.php b/lib/Common/Exceptions/UnauthorizedException.php index f8674fdf..b05a0a39 100644 --- a/lib/Common/Exceptions/UnauthorizedException.php +++ b/lib/Common/Exceptions/UnauthorizedException.php @@ -36,7 +36,7 @@ class UnauthorizedException extends ApiException public function __construct(array $responseHeaders = [], ?string $responseBody = '') { - $message = $this->parseErrorResponse($responseBody); + $message = $this->createMessageFromError($responseBody); parent::__construct(trim($message), self::HTTP_CODE, $responseHeaders, $responseBody); } diff --git a/lib/Model/Invoice/Invoice.php b/lib/Model/Invoice/Invoice.php index 0b28f0f6..affbfbcb 100644 --- a/lib/Model/Invoice/Invoice.php +++ b/lib/Model/Invoice/Invoice.php @@ -39,14 +39,14 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель Invoice. * - * Данные о счете. + * Объект счета (Invoice) — актуальная информация о счете. * * @category Class * @package YooKassa\Model * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property string $id Идентификатор счета в ЮКасса. + * @property string $id Идентификатор счета в ЮKassa. * @property string $status Статус счета. Возможные значения: `pending`, `succeeded`, `canceled`. * @property LineItem[]|ListObjectInterface $cart Корзина заказа — список товаров или услуг, который отобразится на странице счета перед оплатой. * @property AbstractDeliveryMethod|null $delivery_method Данные о выбранном способе доставки счета. Присутствует только для счетов в статусе `pending`. @@ -65,7 +65,7 @@ use YooKassa\Validator\Constraints as Assert; class Invoice extends AbstractObject implements InvoiceInterface { /** - * Идентификатор счета в ЮКасса. + * Идентификатор счета в ЮKassa. * * @var string|null */ @@ -167,7 +167,7 @@ class Invoice extends AbstractObject implements InvoiceInterface /** * Возвращает id. * - * @return string|null Идентификатор счета в ЮКасса + * @return string|null Идентификатор счета в ЮKassa */ public function getId(): ?string { @@ -177,7 +177,7 @@ class Invoice extends AbstractObject implements InvoiceInterface /** * Устанавливает id. * - * @param string|null $id Идентификатор счета в ЮКасса. + * @param string|null $id Идентификатор счета в ЮKassa. * * @return self */ diff --git a/lib/Model/Invoice/InvoiceInterface.php b/lib/Model/Invoice/InvoiceInterface.php index 8a1fe7bf..bb7997c8 100644 --- a/lib/Model/Invoice/InvoiceInterface.php +++ b/lib/Model/Invoice/InvoiceInterface.php @@ -42,7 +42,7 @@ use YooKassa\Model\Metadata; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property string $id Идентификатор счета в ЮКасса. + * @property string $id Идентификатор счета в ЮKassa. * @property string $status Статус счета. Возможные значения: `pending`, `succeeded`, `canceled`. * @property LineItem[]|ListObjectInterface $cart Корзина заказа — список товаров или услуг, который отобразится на странице счета перед оплатой. * @property AbstractDeliveryMethod|null $delivery_method Данные о выбранном способе доставки счета. Присутствует только для счетов в статусе `pending`. @@ -79,7 +79,7 @@ interface InvoiceInterface /** * Устанавливает id. * - * @param string|null $id Идентификатор счета в ЮКасса. + * @param string|null $id Идентификатор счета в ЮKassa. * * @return self */ diff --git a/lib/Model/Payment/Confirmation/AbstractConfirmation.php b/lib/Model/Payment/Confirmation/AbstractConfirmation.php index 83a5fc83..934c500a 100644 --- a/lib/Model/Payment/Confirmation/AbstractConfirmation.php +++ b/lib/Model/Payment/Confirmation/AbstractConfirmation.php @@ -41,7 +41,7 @@ use YooKassa\Validator\Constraints as Assert; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property string $type Тип подтверждения платежа + * @property string $type Код сценария подтверждения * * @method string getConfirmationUrl() Для ConfirmationRedirect * @method string getConfirmationToken() Для ConfirmationEmbedded @@ -50,7 +50,7 @@ use YooKassa\Validator\Constraints as Assert; abstract class AbstractConfirmation extends AbstractObject { /** - * Тип подтверждения платежа. + * Код сценария подтверждения. */ #[Assert\NotBlank] #[Assert\Type('string')] @@ -58,7 +58,7 @@ abstract class AbstractConfirmation extends AbstractObject protected ?string $_type = null; /** - * Возвращает тип подтверждения платежа. + * Возвращает код сценария подтверждения. */ public function getType(): ?string { @@ -66,9 +66,9 @@ abstract class AbstractConfirmation extends AbstractObject } /** - * Устанавливает тип подтверждения платежа + * Устанавливает код сценария подтверждения * - * @param string|null $type Тип подтверждения платежа + * @param string|null $type Код сценария подтверждения * * @return self */ diff --git a/lib/Model/Payment/Confirmation/ConfirmationFactory.php b/lib/Model/Payment/Confirmation/ConfirmationFactory.php index 69319b99..e34c8ce1 100644 --- a/lib/Model/Payment/Confirmation/ConfirmationFactory.php +++ b/lib/Model/Payment/Confirmation/ConfirmationFactory.php @@ -51,7 +51,7 @@ class ConfirmationFactory /** * Возвращает объект, соответствующий типу подтверждения платежа. * - * @param string $type Тип подтверждения платежа + * @param string $type Код сценария подтверждения */ public function factory(string $type): AbstractConfirmation { @@ -67,7 +67,7 @@ class ConfirmationFactory * Возвращает объект, соответствующий типу подтверждения платежа, из массива данных. * * @param array $data Массив данных подтверждения платежа - * @param null|string $type Тип подтверждения платежа + * @param null|string $type Код сценария подтверждения */ public function factoryFromArray(array $data, ?string $type = null): AbstractConfirmation { diff --git a/lib/Model/Payment/Payment.php b/lib/Model/Payment/Payment.php index 9d66e01b..f8989b2b 100644 --- a/lib/Model/Payment/Payment.php +++ b/lib/Model/Payment/Payment.php @@ -45,7 +45,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель Payment. * - * Данные о платеже. + * Объект платежа (Payment) — актуальная информация о платеже. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/Payment/PaymentInvoiceDetails.php b/lib/Model/Payment/PaymentInvoiceDetails.php index 50aa4735..a3273e56 100644 --- a/lib/Model/Payment/PaymentInvoiceDetails.php +++ b/lib/Model/Payment/PaymentInvoiceDetails.php @@ -40,12 +40,12 @@ use YooKassa\Validator\Constraints as Assert; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property string $id Идентификатор счета в ЮКасса. + * @property string $id Идентификатор счета в ЮKassa. */ class PaymentInvoiceDetails extends AbstractObject { /** - * Идентификатор счета в ЮКасса. + * Идентификатор счета в ЮKassa. * * @var string|null */ @@ -57,7 +57,7 @@ class PaymentInvoiceDetails extends AbstractObject /** * Возвращает id. * - * @return string|null Идентификатор счета в ЮКасса. + * @return string|null Идентификатор счета в ЮKassa. */ public function getId(): ?string { @@ -67,7 +67,7 @@ class PaymentInvoiceDetails extends AbstractObject /** * Устанавливает id. * - * @param string|null $id Идентификатор счета в ЮКасса. + * @param string|null $id Идентификатор счета в ЮKassa. * * @return self */ diff --git a/lib/Model/Payment/PaymentMethod/AbstractPaymentMethod.php b/lib/Model/Payment/PaymentMethod/AbstractPaymentMethod.php index 985a163e..1b302028 100644 --- a/lib/Model/Payment/PaymentMethod/AbstractPaymentMethod.php +++ b/lib/Model/Payment/PaymentMethod/AbstractPaymentMethod.php @@ -69,7 +69,8 @@ abstract class AbstractPaymentMethod extends AbstractObject protected ?string $_id = null; /** - * С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). + * Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + * Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. * * @var bool|null */ @@ -155,10 +156,11 @@ abstract class AbstractPaymentMethod extends AbstractObject /** * Устанавливает признак возможности многократного использования. * - * @param bool|null $saved С помощью сохраненного способа оплаты можно проводить [безакцептные списания](/developers/payment-acceptance/scenario-extensions/recurring-payments). + * @param bool|null $saved Признак сохранения способа оплаты для %[автоплатежей](https://yookassa.ru/developers/payment-acceptance/scenario-extensions/recurring-payments/pay-with-saved). + * Возможные значения: * ~`true` — способ оплаты сохранен для автоплатежей и выплат; * ~`false` — способ оплаты не сохранен. * - * @throws Exception * @return self + * @throws Exception */ public function setSaved(mixed $saved = null): self { diff --git a/lib/Model/Payment/PaymentMethod/B2b/Sberbank/AbstractVatData.php b/lib/Model/Payment/PaymentMethod/B2b/Sberbank/AbstractVatData.php index 638d2c62..2aea6ede 100644 --- a/lib/Model/Payment/PaymentMethod/B2b/Sberbank/AbstractVatData.php +++ b/lib/Model/Payment/PaymentMethod/B2b/Sberbank/AbstractVatData.php @@ -40,12 +40,12 @@ use YooKassa\Validator\Constraints as Assert; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property string $type Способ расчёта НДС + * @property string $type Код способа расчета НДС */ abstract class AbstractVatData extends AbstractObject { /** - * @var string|null Способ расчёта НДС + * @var string|null Код способа расчета НДС */ #[Assert\NotBlank] #[Assert\Type('string')] @@ -53,9 +53,9 @@ abstract class AbstractVatData extends AbstractObject protected ?string $_type = null; /** - * Возвращает способ расчёта НДС + * Возвращает код способа расчета НДС * - * @return string|null Способ расчёта НДС + * @return string|null Код способа расчета НДС */ public function getType(): ?string { @@ -63,8 +63,8 @@ abstract class AbstractVatData extends AbstractObject } /** - * Устанавливает способ расчёта НДС - * @param string|null $type Способ расчёта НДС + * Устанавливает код способа расчета НДС + * @param string|null $type Код способа расчета НДС */ public function setType(?string $type): self { diff --git a/lib/Model/Payment/PaymentMethod/PaymentMethodCash.php b/lib/Model/Payment/PaymentMethod/PaymentMethodCash.php index e99fe4d1..619f6286 100644 --- a/lib/Model/Payment/PaymentMethod/PaymentMethodCash.php +++ b/lib/Model/Payment/PaymentMethod/PaymentMethodCash.php @@ -31,7 +31,7 @@ use YooKassa\Model\Payment\PaymentMethodType; /** * Класс, представляющий модель PaymentMethodCash. * - * Оплата наличными в терминалах РФ или СНГ. + * Оплата наличными в терминалах. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/Payment/PaymentMethod/PaymentMethodFactory.php b/lib/Model/Payment/PaymentMethod/PaymentMethodFactory.php index 53049b23..9448e5aa 100644 --- a/lib/Model/Payment/PaymentMethod/PaymentMethodFactory.php +++ b/lib/Model/Payment/PaymentMethod/PaymentMethodFactory.php @@ -64,6 +64,7 @@ class PaymentMethodFactory PaymentMethodType::SBP => 'PaymentMethodSbp', PaymentMethodType::SBER_LOAN => 'PaymentMethodSberLoan', PaymentMethodType::ELECTRONIC_CERTIFICATE => 'PaymentMethodElectronicCertificate', + PaymentMethodType::SBER_BNPL => 'PaymentMethodSberBnpl', PaymentMethodType::UNKNOWN => 'PaymentMethodUnknown', ]; diff --git a/lib/Model/Payment/PaymentMethod/PaymentMethodSberBnpl.php b/lib/Model/Payment/PaymentMethod/PaymentMethodSberBnpl.php new file mode 100644 index 00000000..16312d45 --- /dev/null +++ b/lib/Model/Payment/PaymentMethod/PaymentMethodSberBnpl.php @@ -0,0 +1,48 @@ +setType(PaymentMethodType::SBER_BNPL); + } +} diff --git a/lib/Model/Payment/PaymentMethod/PaymentMethodSberLoan.php b/lib/Model/Payment/PaymentMethod/PaymentMethodSberLoan.php index b4f33be8..0fc7b227 100644 --- a/lib/Model/Payment/PaymentMethod/PaymentMethodSberLoan.php +++ b/lib/Model/Payment/PaymentMethod/PaymentMethodSberLoan.php @@ -26,6 +26,7 @@ namespace YooKassa\Model\Payment\PaymentMethod; +use DateTime; use YooKassa\Model\AmountInterface; use YooKassa\Model\MonetaryAmount; use YooKassa\Model\Payment\PaymentMethodType; @@ -45,6 +46,8 @@ use YooKassa\Validator\Constraints as Assert; * @property string $loanOption Тариф кредита * @property AmountInterface $discount_amount Сумма скидки для рассрочки * @property AmountInterface $discountAmount Сумма скидки для рассрочки + * @property DateTime $suspended_until Время, когда заканчивается период охлаждения кредита или рассрочки. + * @property DateTime $suspendedUntil Время, когда заканчивается период охлаждения кредита или рассрочки. */ class PaymentMethodSberLoan extends AbstractPaymentMethod { @@ -74,6 +77,17 @@ class PaymentMethodSberLoan extends AbstractPaymentMethod #[Assert\Type(MonetaryAmount::class)] private ?AmountInterface $_discount_amount = null; + /** + * Время, когда заканчивается [период охлаждения](https://yookassa.ru/docs/support/payments/credit-purchases-by-sberbank-with-cooling-off) кредита или рассрочки. + * Указывается по [UTC](https://ru.wikipedia.org/wiki/Всемирное_координированное_время) и передается в формате [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). + * Присутствует для платежей в статусе ~`pending`, которые по [закону](https://www.consultant.ru/document/cons_doc_LAW_498604/) попадают под процедуру охлаждения. + * + * @var DateTime|null + */ + #[Assert\DateTime(format: YOOKASSA_DATE)] + #[Assert\Type('DateTime')] + private ?DateTime $_suspended_until = null; + public function __construct(?array $data = []) { parent::__construct($data); @@ -119,4 +133,27 @@ class PaymentMethodSberLoan extends AbstractPaymentMethod $this->_discount_amount = $this->validatePropertyValue('_discount_amount', $discount_amount); return $this; } + + /** + * Возвращает время, когда заканчивается период охлаждения кредита или рассрочки. + * + * @return DateTime|null + */ + public function getSuspendedUntil(): ?DateTime + { + return $this->_suspended_until; + } + + /** + * Устанавливает время, когда заканчивается период охлаждения кредита или рассрочки. + * + * @param DateTime|string|null $suspended_until Время, когда заканчивается период охлаждения кредита или рассрочки. + * + * @return self + */ + public function setSuspendedUntil(DateTime|string|null $suspended_until = null): self + { + $this->_suspended_until = $this->validatePropertyValue('_suspended_until', $suspended_until); + return $this; + } } diff --git a/lib/Model/Payment/PaymentMethodType.php b/lib/Model/Payment/PaymentMethodType.php index 58d9b84d..fc2c1438 100644 --- a/lib/Model/Payment/PaymentMethodType.php +++ b/lib/Model/Payment/PaymentMethodType.php @@ -31,7 +31,7 @@ use YooKassa\Common\AbstractEnum; /** * Класс, представляющий модель PaymentMethodType. * - * Тип источника средств для проведения платежа. + * Код способа оплаты — тип платежного средства, которое используется для оплаты. [Подробнее о способах оплаты](https://yookassa.ru/developers/payment-acceptance/getting-started/payment-methods) * * Возможные значения: * - `yoo_money` - Платеж из кошелька ЮMoney @@ -136,6 +136,9 @@ class PaymentMethodType extends AbstractEnum /** Прием платежей по электронному сертификату, привязанному к карте «Мир» */ public const ELECTRONIC_CERTIFICATE = 'electronic_certificate'; + /** Оплата через сервис «Плати частями» */ + public const SBER_BNPL = 'sber_bnpl'; + /** * Для неизвестных методов оплаты * @@ -162,6 +165,7 @@ class PaymentMethodType extends AbstractEnum self::SBP => true, self::SBER_LOAN => true, self::ELECTRONIC_CERTIFICATE => true, + self::SBER_BNPL => true, self::UNKNOWN => false, ]; } diff --git a/lib/Model/Payout/AbstractPayoutDestination.php b/lib/Model/Payout/AbstractPayoutDestination.php index 64d84d06..d2420306 100644 --- a/lib/Model/Payout/AbstractPayoutDestination.php +++ b/lib/Model/Payout/AbstractPayoutDestination.php @@ -32,7 +32,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель PayoutDestination. * - * Платежное средство продавца, на которое ЮKassa переводит оплату. + * Платежное средство, на которое ЮKassa зачисляет выплату. * * @category Abstract Class * @package YooKassa\Model diff --git a/lib/Model/Payout/Payout.php b/lib/Model/Payout/Payout.php index 08a32aff..3c974e37 100644 --- a/lib/Model/Payout/Payout.php +++ b/lib/Model/Payout/Payout.php @@ -39,7 +39,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель Payout. * - * Объект выплаты. + * Объект выплаты (Payout) — актуальная информация о выплате. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/Payout/PayoutInterface.php b/lib/Model/Payout/PayoutInterface.php index d221af73..dc9dc1d6 100644 --- a/lib/Model/Payout/PayoutInterface.php +++ b/lib/Model/Payout/PayoutInterface.php @@ -80,9 +80,9 @@ interface PayoutInterface public function getStatus(): ?string; /** - * Возвращает платежное средство продавца, на которое ЮKassa переводит оплату. + * Возвращает платежное средство, на которое ЮKassa зачисляет выплату. * - * @return AbstractPayoutDestination|null Платежное средство продавца, на которое ЮKassa переводит оплату + * @return AbstractPayoutDestination|null Платежное средство, на которое ЮKassa зачисляет выплату. */ public function getPayoutDestination(): ?AbstractPayoutDestination; diff --git a/lib/Model/Payout/SbpParticipantBank.php b/lib/Model/Payout/SbpParticipantBank.php index 2db6d16d..a98b5001 100644 --- a/lib/Model/Payout/SbpParticipantBank.php +++ b/lib/Model/Payout/SbpParticipantBank.php @@ -32,7 +32,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель SbpParticipantBank. * - * Участник СБП (Системы быстрых платежей ЦБ РФ) + * Объект участника СБП (Системы быстрых платежей ЦБ РФ) — актуальная информация о банке или платежном сервисе, подключенном к СБП. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/PersonalData/PersonalData.php b/lib/Model/PersonalData/PersonalData.php index afdaae59..4835e530 100644 --- a/lib/Model/PersonalData/PersonalData.php +++ b/lib/Model/PersonalData/PersonalData.php @@ -34,7 +34,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель PersonalData. * - * Информация о персональных данных + * Объект персональных данных (PersonalData) — актуальная информация о персональных данных пользователя, сохраненных в ЮKassa. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/Receipt/ReceiptItem.php b/lib/Model/Receipt/ReceiptItem.php index fad508bc..4a7678f8 100644 --- a/lib/Model/Receipt/ReceiptItem.php +++ b/lib/Model/Receipt/ReceiptItem.php @@ -39,7 +39,7 @@ use YooKassa\Helpers\TypeCast; use YooKassa\Model\AmountInterface; /** - * Информация о товарной позиции в заказе, позиция фискального чека. + * Информация о товарной позиции в заказе. Используется для формирования чека. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/Refund/Refund.php b/lib/Model/Refund/Refund.php index 2b18dcc9..ae54b001 100644 --- a/lib/Model/Refund/Refund.php +++ b/lib/Model/Refund/Refund.php @@ -42,7 +42,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель Refund. * - * Данные о возврате платежа. + * Объект возврата (Refund) — актуальная информация о возврате платежа. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/SelfEmployed/SelfEmployed.php b/lib/Model/SelfEmployed/SelfEmployed.php index 34ef488d..d36113cd 100644 --- a/lib/Model/SelfEmployed/SelfEmployed.php +++ b/lib/Model/SelfEmployed/SelfEmployed.php @@ -33,7 +33,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель SelfEmployed. * - * Объект самозанятого. + * Объект самозанятого (SelfEmployed) — актуальная информация о самозанятом. * * @category Class * @package YooKassa\Model diff --git a/lib/Model/SelfEmployed/SelfEmployedConfirmationFactory.php b/lib/Model/SelfEmployed/SelfEmployedConfirmationFactory.php index bbbecd41..45133ccb 100644 --- a/lib/Model/SelfEmployed/SelfEmployedConfirmationFactory.php +++ b/lib/Model/SelfEmployed/SelfEmployedConfirmationFactory.php @@ -49,7 +49,7 @@ class SelfEmployedConfirmationFactory /** * Возвращает объект, соответствующий типу подтверждения платежа. * - * @param string $type Тип подтверждения платежа + * @param string $type Код сценария подтверждения */ public function factory(string $type): SelfEmployedConfirmation { @@ -65,7 +65,7 @@ class SelfEmployedConfirmationFactory * Возвращает объект, соответствующий типу подтверждения платежа, из массива данных. * * @param array $data Массив данных подтверждения платежа - * @param null|string $type Тип подтверждения платежа + * @param null|string $type Код сценария подтверждения */ public function factoryFromArray(array $data, ?string $type = null): SelfEmployedConfirmation { diff --git a/lib/Model/Settings/FiscalizationProvider.php b/lib/Model/Settings/FiscalizationProvider.php index b4133134..c08a4c42 100644 --- a/lib/Model/Settings/FiscalizationProvider.php +++ b/lib/Model/Settings/FiscalizationProvider.php @@ -81,20 +81,20 @@ class FiscalizationProvider extends AbstractEnum */ protected static array $validValues = [ self::ATOL => true, - self::BUSINESS_RU => true, - self::SHTRIH_M => true, - self::MODUL_KASSA => true, - self::EVOTOR => true, - self::KIT_INVEST => true, - self::A_QSI => true, - self::FNS => true, self::AVANPOST => true, - self::MERTRADE => true, - self::FIRST_OFD => true, - self::LIFE_PAY => true, - self::ROCKET => true, + self::A_QSI => true, + self::BUSINESS_RU => true, self::DIGITAL_KASSA => true, + self::EVOTOR => true, + self::FIRST_OFD => true, + self::FNS => true, + self::KIT_INVEST => true, self::KOMTET => true, + self::LIFE_PAY => true, + self::MERTRADE => true, + self::MODUL_KASSA => true, + self::ROCKET => true, + self::SHTRIH_M => true, ]; } diff --git a/lib/Model/Settings/Me.php b/lib/Model/Settings/Me.php index c024a224..d25cc6fc 100644 --- a/lib/Model/Settings/Me.php +++ b/lib/Model/Settings/Me.php @@ -34,7 +34,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель Me. * - * Информация о настройках магазина или шлюза. + * Объект настроек магазина или шлюза (Me) — актуальная информация о настройках магазина или шлюза. * * @category Class * @package YooKassa\Model diff --git a/lib/Request/Deals/DealsResponse.php b/lib/Request/Deals/DealsResponse.php index 97c0a210..a9e2f548 100644 --- a/lib/Request/Deals/DealsResponse.php +++ b/lib/Request/Deals/DealsResponse.php @@ -42,12 +42,17 @@ use YooKassa\Validator\Constraints as Assert; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property SafeDeal[]|ListObjectInterface|null $items Массив сделок + * @property SafeDeal[]|ListObjectInterface|null $items Список сделок, созданных за последние три года. Сделки отсортированы по времени создания в порядке убывания (от новых к старым). */ class DealsResponse extends AbstractListResponse { /** - * @var SafeDeal[]|ListObjectInterface|null Массив сделок + * Список сделок, созданных за последние три года. + * Сделки отсортированы по времени создания в порядке убывания (от новых к старым). + * Если результатов больше, чем задано в limit, список будет выводиться фрагментами. + * В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. + * + * @var SafeDeal[]|ListObjectInterface|null Список сделок */ #[Assert\Valid] #[Assert\AllType(SafeDeal::class)] diff --git a/lib/Request/Payments/PaymentData/PaymentDataFactory.php b/lib/Request/Payments/PaymentData/PaymentDataFactory.php index 4aadddc5..a74d5e46 100644 --- a/lib/Request/Payments/PaymentData/PaymentDataFactory.php +++ b/lib/Request/Payments/PaymentData/PaymentDataFactory.php @@ -54,6 +54,7 @@ class PaymentDataFactory PaymentMethodType::SBP => 'PaymentDataSbp', PaymentMethodType::SBER_LOAN => 'PaymentDataSberLoan', PaymentMethodType::ELECTRONIC_CERTIFICATE => 'PaymentDataElectronicCertificate', + PaymentMethodType::SBER_BNPL => 'PaymentDataSberBnpl', ]; /** diff --git a/lib/Request/Payments/PaymentData/PaymentDataSberBnpl.php b/lib/Request/Payments/PaymentData/PaymentDataSberBnpl.php new file mode 100644 index 00000000..b1ece200 --- /dev/null +++ b/lib/Request/Payments/PaymentData/PaymentDataSberBnpl.php @@ -0,0 +1,85 @@ +setType(PaymentMethodType::SBER_BNPL); + } + + /** + * Возвращает номер телефона в формате ITU-T E.164 + * @return string|null + */ + public function getPhone(): ?string + { + return $this->_phone; + } + + /** + * Устанавливает номер телефона в формате ITU-T E.164 + * + * @param string|null $phone Номер телефона в формате ITU-T E.164 + * + * @return self + */ + public function setPhone(?string $phone = null): self + { + $this->_phone = $this->validatePropertyValue('_phone', $phone); + return $this; + } +} diff --git a/lib/Request/Payments/PaymentData/PaymentDataYooMoney.php b/lib/Request/Payments/PaymentData/PaymentDataYooMoney.php index a7239743..8365ca32 100644 --- a/lib/Request/Payments/PaymentData/PaymentDataYooMoney.php +++ b/lib/Request/Payments/PaymentData/PaymentDataYooMoney.php @@ -32,7 +32,7 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель PaymentMethodDataYooMoney. * - * Данные для проведения оплаты через ЮMoney. + * Данные для проведения оплаты из кошелька ЮMoney. * * @category Class * @package YooKassa\Request diff --git a/lib/Request/Payments/PaymentsResponse.php b/lib/Request/Payments/PaymentsResponse.php index f55bf6be..2704c0fc 100644 --- a/lib/Request/Payments/PaymentsResponse.php +++ b/lib/Request/Payments/PaymentsResponse.php @@ -42,12 +42,17 @@ use YooKassa\Validator\Constraints as Assert; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property PaymentInterface[]|ListObjectInterface|null $items Массив платежей + * @property PaymentInterface[]|ListObjectInterface|null $items Список платежей, созданных за последние три года. Платежи отсортированы по времени создания в порядке убывания (от новых к старым). */ class PaymentsResponse extends AbstractListResponse { /** - * @var PaymentInterface[]|ListObjectInterface|null Массив платежей + * Список платежей, созданных за последние три года. + * Платежи отсортированы по времени создания в порядке убывания (от новых к старым). + * Если результатов больше, чем задано в limit, список будет выводиться фрагментами. + * В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. + * + * @var PaymentInterface[]|ListObjectInterface|null Список платежей */ #[Assert\Valid] #[Assert\AllType(PaymentResponse::class)] diff --git a/lib/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbp.php b/lib/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbp.php index 5c9e87d8..fb854046 100644 --- a/lib/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbp.php +++ b/lib/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbp.php @@ -44,9 +44,6 @@ use YooKassa\Validator\Constraints as Assert; */ class PayoutDestinationDataSbp extends AbstractPayoutDestinationData { - /** @var int Максимальная длина строки id банка. */ - public const MAX_LENGTH_BANK_ID = 12; - /** * Телефон, к которому привязан счет получателя выплаты в системе участника СБП. * @@ -58,14 +55,14 @@ class PayoutDestinationDataSbp extends AbstractPayoutDestinationData private ?string $_phone = null; /** - * Идентификатор участника СБП — банка или платежного сервиса, подключенного к сервису. - * Максимум 12 символов. [Как получить идентификатор участника СБП](/developers/payouts/making-payouts/sbp) + * Идентификатор выбранного участника СБП — банка или платежного сервиса, подключенного к сервису. + * Формат: 12 символов. [Как получить идентификатор участника СБП](https://yookassa.ru/developers/payouts/making-payouts/sbp) * * @var string|null */ #[Assert\NotBlank] #[Assert\Type('string')] - #[Assert\Length(max: self::MAX_LENGTH_BANK_ID)] + #[Assert\Regex("/^[a-zA-Z0-9]{12}$/")] private ?string $_bank_id = null; /** diff --git a/lib/Request/Payouts/SbpBanksResponse.php b/lib/Request/Payouts/SbpBanksResponse.php index c73d2e96..bc3e2cbb 100644 --- a/lib/Request/Payouts/SbpBanksResponse.php +++ b/lib/Request/Payouts/SbpBanksResponse.php @@ -35,7 +35,8 @@ use YooKassa\Validator\Constraints as Assert; /** * Класс, представляющий модель SbpBanksResponse. * - * Список участников СБП, отсортированный по идентификатору участника в порядке убывания (desc). + * Список участников СБП. + * Участники СБП отсортированы по идентификатору участника в порядке убывания. * * @category Class * @package YooKassa\Request diff --git a/lib/Request/Receipts/ReceiptsResponse.php b/lib/Request/Receipts/ReceiptsResponse.php index 19566f6b..aa430ded 100644 --- a/lib/Request/Receipts/ReceiptsResponse.php +++ b/lib/Request/Receipts/ReceiptsResponse.php @@ -39,12 +39,15 @@ use YooKassa\Validator\Constraints as Assert; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property AbstractReceiptResponse[]|ListObjectInterface|null $items Список чеков. Чеки отсортированы по времени создания в порядке убывания (desc) + * @property AbstractReceiptResponse[]|ListObjectInterface|null $items Список чеков, созданных за последние три года. Чеки отсортированы по времени создания в порядке убывания (от новых к старым). */ class ReceiptsResponse extends AbstractListResponse { /** - * Список чеков. + * Список чеков, созданных за последние три года. + * Чеки отсортированы по времени создания в порядке убывания (от новых к старым). + * Если результатов больше, чем задано в limit, список будет выводиться фрагментами. + * В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. * * @var AbstractReceiptResponse[]|ListObjectInterface|null Список чеков */ diff --git a/lib/Request/Refunds/RefundsResponse.php b/lib/Request/Refunds/RefundsResponse.php index 4b7b848e..c6806189 100644 --- a/lib/Request/Refunds/RefundsResponse.php +++ b/lib/Request/Refunds/RefundsResponse.php @@ -42,12 +42,17 @@ use YooKassa\Validator\Constraints as Assert; * @author cms@yoomoney.ru * @link https://yookassa.ru/developers/api * - * @property RefundInterface[]|ListObjectInterface|null $items Массив возвратов + * @property RefundInterface[]|ListObjectInterface|null $items Список возвратов, созданных за последние три года. Возвраты отсортированы по времени создания в порядке убывания (от новых к старым). */ class RefundsResponse extends AbstractListResponse { /** - * @var RefundInterface[]|ListObjectInterface|null Массив возвратов + * Список возвратов, созданных за последние три года. + * Возвраты отсортированы по времени создания в порядке убывания (от новых к старым). + * Если результатов больше, чем задано в limit, список будет выводиться фрагментами. + * В этом случае в ответе на запрос вернется фрагмент списка и параметр next_cursor с указателем на следующий фрагмент. + * + * @var RefundInterface[]|ListObjectInterface|null Список возвратов */ #[Assert\Valid] #[Assert\AllType(RefundResponse::class)] diff --git a/lib/Request/SelfEmployed/SelfEmployedRequestConfirmationFactory.php b/lib/Request/SelfEmployed/SelfEmployedRequestConfirmationFactory.php index 74323d82..e1afa334 100644 --- a/lib/Request/SelfEmployed/SelfEmployedRequestConfirmationFactory.php +++ b/lib/Request/SelfEmployed/SelfEmployedRequestConfirmationFactory.php @@ -51,7 +51,7 @@ class SelfEmployedRequestConfirmationFactory /** * Возвращает объект, соответствующий типу подтверждения платежа. * - * @param string $type Тип подтверждения платежа + * @param string $type Код сценария подтверждения */ public function factory(string $type): SelfEmployedRequestConfirmation { @@ -67,7 +67,7 @@ class SelfEmployedRequestConfirmationFactory * Возвращает объект, соответствующий типу подтверждения платежа, из массива данных. * * @param array $data Массив данных подтверждения платежа - * @param null|string $type Тип подтверждения платежа + * @param null|string $type Код сценария подтверждения * * @return SelfEmployedRequestConfirmation */ diff --git a/tests/Client/ClientTest.php b/tests/Client/ClientTest.php index 83e6f9f6..ff8a76d9 100644 --- a/tests/Client/ClientTest.php +++ b/tests/Client/ClientTest.php @@ -24,6 +24,7 @@ use YooKassa\Common\Exceptions\AuthorizeException; use YooKassa\Common\Exceptions\BadApiRequestException; use YooKassa\Common\Exceptions\ExtensionNotFoundException; use YooKassa\Common\Exceptions\ForbiddenException; +use YooKassa\Common\Exceptions\GoneException; use YooKassa\Common\Exceptions\InternalServerError; use YooKassa\Common\Exceptions\NotFoundException; use YooKassa\Common\Exceptions\ResponseProcessingException; @@ -193,6 +194,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -984,7 +986,7 @@ class ClientTest extends TestCase ->method('sendRequest') ->willReturn([ ['Header-Name' => 'HeaderValue'], - '{"description": "error_msg", "code": "error_code", "parameter_name": "parameter_name"}', + '{"description": "error_msg", "code": "invalid_request", "parameter": "parameter_name"}', ['http_code' => 400], ]) ; @@ -1012,7 +1014,7 @@ class ClientTest extends TestCase ->method('sendRequest') ->willReturn([ ['Header-Name' => 'HeaderValue'], - '{"description": "error_msg", "code": "error_code"}', + '{"description": "error_msg", "code": "internal_server_error"}', ['http_code' => 500], ]) ; @@ -1068,7 +1070,7 @@ class ClientTest extends TestCase ->method('sendRequest') ->willReturn([ ['Header-Name' => 'HeaderValue'], - '{"description": "error_msg","error_code": "error_code", "parameter_name": "parameter_name", "operation_name": "operation_name"}', + '{"type": "error", "description": "error_msg", "code": "forbidden", "parameter": "parameter_name", "operation_name": "operation_name"}', ['http_code' => 403], ]) ; @@ -1090,7 +1092,7 @@ class ClientTest extends TestCase ->method('sendRequest') ->willReturn([ ['Header-Name' => 'HeaderValue'], - '{"description": "error_msg","error_code": "error_code", "parameter_name": "parameter_name", "operation_name": "operation_name"}', + '{"type": "error", "description": "error_msg", "code": "not_found", "parameter": "parameter_name", "operation": "operation_name"}', ['http_code' => 404], ]) ; @@ -1104,6 +1106,28 @@ class ClientTest extends TestCase ; } + public function testGoneException(): void + { + $curlClientStub = $this->getCurlClientStub(); + $curlClientStub + ->expects($this->any()) + ->method('sendRequest') + ->willReturn([ + ['Header-Name' => 'HeaderValue'], + '{"type": "error", "description": "error_msg", "code": "gone", "parameter": "parameter_name", "operation": "operation_name"}', + ['http_code' => 410], + ]) + ; + $this->expectException(GoneException::class); + + $apiClient = new Client(); + $response = $apiClient + ->setApiClient($curlClientStub) + ->setAuth('123456', 'shopPassword') + ->getPaymentInfo(Random::str(36)) + ; + } + public function testToManyRequestsException(): void { $curlClientStub = $this->getCurlClientStub(); @@ -1112,7 +1136,7 @@ class ClientTest extends TestCase ->method('sendRequest') ->willReturn([ ['Header-Name' => 'HeaderValue'], - '{"description": "error_msg","error_code": "error_code", "parameter_name": "parameter_name", "operation_name": "operation_name"}', + '{"type": "error", "description": "error_msg", "code": "too_many_requests", "parameter": "parameter_name", "operation": "operation_name"}', ['http_code' => 429], ]) ; @@ -1408,6 +1432,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -1512,6 +1537,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -1759,6 +1785,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -1791,6 +1818,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -1986,6 +2014,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2017,6 +2046,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2083,6 +2113,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2267,6 +2298,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2296,6 +2328,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2364,6 +2397,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2552,6 +2586,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2597,6 +2632,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2669,6 +2705,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); return; } @@ -2815,6 +2852,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); } } @@ -2885,6 +2923,7 @@ class ClientTest extends TestCase self::fail('Исключение не было выброшено'); } catch (ResponseProcessingException $e) { self::assertEquals(Client::DEFAULT_DELAY, $e->retryAfter); + self::assertEquals(Client::DEFAULT_DELAY, $e->getError()->getRetryAfter()); } } @@ -2910,7 +2949,7 @@ class ClientTest extends TestCase { return [ [NotFoundException::HTTP_CODE, '{}', NotFoundException::class], - [BadApiRequestException::HTTP_CODE, '{}', BadApiRequestException::class], + [GoneException::HTTP_CODE, '{}', GoneException::class], [BadApiRequestException::HTTP_CODE, '{}', BadApiRequestException::class], [ForbiddenException::HTTP_CODE, '{}', ForbiddenException::class], [UnauthorizedException::HTTP_CODE, '{}', UnauthorizedException::class], diff --git a/tests/Common/Exceptions/AbstractTestApiRequestException.php b/tests/Common/Exceptions/AbstractTestApiRequestException.php index bd8ed48f..117dd2ed 100644 --- a/tests/Common/Exceptions/AbstractTestApiRequestException.php +++ b/tests/Common/Exceptions/AbstractTestApiRequestException.php @@ -2,6 +2,8 @@ namespace Tests\YooKassa\Common\Exceptions; +use YooKassa\Common\Errors\ErrorCode; + abstract class AbstractTestApiRequestException extends ApiExceptionTest { /** @@ -12,13 +14,13 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest $instance = $this->getTestInstance('', 0, [], $body); $tmp = json_decode($body, true); if (empty($tmp['description'])) { - self::assertEquals('', $instance->getMessage()); + self::assertNull($instance->getError()->getDescription()); } else { - self::assertEquals($tmp['description'] . '.', $instance->getMessage()); + self::assertEquals($tmp['description'], $instance->getError()->getDescription()); } } - public static function descriptionDataProvider() + public static function descriptionDataProvider(): array { return [ ['{}'], @@ -34,19 +36,22 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest { $instance = $this->getTestInstance('', 0, [], $body); $tmp = json_decode($body, true); - if (empty($tmp['code'])) { - self::assertEquals('', $instance->getMessage()); + if (empty($tmp['code']) || !in_array($tmp['code'], ErrorCode::getValidValues(), true)) { + self::assertEquals('unknown', $instance->getError()->getCode()); } else { - self::assertEquals('Error code: ' . $tmp['code'] . '.', $instance->getMessage()); + self::assertEquals($tmp['code'], $instance->getError()->getCode()); } } - public static function codeDataProvider() + public static function codeDataProvider(): array { return [ ['{}'], ['{"code":"123"}'], ['{"code":"server_error"}'], + ['{"code":"internal_server_error"}'], + ['{"code":"error"}'], + ['{"code":"invalid_credentials"}'], ]; } @@ -58,13 +63,13 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest $instance = $this->getTestInstance('', 0, [], $body); $tmp = json_decode($body, true); if (empty($tmp['parameter'])) { - self::assertEquals('', $instance->getMessage()); + self::assertNull($instance->getError()->getParameter()); } else { - self::assertEquals('Parameter name: ' . $tmp['parameter'] . '.', $instance->getMessage()); + self::assertEquals($tmp['parameter'], $instance->getError()->getParameter()); } } - public static function parameterDataProvider() + public static function parameterDataProvider(): array { return [ ['{}'], @@ -84,10 +89,11 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest self::assertNull($instance->retryAfter); } else { self::assertEquals($tmp['retry_after'], $instance->retryAfter); + self::assertEquals($tmp['retry_after'], $instance->getError()->getRetryAfter()); } } - public static function retryAfterDataProvider() + public static function retryAfterDataProvider(): array { return [ ['{}'], @@ -105,12 +111,14 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest $tmp = json_decode($body, true); if (empty($tmp['type'])) { self::assertNull($instance->type); + self::assertNull($instance->getError()->getType()); } else { self::assertEquals($tmp['type'], $instance->type); + self::assertEquals($tmp['type'], $instance->getError()->getType()); } } - public static function typeDataProvider() + public static function typeDataProvider(): array { return [ ['{}'], @@ -133,27 +141,33 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest if (!empty($tmp['description'])) { $message = $tmp['description'] . '. '; } - if (!empty($tmp['code'])) { + if (empty($tmp['code']) || !in_array($tmp['code'], ErrorCode::getValidValues(), true)) { + $message .= 'Error code: unknown. '; + } else { $message .= 'Error code: ' . $tmp['code'] . '. '; } if (!empty($tmp['parameter'])) { $message .= 'Parameter name: ' . $tmp['parameter'] . '. '; } - self::assertEquals(trim($message), $instance->getMessage()); + self::assertEquals(trim($message), trim($instance->getMessage())); if (empty($tmp['retry_after'])) { self::assertNull($instance->retryAfter); + self::assertNull($instance->getError()->getRetryAfter()); } else { self::assertEquals($tmp['retry_after'], $instance->retryAfter); + self::assertEquals($tmp['retry_after'], $instance->getError()->getRetryAfter()); } if (empty($tmp['type'])) { self::assertNull($instance->type); + self::assertNull($instance->getError()->getType()); } else { self::assertEquals($tmp['type'], $instance->type); + self::assertEquals($tmp['type'], $instance->getError()->getType()); } } - public static function messageDataProvider() + public static function messageDataProvider(): array { return [ ['{}'], @@ -177,7 +191,7 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest $message = 'Test message'; $code = $this->expectedHttpCode(); $responseHeaders = ['Content-Type' => 'application/json']; - $responseBody = '{"type": "error", "id": "test_id", "code": "test_code", "description": "Test description", "parameter": "test_parameter"}'; + $responseBody = '{"type": "error", "id": "test_id", "code": "unknown", "description": "Test description", "parameter": "test_parameter"}'; $exception = $this->getTestInstance($message, $code, $responseHeaders, $responseBody); @@ -186,9 +200,13 @@ abstract class AbstractTestApiRequestException extends ApiExceptionTest $this->assertEquals($responseBody, $exception->getResponseBody()); $this->assertEquals('test_id', $exception->getErrorId()); - $this->assertEquals('Test description. Error code: test_code. Parameter name: test_parameter.', $exception->getMessage()); - $this->assertEquals('test_code', $exception->getErrorCode()); + $this->assertEquals('test_id', $exception->getError()->getId()); + $this->assertEquals('Test description. Error code: unknown. Parameter name: test_parameter.', $exception->getMessage()); + $this->assertEquals('unknown', $exception->getErrorCode()); + $this->assertEquals('unknown', $exception->getError()->getCode()); $this->assertEquals('Test description', $exception->getErrorDescription()); + $this->assertEquals('Test description', $exception->getError()->getDescription()); $this->assertEquals('test_parameter', $exception->getErrorParameter()); + $this->assertEquals('test_parameter', $exception->getError()->getParameter()); } } diff --git a/tests/Common/Exceptions/ForbiddenExceptionTest.php b/tests/Common/Exceptions/ForbiddenExceptionTest.php index 5efefe20..998c123e 100644 --- a/tests/Common/Exceptions/ForbiddenExceptionTest.php +++ b/tests/Common/Exceptions/ForbiddenExceptionTest.php @@ -9,12 +9,12 @@ use YooKassa\Common\Exceptions\ForbiddenException; */ class ForbiddenExceptionTest extends AbstractTestApiRequestException { - public function getTestInstance($message = '', $code = 0, $responseHeaders = [], $responseBody = '') + public function getTestInstance($message = '', $code = 0, $responseHeaders = [], $responseBody = ''): ForbiddenException { return new ForbiddenException($responseHeaders, $responseBody); } - public function expectedHttpCode() + public function expectedHttpCode(): int { return ForbiddenException::HTTP_CODE; } diff --git a/tests/Common/Exceptions/GoneExceptionTest.php b/tests/Common/Exceptions/GoneExceptionTest.php new file mode 100644 index 00000000..4b77ab0d --- /dev/null +++ b/tests/Common/Exceptions/GoneExceptionTest.php @@ -0,0 +1,21 @@ +getTestInstance('', 0, [], $body); $tmp = json_decode($body, true); if (empty($tmp['description'])) { - self::assertEquals('', $instance->getMessage()); + self::assertEquals('Error code: unknown.', $instance->getMessage()); } else { - self::assertEquals($tmp['description'] . '.', $instance->getMessage()); + self::assertEquals($tmp['description'] . '. Error code: unknown.', $instance->getMessage()); } } - public static function descriptionDataProvider() + public static function descriptionDataProvider(): array { return [ ['{}'], @@ -56,7 +57,7 @@ class ResponseProcessingExceptionTest extends ApiExceptionTest } } - public static function retryAfterDataProvider() + public static function retryAfterDataProvider(): array { return [ ['{}'], @@ -79,7 +80,7 @@ class ResponseProcessingExceptionTest extends ApiExceptionTest } } - public static function typeDataProvider() + public static function typeDataProvider(): array { return [ ['{}'], @@ -99,31 +100,44 @@ class ResponseProcessingExceptionTest extends ApiExceptionTest $tmp = json_decode($body, true); $message = ''; + if (!empty($tmp['description'])) { - $message = $tmp['description'] . '.'; + $message = $tmp['description'] . '. '; } - self::assertEquals($message, $instance->getMessage()); + if (empty($tmp['code']) || !in_array($tmp['code'], ErrorCode::getValidValues(), true)) { + $message .= 'Error code: unknown. '; + } else { + $message .= 'Error code: ' . $tmp['code'] . '. '; + } + if (!empty($tmp['parameter'])) { + $message .= 'Parameter name: ' . $tmp['parameter'] . '. '; + } + self::assertEquals(trim($message), trim($instance->getMessage())); if (empty($tmp['retry_after'])) { self::assertNull($instance->retryAfter); + self::assertNull($instance->getError()->getRetryAfter()); } else { self::assertEquals($tmp['retry_after'], $instance->retryAfter); + self::assertEquals($tmp['retry_after'], $instance->getError()->getRetryAfter()); } if (empty($tmp['type'])) { self::assertNull($instance->type); + self::assertNull($instance->getError()->getType()); } else { self::assertEquals($tmp['type'], $instance->type); + self::assertEquals($tmp['type'], $instance->getError()->getType()); } } - public static function messageDataProvider() + public static function messageDataProvider(): array { return [ ['{}'], - ['{"code":"server_error","description":"Internal server error"}'], - ['{"code":"server_error","description":"Invalid parameter value","parameter":"shop_id"}'], - ['{"code":"server_error","description":"Invalid parameter value","parameter":"shop_id","type":"test"}'], - ['{"code":"server_error","description":"Invalid parameter value","parameter":"shop_id","retry_after":333}'], + ['{"code":"internal_server_error","description":"Internal server error"}'], + ['{"code":"internal_server_error","description":"Invalid parameter value","parameter":"shop_id"}'], + ['{"code":"internal_server_error","description":"Invalid parameter value","parameter":"shop_id","type":"test"}'], + ['{"code":"internal_server_error","description":"Invalid parameter value","parameter":"shop_id","retry_after":333}'], ]; } diff --git a/tests/Model/Payment/PaymentMethod/PaymentMethodSberBnplTest.php b/tests/Model/Payment/PaymentMethod/PaymentMethodSberBnplTest.php new file mode 100644 index 00000000..d1dd77e5 --- /dev/null +++ b/tests/Model/Payment/PaymentMethod/PaymentMethodSberBnplTest.php @@ -0,0 +1,103 @@ +object = $this->getMockBuilder(PaymentMethodSberBnpl::class)->getMockForAbstractClass(); + $this->assertTrue(class_exists(PaymentMethodSberBnpl::class)); + $this->assertInstanceOf(PaymentMethodSberBnpl::class, $this->object); + } + + /** + * Test property "type" + * + * @return void + * @throws Exception + */ + public function testType(): void + { + $instance = $this->getTestInstance(); + self::assertContains($instance->getType(), ['sber_bnpl']); + self::assertContains($instance->type, ['sber_bnpl']); + self::assertNotNull($instance->getType()); + self::assertNotNull($instance->type); + } + + /** + * Test invalid property "type" + * @dataProvider invalidTypeDataProvider + * @param mixed $value + * @param string $exceptionClass + * + * @return void + */ + public function testInvalidType(mixed $value, string $exceptionClass): void + { + $instance = $this->getTestInstance(); + + $this->expectException($exceptionClass); + $instance->setType($value); + } + + /** + * @return array[] + * @throws Exception + */ + public function invalidTypeDataProvider(): array + { + $instance = $this->getTestInstance(); + return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_type')); + } + +} diff --git a/tests/Model/Payment/PaymentMethod/PaymentMethodSberLoanTest.php b/tests/Model/Payment/PaymentMethod/PaymentMethodSberLoanTest.php index 1f543561..6702033e 100644 --- a/tests/Model/Payment/PaymentMethod/PaymentMethodSberLoanTest.php +++ b/tests/Model/Payment/PaymentMethod/PaymentMethodSberLoanTest.php @@ -219,4 +219,67 @@ class PaymentMethodSberLoanTest extends AbstractTestCase $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_discount_amount')); } + + /** + * Test property "suspended_until" + * @dataProvider validSuspendedUntilDataProvider + * @param mixed $value + * + * @return void + * @throws Exception + */ + public function testSuspendedUntil(mixed $value): void + { + $instance = $this->getTestInstance(); + self::assertEmpty($instance->getSuspendedUntil()); + self::assertEmpty($instance->suspended_until); + $instance->setSuspendedUntil($value); + if (!empty($value)) { + self::assertNotNull($instance->getSuspendedUntil()); + self::assertNotNull($instance->suspended_until); + if ($value instanceof Datetime) { + self::assertEquals($value, $instance->getSuspendedUntil()); + self::assertEquals($value, $instance->suspended_until); + } else { + self::assertEquals(new Datetime($value), $instance->getSuspendedUntil()); + self::assertEquals(new Datetime($value), $instance->suspended_until); + } + } + } + + /** + * Test invalid property "suspended_until" + * @dataProvider invalidSuspendedUntilDataProvider + * @param mixed $value + * @param string $exceptionClass + * + * @return void + */ + public function testInvalidSuspendedUntil(mixed $value, string $exceptionClass): void + { + $instance = $this->getTestInstance(); + + $this->expectException($exceptionClass); + $instance->setSuspendedUntil($value); + } + + /** + * @return array[] + * @throws Exception + */ + public function validSuspendedUntilDataProvider(): array + { + $instance = $this->getTestInstance(); + return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_suspended_until')); + } + + /** + * @return array[] + * @throws Exception + */ + public function invalidSuspendedUntilDataProvider(): array + { + $instance = $this->getTestInstance(); + return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_suspended_until')); + } } diff --git a/tests/Model/Payment/PaymentMethod/SbpPayerBankDetailsTest.php b/tests/Model/Payment/PaymentMethod/SbpPayerBankDetailsTest.php index 52df2c61..2ced75a8 100644 --- a/tests/Model/Payment/PaymentMethod/SbpPayerBankDetailsTest.php +++ b/tests/Model/Payment/PaymentMethod/SbpPayerBankDetailsTest.php @@ -77,8 +77,8 @@ class SbpPayerBankDetailsTest extends AbstractTestCase self::assertEquals($value, $instance->bank_id); self::assertMatchesRegularExpression("/[a-zA-Z0-9]{12}/", $instance->getBankId()); self::assertMatchesRegularExpression("/[a-zA-Z0-9]{12}/", $instance->bank_id); - self::assertLessThanOrEqual(12, is_string($instance->getBankId()) ? mb_strlen($instance->getBankId()) : $instance->getBankId()); - self::assertLessThanOrEqual(12, is_string($instance->bank_id) ? mb_strlen($instance->bank_id) : $instance->bank_id); + self::assertEquals(12, is_string($instance->getBankId()) ? mb_strlen($instance->getBankId()) : $instance->getBankId()); + self::assertEquals(12, is_string($instance->bank_id) ? mb_strlen($instance->bank_id) : $instance->bank_id); } /** diff --git a/tests/Model/Payout/PayoutDestinationFactoryTest.php b/tests/Model/Payout/PayoutDestinationFactoryTest.php index 27c14e5c..76ba9b99 100644 --- a/tests/Model/Payout/PayoutDestinationFactoryTest.php +++ b/tests/Model/Payout/PayoutDestinationFactoryTest.php @@ -174,7 +174,7 @@ class PayoutDestinationFactoryTest extends TestCase [ 'type' => PaymentMethodType::SBP, 'phone' => Random::str(4, 15, '1234567890'), - 'bank_id' => Random::str(4, 12), + 'bank_id' => Random::str(12, 12, '0123456789'), ], ], ]; diff --git a/tests/Request/Payments/PaymentData/PaymentDataFactoryTest.php b/tests/Request/Payments/PaymentData/PaymentDataFactoryTest.php index 4a978fc9..076d7b3f 100644 --- a/tests/Request/Payments/PaymentData/PaymentDataFactoryTest.php +++ b/tests/Request/Payments/PaymentData/PaymentDataFactoryTest.php @@ -173,6 +173,12 @@ class PaymentDataFactoryTest extends TestCase 'phone' => Random::str(4, 15, '0123456789'), ], ], + [ + [ + 'type' => PaymentMethodType::SBER_BNPL, + 'phone' => Random::str(4, 15, '0123456789'), + ], + ], [ [ 'type' => PaymentMethodType::YOO_MONEY, diff --git a/tests/Request/Payments/PaymentData/PaymentDataSberBnplTest.php b/tests/Request/Payments/PaymentData/PaymentDataSberBnplTest.php new file mode 100644 index 00000000..1c2027ce --- /dev/null +++ b/tests/Request/Payments/PaymentData/PaymentDataSberBnplTest.php @@ -0,0 +1,121 @@ +object = $this->getMockBuilder(PaymentDataSberBnpl::class)->getMockForAbstractClass(); + $this->assertTrue(class_exists(PaymentDataSberBnpl::class)); + $this->assertInstanceOf(PaymentDataSberBnpl::class, $this->object); + } + + /** + * Test property "phone" + * @dataProvider validPhoneDataProvider + * @param mixed $value + * + * @return void + * @throws Exception + */ + public function testPhone(mixed $value): void + { + $instance = $this->getTestInstance(); + self::assertEmpty($instance->getPhone()); + self::assertEmpty($instance->phone); + $instance->setPhone($value); + self::assertEquals($value, $instance->getPhone()); + self::assertEquals($value, $instance->phone); + if (!empty($value)) { + self::assertNotNull($instance->getPhone()); + self::assertNotNull($instance->phone); + self::assertMatchesRegularExpression("/[0-9]{4,15}/", $instance->getPhone()); + self::assertMatchesRegularExpression("/[0-9]{4,15}/", $instance->phone); + } + } + + /** + * Test invalid property "phone" + * @dataProvider invalidPhoneDataProvider + * @param mixed $value + * @param string $exceptionClass + * + * @return void + */ + public function testInvalidPhone(mixed $value, string $exceptionClass): void + { + $instance = $this->getTestInstance(); + + $this->expectException($exceptionClass); + $instance->setPhone($value); + } + + /** + * @return array[] + * @throws Exception + */ + public function validPhoneDataProvider(): array + { + $instance = $this->getTestInstance(); + return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_phone')); + } + + /** + * @return array[] + * @throws Exception + */ + public function invalidPhoneDataProvider(): array + { + $instance = $this->getTestInstance(); + return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_phone')); + } +} diff --git a/tests/Request/Payouts/AbstractTestPayoutResponse.php b/tests/Request/Payouts/AbstractTestPayoutResponse.php index d6992bdb..9b04a9e1 100644 --- a/tests/Request/Payouts/AbstractTestPayoutResponse.php +++ b/tests/Request/Payouts/AbstractTestPayoutResponse.php @@ -207,7 +207,7 @@ abstract class AbstractTestPayoutResponse extends TestCase PayoutDestinationType::SBP => [ 'type' => PaymentMethodType::SBP, 'phone' => Random::str(4, 15, '0123456789'), - 'bank_id' => Random::str(4, 12, '0123456789'), + 'bank_id' => Random::str(12, 12, '0123456789'), 'recipient_checked' => Random::bool(), ] ]; diff --git a/tests/Request/Payouts/CreatePayoutRequestBuilderTest.php b/tests/Request/Payouts/CreatePayoutRequestBuilderTest.php index 4ca0505c..f8d4df8b 100644 --- a/tests/Request/Payouts/CreatePayoutRequestBuilderTest.php +++ b/tests/Request/Payouts/CreatePayoutRequestBuilderTest.php @@ -356,7 +356,7 @@ class CreatePayoutRequestBuilderTest extends TestCase [ 'type' => PaymentMethodType::SBP, 'phone' => Random::str(4, 15, '0123456789'), - 'bank_id' => Random::str(4, 12, '0123456789'), + 'bank_id' => Random::str(12, 12, '0123456789'), ], ]; } diff --git a/tests/Request/Payouts/CreatePayoutRequestSerializerTest.php b/tests/Request/Payouts/CreatePayoutRequestSerializerTest.php index 753dc9e7..a828d9c8 100644 --- a/tests/Request/Payouts/CreatePayoutRequestSerializerTest.php +++ b/tests/Request/Payouts/CreatePayoutRequestSerializerTest.php @@ -139,7 +139,7 @@ class CreatePayoutRequestSerializerTest extends TestCase [ 'type' => PaymentMethodType::SBP, 'phone' => Random::str(4, 15, '0123456789'), - 'bank_id' => Random::str(4, 12, '0123456789'), + 'bank_id' => Random::str(12, 12, '0123456789'), ], ]; } diff --git a/tests/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbpTest.php b/tests/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbpTest.php index 3709a64c..38789979 100644 --- a/tests/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbpTest.php +++ b/tests/Request/Payouts/PayoutDestinationData/PayoutDestinationDataSbpTest.php @@ -172,10 +172,10 @@ class PayoutDestinationDataSbpTest extends AbstractTestCase $instance->setBankId($value); self::assertNotNull($instance->getBankId()); self::assertNotNull($instance->bank_id); - self::assertEquals($value, is_array($value) ? $instance->getBankId()->toArray() : $instance->getBankId()); - self::assertEquals($value, is_array($value) ? $instance->bank_id->toArray() : $instance->bank_id); - self::assertLessThanOrEqual(12, is_string($instance->getBankId()) ? mb_strlen($instance->getBankId()) : $instance->getBankId()); - self::assertLessThanOrEqual(12, is_string($instance->bank_id) ? mb_strlen($instance->bank_id) : $instance->bank_id); + self::assertEquals($value, $instance->getBankId()); + self::assertEquals($value, $instance->bank_id); + self::assertMatchesRegularExpression("/[a-zA-Z0-9]{12}/", $instance->bank_id); + self::assertMatchesRegularExpression("/[a-zA-Z0-9]{12}/", $instance->getBankId()); } /**