Sha256: 31848bf0855e0a634599d3033eed8a425826c8a027e2166613fccc4f59ccc79d
Contents?: true
Size: 451 Bytes
Versions: 23
Compression:
Stored size: 451 Bytes
Contents
# frozen_string_literal: true module IronBank module Resources # An invoice item holds a charge that is billed to a customer. # class InvoiceItem < Resource with_schema with_one :invoice with_one :subscription # NOTE: the `product_id` field is not always populated by Zuora in the GET # request (`#find` method), I don't exactly know why. with_one :product with_one :charge end end end
Version data entries
23 entries across 23 versions & 1 rubygems