Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.16 KB

File metadata and controls

30 lines (24 loc) · 1.16 KB

EzmaxApi::ContactRequestCompound

Properties

Name Type Description Notes
fki_contacttitle_id Integer The unique ID of the Contacttitle. Valid values: Value
fki_language_id Integer The unique ID of the Language. Valid values: Value
s_contact_firstname String The First name of the contact
s_contact_lastname String The Last name of the contact
s_contact_company String The Company name of the contact
dt_contact_birthdate String The Birth Date of the contact [optional]
obj_contactinformations ContactinformationsRequestCompound

Example

require 'Ezmaxapi'

instance = EzmaxApi::ContactRequestCompound.new(
  fki_contacttitle_id: 2,
  fki_language_id: 2,
  s_contact_firstname: John,
  s_contact_lastname: Doe,
  s_contact_company: eZmax Solutions Inc.,
  dt_contact_birthdate: 1980-01-01,
  obj_contactinformations: null
)