Sha256: 5cb7da353ac2338069dc8fcba3ac6d6c0b2ec4cec287b8230083ff10f26f7905

Contents?: true

Size: 808 Bytes

Versions: 1

Compression:

Stored size: 808 Bytes

Contents

module Asaas
  module Entity
    class Account
      include Virtus.model

      attribute :id, String
      attribute :name, String
      attribute :email, String
      attribute :phone, String
      attribute :mobilePhone, String
      attribute :address, String
      attribute :addressNumber, String
      attribute :complement, String
      attribute :province, String
      attribute :city, String
      attribute :state, String
      attribute :country, String
      attribute :postalCode, String
      attribute :cpfCnpj, String
      attribute :personType, String
      attribute :companyType, String
      attribute :apiKey, String
      attribute :pushNotificationUrl, String
      attribute :pushNotificationEmail, String
      attribute :bankAccount, Asaas::Entity::BankAccount
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
asaas-ruby-0.2.25 lib/asaas/entity/account.rb