Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.62 KB

File metadata and controls

36 lines (30 loc) · 1.62 KB

MergeCRMClient::User

Properties

Name Type Description Notes
name String The user's name. [optional]
email String The user's email address. [optional]
is_active Boolean Whether or not the user is active. [optional]
remote_was_deleted Boolean Indicates whether or not this object has been deleted by third party webhooks. [optional][readonly]
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]
field_mappings Hash<String, AnyType> [optional][readonly]
remote_data Array<RemoteData> [optional][readonly]
remote_fields Array<RemoteField> [optional][readonly]

Example

require 'merge_crm_client'

instance = MergeCRMClient::User.new(
  name: Gil Feig,
  email: merge_is_hiring@merge.dev,
  is_active: true,
  remote_was_deleted: null,
  id: 0358cbc6-2040-430a-848e-aafacbadf3aa,
  remote_id: 19202938,
  modified_at: 2021-10-16T00:00Z,
  field_mappings: {&quot;organization_defined_targets&quot;:{&quot;custom_key&quot;:&quot;custom_value&quot;},&quot;linked_account_defined_targets&quot;:{&quot;custom_key&quot;:&quot;custom_value&quot;}},
  remote_data: [{&quot;path&quot;:&quot;/users&quot;,&quot;data&quot;:[&quot;Varies by platform&quot;]}],
  remote_fields: null
)