Class: StripeCoupon
Instance Attribute Summary
#stripe_object
Class Method Summary
collapse
Instance Method Summary
collapse
check_object_is_stripe_class, #check_object_is_stripe_class, create_from_stripe!, create_on_stripe!, #destroy_on_stripe, #destroy_on_stripe!, #reload!, #reload_from_stripe!, #to_stripe, #update_on_stripe, #update_on_stripe!
Class Method Details
.stripe_class ⇒ Object
6
7
8
|
# File 'lib/stripe_model_callbacks/models/stripe_coupon.rb', line 6
def self.stripe_class
Stripe::Coupon
end
|
Instance Method Details
#assign_from_stripe(object) ⇒ Object
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/stripe_model_callbacks/models/stripe_coupon.rb', line 10
def assign_from_stripe(object)
check_object_is_stripe_class(object)
assign_attributes(
amount_off: object.amount_off ? Money.new(object.amount_off, object.currency) : nil,
stripe_valid: object.valid
)
StripeModelCallbacks::AttributesAssignerService.execute!(
model: self, stripe_model: object,
attributes: %w[
currency created duration duration_in_months id livemode max_redemptions metadata
percent_off redeem_by times_redeemed
]
)
end
|