Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1006 Bytes

File metadata and controls

28 lines (22 loc) · 1006 Bytes

MergeCRMClient::EngagementType

Properties

Name Type Description Notes
activity_type ActivityTypeEnum The engagement type's activity type. * `CALL` - CALL * `MEETING` - MEETING * `EMAIL` - EMAIL [optional]
name String The engagement type's name. [optional]
id String [optional][readonly]
remote_id String The third-party API ID of the matching object. [optional]
modified_at Time This is the datetime that this object was last updated by Merge [optional][readonly]
remote_fields Array<RemoteField> [optional][readonly]

Example

require 'merge_crm_client'

instance = MergeCRMClient::EngagementType.new(
  activity_type: CALL,
  name: First Call,
  id: null,
  remote_id: 19202938,
  modified_at: 2021-10-16T00:00Z,
  remote_fields: null
)