Sha256: 84dbb641f14923905646975d72be0b3ef23f61dd6a4168deecf80bf000a9cb0f
Contents?: true
Size: 546 Bytes
Versions: 41
Compression:
Stored size: 546 Bytes
Contents
# frozen_string_literal: true module IronBank module Resources # A rate plan belongs to a subscription and is a copy of the associated # product rate plan from the catalog at the time of the subscription. # class RatePlan < Resource with_schema with_cache with_one :amendment with_one :product_rate_plan, alias: :catalog_plan with_one :subscription with_many :rate_plan_charges, alias: :charges, conditions: { is_last_segment: true } end end end
Version data entries
41 entries across 41 versions & 1 rubygems