Method: AdCenterWrapper::ContactInfo#initialize

Defined in:
lib/adcenter_wrapper_entities.rb

#initialize(address = nil, contactByPhone = nil, contactByPostalMail = nil, email = nil, emailFormat = nil, fax = nil, homePhone = nil, id = nil, mobile = nil, phone1 = nil, phone2 = nil) ⇒ ContactInfo

Returns a new instance of ContactInfo.



4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
# File 'lib/adcenter_wrapper_entities.rb', line 4299

def initialize(address = nil, contactByPhone = nil, contactByPostalMail = nil, email = nil, emailFormat = nil, fax = nil, homePhone = nil, id = nil, mobile = nil, phone1 = nil, phone2 = nil)
  @address = address
  @contactByPhone = contactByPhone
  @contactByPostalMail = contactByPostalMail
  @email = email
  @emailFormat = emailFormat
  @fax = fax
  @homePhone = homePhone
  @id = id
  @mobile = mobile
  @phone1 = phone1
  @phone2 = phone2
end