Sha256: d5b92c1ab0abc2c179cf7007f65b5ec7fbe3ece847ee74b9977c2f0b30a7ad8a

Contents?: true

Size: 907 Bytes

Versions: 32

Compression:

Stored size: 907 Bytes

Contents

module ForestLiana
  class StripeInvoiceSerializer
    include 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

32 entries across 32 versions & 1 rubygems

Version Path
forest_liana-6.6.3 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.6.2 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.6.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.6.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.5.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.5.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.4.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.4.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.8 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.7 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.6 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.5 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.4 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.3 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.2 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.1 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.3.0 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.2.3 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.2.2 app/serializers/forest_liana/stripe_invoice_serializer.rb
forest_liana-6.2.1 app/serializers/forest_liana/stripe_invoice_serializer.rb