Sha256: cd57acedd864e7cff543141c49d2f8dc8b88dd6d53fb79aa90351f61772885a3

Contents?: true

Size: 884 Bytes

Versions: 131

Compression:

Stored size: 884 Bytes

Contents

module ForestLiana
  class StripeCardSerializer
    include ForestAdmin::JSONAPI::Serializer

    attribute :last4
    attribute :brand
    attribute :funding
    attribute :exp_month
    attribute :exp_year
    attribute :country
    attribute :name
    attribute :address_line1
    attribute :address_line2
    attribute :address_city
    attribute :address_state
    attribute :address_zip
    attribute :address_country
    attribute :cvc_check

    has_one :customer

    def self_link
      "/forest#{super}"
    end

    def type
      @options[:context][:type] || 'stripe_cards'
    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

Version Path
forest_liana-9.11.1 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.11.0 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.10.6 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.10.5 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.10.4 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.10.3 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.10.2 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.10.1 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.10.0 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.9.1 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.9.0 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.8.0 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.7.0 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.6.4 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.6.3 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.6.0 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.5.7 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.5.6 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.5.5 app/serializers/forest_liana/stripe_card_serializer.rb
forest_liana-9.5.4 app/serializers/forest_liana/stripe_card_serializer.rb