Sha256: 5b4cc69c5c042e2de45bf82c283af16de58fa7cb34e8361ad78f83d45bd3f9b3
Contents?: true
Size: 506 Bytes
Versions: 21
Compression:
Stored size: 506 Bytes
Contents
module Moneta module Api module Responses class FindBankAccountsResponse include Moneta::Api::DataMapper # Ответ, который содержит список банковских счетов. # Bank Accounts searching response containing the list of bank accounts. property :bank_account, type: BankAccountInfo def get_account(number) bank_account.detect { |account| account.id == number.to_s } end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems