Sha256: 97b0a76b002cc072ce689b1ef2d4f0894b814f94e287619f6a3791ee5a0dd5a8
Contents?: true
Size: 361 Bytes
Versions: 21
Compression:
Stored size: 361 Bytes
Contents
module Zuora class RatePlan < ZObject def rate_plan_charges @rate_plan_charges ||= RatePlanCharge.where(:ratePlanId => self.id) end def subscription @subscription ||= Subscription.find(self.subscriptionId) end def product_rate_plan @product_rate_plan ||= ProductRatePlan.find(self.productRatePlanId) end end end
Version data entries
21 entries across 21 versions & 1 rubygems