Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.38 KB

Account.md

File metadata and controls

32 lines (26 loc) · 1.38 KB

MergeTicketingClient::Account

Properties

Name Type Description Notes
id String [optional][readonly]
remote_id String The third-party API ID of the matching object. [optional]
name String The account's name. [optional]
domains Array<String> The account's domain names. [optional]
remote_was_deleted Boolean Indicates whether or not this object has been deleted by third party webhooks. [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]

Example

require 'merge_ticketing_client'

instance = MergeTicketingClient::Account.new(
  id: 17a54124-287f-494d-965e-3c5b330c9a68,
  remote_id: 19202938,
  name: Waystar Royco,
  domains: [&quot;waystar-royco.com&quot;,&quot;royco.com&quot;],
  remote_was_deleted: null,
  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: null
)