Class: JeraPayment::Services::Iugu::Withdrawals::Create

Inherits:
Base
  • Object
show all
Defined in:
lib/jera_payment/services/iugu/withdrawals/create.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from JeraPayment::Services::Iugu::Base

Instance Method Details

#callObject



6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/jera_payment/services/iugu/withdrawals/create.rb', line 6

def call
  iugu_withdrawal = JeraPayment::Api::Iugu::Withdrawal.request_withdrawal(@resource&.&., @attributes,
                                                                          @resource&.&.api_token)

  if iugu_withdrawal[:errors].present?
    add_error(iugu_withdrawal[:errors])
  else
    set_api_attributes(iugu_withdrawal)
  end

  @resource.errors.blank?
end