myfreecomm/billimatic-client-ruby

View on GitHub
lib/billimatic/entities/payment_information.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Billimatic
  module Entities
    class PaymentInformation < Base
      attribute :id, Integer
      attribute :payment_method, String
      attribute :cobrato_card_id, Integer
      attribute :card_expiration_month, Integer
      attribute :card_expiration_year, Integer
      attribute :installments, Integer
      attribute :created_at, DateTime
    end
  end
end