Class: Moneta::Api::Types::TransactionBatchResponseType
- Inherits:
-
Object
- Object
- Moneta::Api::Types::TransactionBatchResponseType
- Includes:
- DataMapper
- Defined in:
- lib/moneta/api/types/transaction_batch_response_type.rb
Overview
Тип, описывающий атрибуты операции в ответах в пакетном запросе. Transaction attributes type for responses in batch processing mode.
Instance Method Summary collapse
-
#error ⇒ String
Поле содержит описание ошибки, если операция не была проведена.
-
#error_code ⇒ String
Поле содержит код ошибки.
- #transaction ⇒ Moneta::Api::Types::TransactionResponseType
Methods included from DataMapper
Instance Method Details
#error ⇒ String
Returns Поле содержит описание ошибки, если операция не была проведена. В этом случае поле transaction - пустое. Если операция проведена, то поле error пустое, а поле transaction содержит детали операции. / Error description in case of tranfer processing failure. If transfer processed successfully "error" is empty and "transaction" element contains transaction details.
16 |
# File 'lib/moneta/api/types/transaction_batch_response_type.rb', line 16 property :error |
#error_code ⇒ String
Returns Поле содержит код ошибки. Поле заполнено только тогда, когда есть описание ошибки в поле error. Для получения этого поля в запросе необходимо выставлять атрибут version равный или больше VERSION_2. Коды ошибок совпадают со значением элемента faultDetail (смотрите описание для этого элемента). / The field contains error code. The field "errorCode" is specified if the field "error" is present and contains error description. For retrieving errorCode the request attribute "version" has to be set to "VERSION_2" or grater. Error codes values correspond to "faultDetail" description.
25 |
# File 'lib/moneta/api/types/transaction_batch_response_type.rb', line 25 property :error_code |
#transaction ⇒ Moneta::Api::Types::TransactionResponseType
19 |
# File 'lib/moneta/api/types/transaction_batch_response_type.rb', line 19 property :transaction, type: Types::TransactionResponseType |