Sha256: db25e3af921f29798cc10175307811a4d744189f8f330029f3824f011bc127f6

Contents?: true

Size: 888 Bytes

Versions: 249

Compression:

Stored size: 888 Bytes

Contents

module ForestLiana
  class StripeInvoiceSerializer
    include JSONAPI::Serializer

    attribute :amount_due
    attribute :attempt_count
    attribute :attempted
    attribute :closed
    attribute :currency
    attribute :date
    attribute :forgiven
    attribute :paid
    attribute :period_end
    attribute :period_start
    attribute :subtotal
    attribute :total
    attribute :application_fee
    attribute :tax
    attribute :tax_percent

    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

249 entries across 249 versions & 1 rubygems

Version Path
forest_liana-5.4.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.0.0.pre.beta.4 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.0.0.pre.beta.3 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.4.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.0.0.pre.beta.2 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.0.0.pre.beta.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.3.3 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.3.2 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.3.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.3.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.2.3 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.2.2 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.2.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.2.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.1.3 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.1.2 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.1.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.1.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.0.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-5.0.0.pre.beta.0 app/serializers/forest_liana/stripe_invoice_serializer.rb