Sha256: de88c119a1a7458cb28a2b45ecf5fdb112ffc2586bb60bf0b989ebed62c9e3cb
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
module Moneta module Api module Requests # Запрос на создание банковских реквизитов. # Request for adding information about your bank account to your MONETA.RU profile. class CreateBankAccountRequest include Moneta::Api::DataMapper # @return [Integer] ID банковских реквизитов. # / Bank account ID. property :id # @return [Integer] Пользователь, которому будут принадлежать банковские реквизиты. # / Если это поле не задано, то банковские реквизиты создаются для текущего пользователя. # / The unique identifier of the user who will own the bank account. # / If you omit this element, MONETA.RU uses the ID of the user who sends the request. property :unit_id property :profile_id # @return [Moneta::Api::Types::BankAccountType] Расширенные атрибуты. # / Specifies extended attributes. property :attribute, type: Moneta::Api::Types::BankAccountType end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
moneta-api-1.2.0 | lib/moneta/api/requests/create_bank_account_request.rb |
moneta-api-1.1.0 | lib/moneta/api/requests/create_bank_account_request.rb |