Sha256: e6a353ecf6dd8cd1e0f5aa0422a7054cab9804d309aa753293b3792cd1939130
Contents?: true
Size: 1.33 KB
Versions: 13
Compression:
Stored size: 1.33 KB
Contents
class Kaui::BusinessSubscriptionTransition < Kaui::Base define_attr :total_ordering define_attr :bundle_id define_attr :bundle_external_key define_attr :account_id define_attr :account_external_key define_attr :subscription_id define_attr :requested_timestamp define_attr :event define_attr :prev_product_name define_attr :prev_product_type define_attr :prev_product_category define_attr :prev_slug define_attr :prev_phase define_attr :prev_billing_period define_attr :prev_price define_attr :prev_price_list define_attr :prev_mrr define_attr :prev_currency define_attr :prev_start_date define_attr :prev_state define_attr :next_product_name define_attr :next_product_type define_attr :next_product_category define_attr :next_slug define_attr :next_phase define_attr :next_billing_period define_attr :next_price define_attr :next_price_list define_attr :next_mrr define_attr :next_currency define_attr :next_start_date define_attr :next_state def prev_price_to_money Kaui::Base.to_money(prev_price.abs, prev_currency) end def prev_mrr_to_money Kaui::Base.to_money(prev_mrr.abs, prev_currency) end def next_price_to_money Kaui::Base.to_money(next_price.abs, next_currency) end def next_mrr_to_money Kaui::Base.to_money(next_mrr.abs, next_currency) end end
Version data entries
13 entries across 13 versions & 1 rubygems