Method: Xpost::Address#attributes
- Defined in:
- lib/xpost/address.rb
#attributes ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/xpost/address.rb', line 45 def attributes { title: self.title, name: self.name, email: self.email, phone_number: self.phone_number, mobile_number: self.mobile_number, fax_number: self.fax_number, company: self.company, line_1: self.line_1, line_2: self.line_2, city: self.city, district: self.district, state: self.state, postal_code: self.postal_code, country: self.country, remarks: self.remarks } end |