Method: ZipMoney::Shopper.zip_types
- Defined in:
- lib/zip_money/models/shopper.rb
.zip_types ⇒ Object
Attribute type mapping.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/zip_money/models/shopper.rb', line 78 def self.zip_types { :'title' => :'String', :'first_name' => :'String', :'last_name' => :'String', :'middle_name' => :'String', :'phone' => :'String', :'email' => :'String', :'birth_date' => :'Date', :'gender' => :'String', :'statistics' => :'ShopperStatistics', :'billing_address' => :'Address' } end |