Class: JeraPayment::Services::Iugu::Subscriptions::Update

Inherits:
Base
  • Object
show all
Defined in:
lib/jera_payment/services/iugu/subscriptions/update.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
# File 'lib/jera_payment/services/iugu/subscriptions/update.rb', line 6

def call
  iugu_subscription = JeraPayment::Api::Iugu::Subscription.update(@resource.api_id, @attributes.merge({customer_id: @resource.customer.api_id}),
                                                                  @resource&.customer&.&.api_token)

  add_error(iugu_subscription[:errors]) if iugu_subscription[:errors].present?

  @resource.errors.blank?
end