Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.75 KB

CommunicationRequest.md

File metadata and controls

36 lines (30 loc) · 1.75 KB

EzmaxApi::CommunicationRequest

Properties

Name Type Description Notes
pki_communication_id Integer The unique ID of the Communication. [optional]
e_communication_importance FieldECommunicationImportance [optional]
e_communication_type FieldECommunicationType
obj_communicationsender CustomCommunicationsenderRequest [optional]
s_communication_subject String The subject of the Communication [optional]
t_communication_body String The Body of the Communication
b_communication_private Boolean Whether the Communication is private or not
e_communication_attachmenttype String How the attachment should be included in the email. Only used if eCommunicationType is Email [optional]
i_communication_attachmentlinkexpiration Integer The number of days before the attachment link expired. Only used if eCommunicationType is Email and eCommunicationattachmentType is Link [optional]
b_communication_readreceipt Boolean Whether we ask for a read receipt or not. [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::CommunicationRequest.new(
  pki_communication_id: 1,
  e_communication_importance: null,
  e_communication_type: null,
  obj_communicationsender: null,
  s_communication_subject: This is an example of subject,
  t_communication_body: null,
  b_communication_private: false,
  e_communication_attachmenttype: null,
  i_communication_attachmentlinkexpiration: null,
  b_communication_readreceipt: null
)