myfreecomm/billimatic-client-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
module Billimatic
  module Entities
    class Customer < Base
      attribute :id, Integer
      attribute :name, String
      attribute :email, String
      attribute :document, String
      attribute :type, String
      attribute :address_information, Billimatic::Entities::AddressInformation
    end
  end
end