ssnikolay/moneta-api

View on GitHub
lib/moneta/api/responses/edit_bank_account_response.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Moneta
  module Api
    module Responses
      class EditBankAccountResponse
        include Moneta::Api::DataMapper

        # @return [Boolean] Статус операции, всегда true
        #   / Operation status. Always is true.
        property :success, read_only: true

        def fill(_)
          @success = true
          self
        end
      end
    end
  end
end