Class: StripeModelCallbacks::TaxRate::UpdatedService

Inherits:
BaseEventService
  • Object
show all
Defined in:
app/services/stripe_model_callbacks/tax_rate/updated_service.rb

Instance Method Summary collapse

Instance Method Details

#performObject



2
3
4
5
6
7
8
9
10
11
# File 'app/services/stripe_model_callbacks/tax_rate/updated_service.rb', line 2

def perform
  tax_rate.assign_from_stripe(object)

  if tax_rate.save
    create_activity if event
    succeed! tax_rate
  else
    fail! tax_rate.errors.full_messages
  end
end