Sha256: 5be2154906953d66c15b426ad978fa2226dc1f03d528af485b9bd285a9cfb91c
Contents?: true
Size: 920 Bytes
Versions: 131
Compression:
Stored size: 920 Bytes
Contents
module ForestLiana class StripeInvoiceSerializer include ForestAdmin::JSONAPI::Serializer attribute :amount_due attribute :amount_paid attribute :amount_remaining attribute :application_fee_amount attribute :attempt_count attribute :attempted attribute :currency attribute :due_date attribute :paid attribute :period_end attribute :period_start attribute :status attribute :subtotal attribute :total attribute :tax has_one :customer def self_link "/forest#{super}" end def type @options[:context][:type] || 'stripe_invoices' end def format_name(attribute_name) attribute_name.to_s end def unformat_name(attribute_name) attribute_name.to_s end def relationship_self_link(attribute_name) nil end def relationship_related_link(attribute_name) nil end end end
Version data entries
131 entries across 131 versions & 1 rubygems