Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1016 Bytes

ContactRequest.md

File metadata and controls

28 lines (22 loc) · 1016 Bytes

EzmaxApi::ContactRequest

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]

Example

require 'Ezmaxapi'

instance = EzmaxApi::ContactRequest.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
)