apimatic-apollo-sdk 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (416) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +28 -0
  3. data/README.md +179 -0
  4. data/bin/console +15 -0
  5. data/lib/apollo_rest_api/api_helper.rb +10 -0
  6. data/lib/apollo_rest_api/apis/accounts_api.rb +400 -0
  7. data/lib/apollo_rest_api/apis/analytics_api.rb +65 -0
  8. data/lib/apollo_rest_api/apis/api.rb +45 -0
  9. data/lib/apollo_rest_api/apis/base_api.rb +67 -0
  10. data/lib/apollo_rest_api/apis/calls_api.rb +354 -0
  11. data/lib/apollo_rest_api/apis/contacts_api.rb +478 -0
  12. data/lib/apollo_rest_api/apis/conversations_api.rb +157 -0
  13. data/lib/apollo_rest_api/apis/deals_api.rb +253 -0
  14. data/lib/apollo_rest_api/apis/emailer_messages_api.rb +160 -0
  15. data/lib/apollo_rest_api/apis/enrichment_api.rb +447 -0
  16. data/lib/apollo_rest_api/apis/miscellaneous_api.rb +610 -0
  17. data/lib/apollo_rest_api/apis/search_api.rb +675 -0
  18. data/lib/apollo_rest_api/apis/sequences_api.rb +774 -0
  19. data/lib/apollo_rest_api/apis/tasks_api.rb +397 -0
  20. data/lib/apollo_rest_api/client.rb +147 -0
  21. data/lib/apollo_rest_api/configuration.rb +170 -0
  22. data/lib/apollo_rest_api/exceptions/account_stages429_error_exception.rb +46 -0
  23. data/lib/apollo_rest_api/exceptions/accounts422_error_exception.rb +46 -0
  24. data/lib/apollo_rest_api/exceptions/accounts429_error_exception.rb +46 -0
  25. data/lib/apollo_rest_api/exceptions/accounts_bulk_create422_error_exception.rb +46 -0
  26. data/lib/apollo_rest_api/exceptions/accounts_bulk_create429_error_exception.rb +46 -0
  27. data/lib/apollo_rest_api/exceptions/accounts_bulk_create500_error_exception.rb +46 -0
  28. data/lib/apollo_rest_api/exceptions/accounts_bulk_update422_error_exception.rb +46 -0
  29. data/lib/apollo_rest_api/exceptions/accounts_bulk_update429_error_exception.rb +46 -0
  30. data/lib/apollo_rest_api/exceptions/accounts_search403_error_exception.rb +46 -0
  31. data/lib/apollo_rest_api/exceptions/accounts_search429_error_exception.rb +46 -0
  32. data/lib/apollo_rest_api/exceptions/accounts_update_owners429_error_exception.rb +46 -0
  33. data/lib/apollo_rest_api/exceptions/api_exception.rb +21 -0
  34. data/lib/apollo_rest_api/exceptions/contact_stages429_error_exception.rb +46 -0
  35. data/lib/apollo_rest_api/exceptions/contacts422_error_exception.rb +46 -0
  36. data/lib/apollo_rest_api/exceptions/contacts429_error_exception.rb +46 -0
  37. data/lib/apollo_rest_api/exceptions/contacts_bulk_create422_error_exception.rb +46 -0
  38. data/lib/apollo_rest_api/exceptions/contacts_bulk_create429_error_exception.rb +46 -0
  39. data/lib/apollo_rest_api/exceptions/contacts_bulk_create500_error_exception.rb +46 -0
  40. data/lib/apollo_rest_api/exceptions/contacts_bulk_update422_error_exception.rb +51 -0
  41. data/lib/apollo_rest_api/exceptions/contacts_bulk_update429_error_exception.rb +46 -0
  42. data/lib/apollo_rest_api/exceptions/contacts_opportunities429_error_exception.rb +46 -0
  43. data/lib/apollo_rest_api/exceptions/contacts_search403_error_exception.rb +46 -0
  44. data/lib/apollo_rest_api/exceptions/contacts_search429_error_exception.rb +46 -0
  45. data/lib/apollo_rest_api/exceptions/contacts_update_owners422_error_exception.rb +46 -0
  46. data/lib/apollo_rest_api/exceptions/contacts_update_owners429_error_exception.rb +46 -0
  47. data/lib/apollo_rest_api/exceptions/contacts_update_stages422_error_exception.rb +46 -0
  48. data/lib/apollo_rest_api/exceptions/contacts_update_stages429_error_exception.rb +46 -0
  49. data/lib/apollo_rest_api/exceptions/conversations404_error_exception.rb +46 -0
  50. data/lib/apollo_rest_api/exceptions/conversations422_error_exception.rb +46 -0
  51. data/lib/apollo_rest_api/exceptions/conversations_export404_error_exception.rb +46 -0
  52. data/lib/apollo_rest_api/exceptions/conversations_export422_error_exception.rb +46 -0
  53. data/lib/apollo_rest_api/exceptions/conversations_search403_error_exception.rb +46 -0
  54. data/lib/apollo_rest_api/exceptions/email_accounts429_error_exception.rb +46 -0
  55. data/lib/apollo_rest_api/exceptions/emailer_campaigns_abort422_error_exception.rb +46 -0
  56. data/lib/apollo_rest_api/exceptions/emailer_campaigns_abort429_error_exception.rb +46 -0
  57. data/lib/apollo_rest_api/exceptions/emailer_campaigns_add_contact_ids429_error_exception.rb +46 -0
  58. data/lib/apollo_rest_api/exceptions/emailer_campaigns_approve422_error_exception.rb +46 -0
  59. data/lib/apollo_rest_api/exceptions/emailer_campaigns_approve429_error_exception.rb +46 -0
  60. data/lib/apollo_rest_api/exceptions/emailer_campaigns_archive429_error_exception.rb +46 -0
  61. data/lib/apollo_rest_api/exceptions/emailer_campaigns_remove_or_stop_contact_ids429_error_exception.rb +46 -0
  62. data/lib/apollo_rest_api/exceptions/emailer_campaigns_search429_error_exception.rb +46 -0
  63. data/lib/apollo_rest_api/exceptions/emailer_messages429_error_exception.rb +46 -0
  64. data/lib/apollo_rest_api/exceptions/emailer_messages_email_send_status404_error_exception.rb +46 -0
  65. data/lib/apollo_rest_api/exceptions/emailer_messages_email_send_status422_error_exception.rb +46 -0
  66. data/lib/apollo_rest_api/exceptions/emailer_messages_email_send_status429_error_exception.rb +46 -0
  67. data/lib/apollo_rest_api/exceptions/emailer_messages_search422_error_exception.rb +46 -0
  68. data/lib/apollo_rest_api/exceptions/emailer_messages_search429_error_exception.rb +46 -0
  69. data/lib/apollo_rest_api/exceptions/emailer_messages_send_now429_error_exception.rb +46 -0
  70. data/lib/apollo_rest_api/exceptions/emailer_schedules429_error_exception.rb +46 -0
  71. data/lib/apollo_rest_api/exceptions/fields429_error_exception.rb +46 -0
  72. data/lib/apollo_rest_api/exceptions/labels404_error_exception.rb +51 -0
  73. data/lib/apollo_rest_api/exceptions/labels422_error_exception.rb +53 -0
  74. data/lib/apollo_rest_api/exceptions/labels429_error_exception.rb +46 -0
  75. data/lib/apollo_rest_api/exceptions/labels_add_entity_ids_to_label_names422_error_exception.rb +46 -0
  76. data/lib/apollo_rest_api/exceptions/labels_add_entity_ids_to_label_names429_error_exception.rb +46 -0
  77. data/lib/apollo_rest_api/exceptions/labels_remove_entity_ids_from_label_names422_error_exception.rb +46 -0
  78. data/lib/apollo_rest_api/exceptions/labels_remove_entity_ids_from_label_names429_error_exception.rb +46 -0
  79. data/lib/apollo_rest_api/exceptions/mixed_companies_search403_error_exception.rb +46 -0
  80. data/lib/apollo_rest_api/exceptions/mixed_companies_search429_error_exception.rb +46 -0
  81. data/lib/apollo_rest_api/exceptions/mixed_people_api_search422_error_exception.rb +46 -0
  82. data/lib/apollo_rest_api/exceptions/mixed_people_api_search429_error_exception.rb +46 -0
  83. data/lib/apollo_rest_api/exceptions/need_master_api_key_exception.rb +51 -0
  84. data/lib/apollo_rest_api/exceptions/notes400_error_exception.rb +46 -0
  85. data/lib/apollo_rest_api/exceptions/opportunities404_error_exception.rb +51 -0
  86. data/lib/apollo_rest_api/exceptions/opportunities422_error_exception.rb +46 -0
  87. data/lib/apollo_rest_api/exceptions/opportunities429_error_exception.rb +46 -0
  88. data/lib/apollo_rest_api/exceptions/opportunities_search429_error_exception.rb +46 -0
  89. data/lib/apollo_rest_api/exceptions/opportunity_stages429_error_exception.rb +46 -0
  90. data/lib/apollo_rest_api/exceptions/organizations_bulk_enrich400_error_exception.rb +58 -0
  91. data/lib/apollo_rest_api/exceptions/organizations_bulk_enrich429_error_exception.rb +46 -0
  92. data/lib/apollo_rest_api/exceptions/organizations_enrich422_error_exception.rb +46 -0
  93. data/lib/apollo_rest_api/exceptions/organizations_enrich429_error_exception.rb +46 -0
  94. data/lib/apollo_rest_api/exceptions/organizations_job_postings422_error_exception.rb +46 -0
  95. data/lib/apollo_rest_api/exceptions/organizations_job_postings429_error_exception.rb +46 -0
  96. data/lib/apollo_rest_api/exceptions/people_bulk_match429_error_exception.rb +46 -0
  97. data/lib/apollo_rest_api/exceptions/people_match429_error_exception.rb +46 -0
  98. data/lib/apollo_rest_api/exceptions/reports_sync_report400_error_exception.rb +46 -0
  99. data/lib/apollo_rest_api/exceptions/reports_sync_report429_error_exception.rb +46 -0
  100. data/lib/apollo_rest_api/exceptions/sequences404_error_exception.rb +46 -0
  101. data/lib/apollo_rest_api/exceptions/sequences422_error_exception.rb +46 -0
  102. data/lib/apollo_rest_api/exceptions/sequences429_error_exception.rb +46 -0
  103. data/lib/apollo_rest_api/exceptions/tasks401_error_exception.rb +46 -0
  104. data/lib/apollo_rest_api/exceptions/tasks422_error_exception.rb +46 -0
  105. data/lib/apollo_rest_api/exceptions/tasks429_error_exception.rb +46 -0
  106. data/lib/apollo_rest_api/exceptions/tasks_bulk_create422_error_exception.rb +46 -0
  107. data/lib/apollo_rest_api/exceptions/tasks_bulk_create429_error_exception.rb +46 -0
  108. data/lib/apollo_rest_api/exceptions/tasks_complete422_error_exception.rb +46 -0
  109. data/lib/apollo_rest_api/exceptions/tasks_complete429_error_exception.rb +46 -0
  110. data/lib/apollo_rest_api/exceptions/tasks_search429_error_exception.rb +46 -0
  111. data/lib/apollo_rest_api/exceptions/tasks_skip422_error_exception.rb +46 -0
  112. data/lib/apollo_rest_api/exceptions/tasks_skip429_error_exception.rb +46 -0
  113. data/lib/apollo_rest_api/exceptions/typed_custom_fields429_error_exception.rb +46 -0
  114. data/lib/apollo_rest_api/exceptions/users_search429_error_exception.rb +46 -0
  115. data/lib/apollo_rest_api/exceptions/webhook_result404_error_exception.rb +55 -0
  116. data/lib/apollo_rest_api/http/api_response.rb +19 -0
  117. data/lib/apollo_rest_api/http/auth/api_key.rb +52 -0
  118. data/lib/apollo_rest_api/http/auth/bearer_auth.rb +53 -0
  119. data/lib/apollo_rest_api/http/http_call_back.rb +10 -0
  120. data/lib/apollo_rest_api/http/http_method_enum.rb +10 -0
  121. data/lib/apollo_rest_api/http/http_request.rb +10 -0
  122. data/lib/apollo_rest_api/http/http_response.rb +10 -0
  123. data/lib/apollo_rest_api/http/proxy_settings.rb +22 -0
  124. data/lib/apollo_rest_api/logging/configuration/api_logging_configuration.rb +186 -0
  125. data/lib/apollo_rest_api/logging/sdk_logger.rb +17 -0
  126. data/lib/apollo_rest_api/models/account.rb +551 -0
  127. data/lib/apollo_rest_api/models/account1.rb +420 -0
  128. data/lib/apollo_rest_api/models/account10.rb +595 -0
  129. data/lib/apollo_rest_api/models/account12.rb +424 -0
  130. data/lib/apollo_rest_api/models/account14.rb +247 -0
  131. data/lib/apollo_rest_api/models/account2.rb +420 -0
  132. data/lib/apollo_rest_api/models/account22.rb +85 -0
  133. data/lib/apollo_rest_api/models/account3.rb +420 -0
  134. data/lib/apollo_rest_api/models/account4.rb +474 -0
  135. data/lib/apollo_rest_api/models/account5.rb +238 -0
  136. data/lib/apollo_rest_api/models/account6.rb +86 -0
  137. data/lib/apollo_rest_api/models/account7.rb +95 -0
  138. data/lib/apollo_rest_api/models/account8.rb +434 -0
  139. data/lib/apollo_rest_api/models/account9.rb +540 -0
  140. data/lib/apollo_rest_api/models/account_attribute.rb +116 -0
  141. data/lib/apollo_rest_api/models/account_rule_config_status.rb +138 -0
  142. data/lib/apollo_rest_api/models/account_stage.rb +151 -0
  143. data/lib/apollo_rest_api/models/account_stages_response.rb +85 -0
  144. data/lib/apollo_rest_api/models/accounts_bulk_create_request.rb +108 -0
  145. data/lib/apollo_rest_api/models/accounts_bulk_create_response.rb +105 -0
  146. data/lib/apollo_rest_api/models/accounts_bulk_update_request.rb +139 -0
  147. data/lib/apollo_rest_api/models/accounts_bulk_update_response.rb +84 -0
  148. data/lib/apollo_rest_api/models/accounts_request.rb +183 -0
  149. data/lib/apollo_rest_api/models/accounts_request1.rb +183 -0
  150. data/lib/apollo_rest_api/models/accounts_response.rb +75 -0
  151. data/lib/apollo_rest_api/models/accounts_response1.rb +85 -0
  152. data/lib/apollo_rest_api/models/accounts_search_request.rb +167 -0
  153. data/lib/apollo_rest_api/models/accounts_search_response.rb +168 -0
  154. data/lib/apollo_rest_api/models/accounts_update_owners_response.rb +84 -0
  155. data/lib/apollo_rest_api/models/active.rb +26 -0
  156. data/lib/apollo_rest_api/models/assistant_setting.rb +397 -0
  157. data/lib/apollo_rest_api/models/audio_recording.rb +74 -0
  158. data/lib/apollo_rest_api/models/base_model.rb +110 -0
  159. data/lib/apollo_rest_api/models/bounced.rb +26 -0
  160. data/lib/apollo_rest_api/models/breadcrumb.rb +107 -0
  161. data/lib/apollo_rest_api/models/check_apollo_pricing_plan.rb +75 -0
  162. data/lib/apollo_rest_api/models/check_the_account_id.rb +75 -0
  163. data/lib/apollo_rest_api/models/check_the_contact_stage_id.rb +75 -0
  164. data/lib/apollo_rest_api/models/contact.rb +809 -0
  165. data/lib/apollo_rest_api/models/contact1.rb +921 -0
  166. data/lib/apollo_rest_api/models/contact10.rb +465 -0
  167. data/lib/apollo_rest_api/models/contact11.rb +250 -0
  168. data/lib/apollo_rest_api/models/contact14.rb +248 -0
  169. data/lib/apollo_rest_api/models/contact15.rb +166 -0
  170. data/lib/apollo_rest_api/models/contact2.rb +884 -0
  171. data/lib/apollo_rest_api/models/contact3.rb +239 -0
  172. data/lib/apollo_rest_api/models/contact4.rb +105 -0
  173. data/lib/apollo_rest_api/models/contact5.rb +893 -0
  174. data/lib/apollo_rest_api/models/contact6.rb +839 -0
  175. data/lib/apollo_rest_api/models/contact7.rb +95 -0
  176. data/lib/apollo_rest_api/models/contact8.rb +375 -0
  177. data/lib/apollo_rest_api/models/contact9.rb +198 -0
  178. data/lib/apollo_rest_api/models/contact_attribute.rb +179 -0
  179. data/lib/apollo_rest_api/models/contact_campaign_status.rb +336 -0
  180. data/lib/apollo_rest_api/models/contact_campaign_status2.rb +163 -0
  181. data/lib/apollo_rest_api/models/contact_email.rb +167 -0
  182. data/lib/apollo_rest_api/models/contact_email1.rb +85 -0
  183. data/lib/apollo_rest_api/models/contact_email2.rb +148 -0
  184. data/lib/apollo_rest_api/models/contact_statuses.rb +132 -0
  185. data/lib/apollo_rest_api/models/contacts_bulk_create_request.rb +121 -0
  186. data/lib/apollo_rest_api/models/contacts_bulk_create_response.rb +106 -0
  187. data/lib/apollo_rest_api/models/contacts_bulk_update_request.rb +224 -0
  188. data/lib/apollo_rest_api/models/contacts_bulk_update_response.rb +94 -0
  189. data/lib/apollo_rest_api/models/contacts_bulk_update_response1.rb +87 -0
  190. data/lib/apollo_rest_api/models/contacts_opportunities_response.rb +85 -0
  191. data/lib/apollo_rest_api/models/contacts_request.rb +269 -0
  192. data/lib/apollo_rest_api/models/contacts_request1.rb +253 -0
  193. data/lib/apollo_rest_api/models/contacts_response.rb +94 -0
  194. data/lib/apollo_rest_api/models/contacts_response1.rb +94 -0
  195. data/lib/apollo_rest_api/models/contacts_response2.rb +75 -0
  196. data/lib/apollo_rest_api/models/contacts_search_request.rb +166 -0
  197. data/lib/apollo_rest_api/models/contacts_search_response.rb +168 -0
  198. data/lib/apollo_rest_api/models/contacts_update_owners_response.rb +84 -0
  199. data/lib/apollo_rest_api/models/contacts_update_stages_response.rb +84 -0
  200. data/lib/apollo_rest_api/models/conversation.rb +284 -0
  201. data/lib/apollo_rest_api/models/conversation_type.rb +36 -0
  202. data/lib/apollo_rest_api/models/conversation_type2.rb +36 -0
  203. data/lib/apollo_rest_api/models/conversations_export_request.rb +94 -0
  204. data/lib/apollo_rest_api/models/conversations_export_response.rb +86 -0
  205. data/lib/apollo_rest_api/models/conversations_export_response1.rb +76 -0
  206. data/lib/apollo_rest_api/models/conversations_response.rb +333 -0
  207. data/lib/apollo_rest_api/models/conversations_search_request.rb +207 -0
  208. data/lib/apollo_rest_api/models/conversations_search_response.rb +130 -0
  209. data/lib/apollo_rest_api/models/counts.rb +115 -0
  210. data/lib/apollo_rest_api/models/created_account.rb +174 -0
  211. data/lib/apollo_rest_api/models/created_contact.rb +195 -0
  212. data/lib/apollo_rest_api/models/creation_type.rb +41 -0
  213. data/lib/apollo_rest_api/models/currency.rb +95 -0
  214. data/lib/apollo_rest_api/models/current_technology.rb +95 -0
  215. data/lib/apollo_rest_api/models/date_range.rb +84 -0
  216. data/lib/apollo_rest_api/models/date_range1.rb +87 -0
  217. data/lib/apollo_rest_api/models/deal.rb +107 -0
  218. data/lib/apollo_rest_api/models/deliverability_score.rb +460 -0
  219. data/lib/apollo_rest_api/models/departmental_head_count.rb +260 -0
  220. data/lib/apollo_rest_api/models/detail.rb +173 -0
  221. data/lib/apollo_rest_api/models/detail1.rb +109 -0
  222. data/lib/apollo_rest_api/models/email_account.rb +616 -0
  223. data/lib/apollo_rest_api/models/email_accounts_response.rb +85 -0
  224. data/lib/apollo_rest_api/models/emailer_campaign.rb +722 -0
  225. data/lib/apollo_rest_api/models/emailer_campaign1.rb +359 -0
  226. data/lib/apollo_rest_api/models/emailer_campaign2.rb +158 -0
  227. data/lib/apollo_rest_api/models/emailer_campaign3.rb +95 -0
  228. data/lib/apollo_rest_api/models/emailer_campaign4.rb +96 -0
  229. data/lib/apollo_rest_api/models/emailer_campaign6.rb +105 -0
  230. data/lib/apollo_rest_api/models/emailer_campaigns_abort_response.rb +96 -0
  231. data/lib/apollo_rest_api/models/emailer_campaigns_add_contact_ids_response.rb +164 -0
  232. data/lib/apollo_rest_api/models/emailer_campaigns_approve_response.rb +96 -0
  233. data/lib/apollo_rest_api/models/emailer_campaigns_archive_response.rb +77 -0
  234. data/lib/apollo_rest_api/models/emailer_campaigns_remove_or_stop_contact_ids_response.rb +77 -0
  235. data/lib/apollo_rest_api/models/emailer_campaigns_search_response.rb +125 -0
  236. data/lib/apollo_rest_api/models/emailer_message.rb +676 -0
  237. data/lib/apollo_rest_api/models/emailer_message1.rb +410 -0
  238. data/lib/apollo_rest_api/models/emailer_messages_email_send_status_request.rb +74 -0
  239. data/lib/apollo_rest_api/models/emailer_messages_email_send_status_response.rb +166 -0
  240. data/lib/apollo_rest_api/models/emailer_messages_request.rb +197 -0
  241. data/lib/apollo_rest_api/models/emailer_messages_response.rb +77 -0
  242. data/lib/apollo_rest_api/models/emailer_messages_send_now_request.rb +76 -0
  243. data/lib/apollo_rest_api/models/emailer_messages_send_now_response.rb +77 -0
  244. data/lib/apollo_rest_api/models/emailer_schedule.rb +154 -0
  245. data/lib/apollo_rest_api/models/emailer_schedules_response.rb +85 -0
  246. data/lib/apollo_rest_api/models/emailer_step.rb +206 -0
  247. data/lib/apollo_rest_api/models/emailer_step1.rb +189 -0
  248. data/lib/apollo_rest_api/models/emailer_step2.rb +126 -0
  249. data/lib/apollo_rest_api/models/emailer_step3.rb +148 -0
  250. data/lib/apollo_rest_api/models/emailer_step4.rb +85 -0
  251. data/lib/apollo_rest_api/models/emailer_step5.rb +128 -0
  252. data/lib/apollo_rest_api/models/emailer_template.rb +100 -0
  253. data/lib/apollo_rest_api/models/emailer_template1.rb +95 -0
  254. data/lib/apollo_rest_api/models/emailer_template2.rb +85 -0
  255. data/lib/apollo_rest_api/models/emailer_touch.rb +254 -0
  256. data/lib/apollo_rest_api/models/emailer_touch1.rb +128 -0
  257. data/lib/apollo_rest_api/models/emailer_touch2.rb +117 -0
  258. data/lib/apollo_rest_api/models/emailer_touch3.rb +139 -0
  259. data/lib/apollo_rest_api/models/emailer_touch4.rb +85 -0
  260. data/lib/apollo_rest_api/models/employment_history.rb +238 -0
  261. data/lib/apollo_rest_api/models/entity_progress_job.rb +153 -0
  262. data/lib/apollo_rest_api/models/entity_progress_job1.rb +135 -0
  263. data/lib/apollo_rest_api/models/entity_progress_job2.rb +141 -0
  264. data/lib/apollo_rest_api/models/error_details.rb +95 -0
  265. data/lib/apollo_rest_api/models/existing_account.rb +152 -0
  266. data/lib/apollo_rest_api/models/existing_contact.rb +171 -0
  267. data/lib/apollo_rest_api/models/faceting.rb +523 -0
  268. data/lib/apollo_rest_api/models/failure_reason.rb +44 -0
  269. data/lib/apollo_rest_api/models/field.rb +181 -0
  270. data/lib/apollo_rest_api/models/fields_request.rb +105 -0
  271. data/lib/apollo_rest_api/models/fields_response.rb +84 -0
  272. data/lib/apollo_rest_api/models/fields_response1.rb +85 -0
  273. data/lib/apollo_rest_api/models/filters.rb +165 -0
  274. data/lib/apollo_rest_api/models/finished.rb +26 -0
  275. data/lib/apollo_rest_api/models/funding_event.rb +134 -0
  276. data/lib/apollo_rest_api/models/generation_option.rb +107 -0
  277. data/lib/apollo_rest_api/models/generation_tone.rb +86 -0
  278. data/lib/apollo_rest_api/models/group_by.rb +84 -0
  279. data/lib/apollo_rest_api/models/industry_tag_hash.rb +83 -0
  280. data/lib/apollo_rest_api/models/label.rb +135 -0
  281. data/lib/apollo_rest_api/models/label2.rb +147 -0
  282. data/lib/apollo_rest_api/models/labels_add_entity_ids_to_label_names_request.rb +113 -0
  283. data/lib/apollo_rest_api/models/labels_add_entity_ids_to_label_names_response.rb +107 -0
  284. data/lib/apollo_rest_api/models/labels_remove_entity_ids_from_label_names_request.rb +113 -0
  285. data/lib/apollo_rest_api/models/labels_remove_entity_ids_from_label_names_response.rb +107 -0
  286. data/lib/apollo_rest_api/models/labels_request.rb +97 -0
  287. data/lib/apollo_rest_api/models/labels_request1.rb +87 -0
  288. data/lib/apollo_rest_api/models/labels_response.rb +201 -0
  289. data/lib/apollo_rest_api/models/labels_response1.rb +75 -0
  290. data/lib/apollo_rest_api/models/match.rb +393 -0
  291. data/lib/apollo_rest_api/models/meta.rb +76 -0
  292. data/lib/apollo_rest_api/models/metric.rb +117 -0
  293. data/lib/apollo_rest_api/models/metric1.rb +100 -0
  294. data/lib/apollo_rest_api/models/mixed_companies_search_response.rb +199 -0
  295. data/lib/apollo_rest_api/models/mixed_people_api_search_response.rb +95 -0
  296. data/lib/apollo_rest_api/models/modality.rb +37 -0
  297. data/lib/apollo_rest_api/models/modality1.rb +37 -0
  298. data/lib/apollo_rest_api/models/modality3.rb +40 -0
  299. data/lib/apollo_rest_api/models/note.rb +260 -0
  300. data/lib/apollo_rest_api/models/notes_response.rb +84 -0
  301. data/lib/apollo_rest_api/models/opportunities_request.rb +175 -0
  302. data/lib/apollo_rest_api/models/opportunities_request1.rb +164 -0
  303. data/lib/apollo_rest_api/models/opportunities_response.rb +76 -0
  304. data/lib/apollo_rest_api/models/opportunities_response1.rb +76 -0
  305. data/lib/apollo_rest_api/models/opportunities_response2.rb +76 -0
  306. data/lib/apollo_rest_api/models/opportunities_search_response.rb +170 -0
  307. data/lib/apollo_rest_api/models/opportunity.rb +602 -0
  308. data/lib/apollo_rest_api/models/opportunity1.rb +574 -0
  309. data/lib/apollo_rest_api/models/opportunity11.rb +217 -0
  310. data/lib/apollo_rest_api/models/opportunity2.rb +583 -0
  311. data/lib/apollo_rest_api/models/opportunity3.rb +594 -0
  312. data/lib/apollo_rest_api/models/opportunity4.rb +574 -0
  313. data/lib/apollo_rest_api/models/opportunity5.rb +591 -0
  314. data/lib/apollo_rest_api/models/opportunity_contact_role.rb +95 -0
  315. data/lib/apollo_rest_api/models/opportunity_contact_role1.rb +135 -0
  316. data/lib/apollo_rest_api/models/opportunity_stage.rb +210 -0
  317. data/lib/apollo_rest_api/models/opportunity_stages_response.rb +85 -0
  318. data/lib/apollo_rest_api/models/organization.rb +659 -0
  319. data/lib/apollo_rest_api/models/organization1.rb +422 -0
  320. data/lib/apollo_rest_api/models/organization2.rb +752 -0
  321. data/lib/apollo_rest_api/models/organization3.rb +600 -0
  322. data/lib/apollo_rest_api/models/organization4.rb +162 -0
  323. data/lib/apollo_rest_api/models/organization5.rb +336 -0
  324. data/lib/apollo_rest_api/models/organization6.rb +264 -0
  325. data/lib/apollo_rest_api/models/organization7.rb +88 -0
  326. data/lib/apollo_rest_api/models/organization_job_posting.rb +144 -0
  327. data/lib/apollo_rest_api/models/organizations_bulk_enrich_request.rb +89 -0
  328. data/lib/apollo_rest_api/models/organizations_bulk_enrich_response.rb +194 -0
  329. data/lib/apollo_rest_api/models/organizations_enrich_response.rb +76 -0
  330. data/lib/apollo_rest_api/models/organizations_job_postings_response.rb +88 -0
  331. data/lib/apollo_rest_api/models/pagination.rb +105 -0
  332. data/lib/apollo_rest_api/models/pagination6.rb +105 -0
  333. data/lib/apollo_rest_api/models/params.rb +116 -0
  334. data/lib/apollo_rest_api/models/participants.rb +85 -0
  335. data/lib/apollo_rest_api/models/paused.rb +26 -0
  336. data/lib/apollo_rest_api/models/people_bulk_match_request.rb +83 -0
  337. data/lib/apollo_rest_api/models/people_bulk_match_response.rb +180 -0
  338. data/lib/apollo_rest_api/models/people_match_response.rb +87 -0
  339. data/lib/apollo_rest_api/models/person.rb +393 -0
  340. data/lib/apollo_rest_api/models/person1.rb +196 -0
  341. data/lib/apollo_rest_api/models/phone_call.rb +131 -0
  342. data/lib/apollo_rest_api/models/phone_number.rb +149 -0
  343. data/lib/apollo_rest_api/models/phone_number1.rb +149 -0
  344. data/lib/apollo_rest_api/models/phone_number3.rb +97 -0
  345. data/lib/apollo_rest_api/models/phone_number4.rb +85 -0
  346. data/lib/apollo_rest_api/models/phone_number5.rb +127 -0
  347. data/lib/apollo_rest_api/models/pivot_group_by.rb +85 -0
  348. data/lib/apollo_rest_api/models/primary_phone.rb +96 -0
  349. data/lib/apollo_rest_api/models/priority.rb +40 -0
  350. data/lib/apollo_rest_api/models/recipient.rb +100 -0
  351. data/lib/apollo_rest_api/models/recipient1.rb +116 -0
  352. data/lib/apollo_rest_api/models/reports_sync_report_request.rb +253 -0
  353. data/lib/apollo_rest_api/models/reports_sync_report_response.rb +102 -0
  354. data/lib/apollo_rest_api/models/request_type.rb +40 -0
  355. data/lib/apollo_rest_api/models/response.rb +118 -0
  356. data/lib/apollo_rest_api/models/role.rb +112 -0
  357. data/lib/apollo_rest_api/models/send_from.rb +116 -0
  358. data/lib/apollo_rest_api/models/sequences_request.rb +391 -0
  359. data/lib/apollo_rest_api/models/sequences_request1.rb +206 -0
  360. data/lib/apollo_rest_api/models/sequences_response.rb +148 -0
  361. data/lib/apollo_rest_api/models/sequences_response1.rb +203 -0
  362. data/lib/apollo_rest_api/models/sharing_access.rb +148 -0
  363. data/lib/apollo_rest_api/models/sharing_permission.rb +154 -0
  364. data/lib/apollo_rest_api/models/skipped_contact_ids.rb +77 -0
  365. data/lib/apollo_rest_api/models/smart_datetime_range.rb +86 -0
  366. data/lib/apollo_rest_api/models/sort.rb +85 -0
  367. data/lib/apollo_rest_api/models/sort_by_field.rb +43 -0
  368. data/lib/apollo_rest_api/models/sort_by_field1.rb +36 -0
  369. data/lib/apollo_rest_api/models/sort_direction.rb +36 -0
  370. data/lib/apollo_rest_api/models/source.rb +40 -0
  371. data/lib/apollo_rest_api/models/status.rb +44 -0
  372. data/lib/apollo_rest_api/models/status2.rb +36 -0
  373. data/lib/apollo_rest_api/models/status3.rb +40 -0
  374. data/lib/apollo_rest_api/models/status4.rb +37 -0
  375. data/lib/apollo_rest_api/models/step.rb +127 -0
  376. data/lib/apollo_rest_api/models/task.rb +394 -0
  377. data/lib/apollo_rest_api/models/task2.rb +536 -0
  378. data/lib/apollo_rest_api/models/task4.rb +524 -0
  379. data/lib/apollo_rest_api/models/task5.rb +104 -0
  380. data/lib/apollo_rest_api/models/task_type.rb +95 -0
  381. data/lib/apollo_rest_api/models/tasks_bulk_create_request.rb +173 -0
  382. data/lib/apollo_rest_api/models/tasks_bulk_create_response.rb +94 -0
  383. data/lib/apollo_rest_api/models/tasks_complete_request.rb +75 -0
  384. data/lib/apollo_rest_api/models/tasks_complete_response.rb +86 -0
  385. data/lib/apollo_rest_api/models/tasks_request.rb +183 -0
  386. data/lib/apollo_rest_api/models/tasks_request1.rb +227 -0
  387. data/lib/apollo_rest_api/models/tasks_response.rb +74 -0
  388. data/lib/apollo_rest_api/models/tasks_response1.rb +74 -0
  389. data/lib/apollo_rest_api/models/tasks_search_response.rb +136 -0
  390. data/lib/apollo_rest_api/models/tasks_skip_request.rb +88 -0
  391. data/lib/apollo_rest_api/models/tasks_skip_response.rb +74 -0
  392. data/lib/apollo_rest_api/models/team.rb +87 -0
  393. data/lib/apollo_rest_api/models/total_facet.rb +95 -0
  394. data/lib/apollo_rest_api/models/true_warmup_thresholds.rb +106 -0
  395. data/lib/apollo_rest_api/models/type.rb +44 -0
  396. data/lib/apollo_rest_api/models/type1.rb +36 -0
  397. data/lib/apollo_rest_api/models/type2.rb +52 -0
  398. data/lib/apollo_rest_api/models/typed_custom_fields.rb +111 -0
  399. data/lib/apollo_rest_api/models/typed_custom_fields6.rb +106 -0
  400. data/lib/apollo_rest_api/models/typed_custom_fields7.rb +243 -0
  401. data/lib/apollo_rest_api/models/typed_custom_fields_response.rb +85 -0
  402. data/lib/apollo_rest_api/models/unique_completed.rb +26 -0
  403. data/lib/apollo_rest_api/models/unique_scheduled.rb +26 -0
  404. data/lib/apollo_rest_api/models/unique_skipped.rb +26 -0
  405. data/lib/apollo_rest_api/models/user.rb +1294 -0
  406. data/lib/apollo_rest_api/models/users_api_profile_response.rb +309 -0
  407. data/lib/apollo_rest_api/models/users_search_response.rb +106 -0
  408. data/lib/apollo_rest_api/models/video_recording.rb +95 -0
  409. data/lib/apollo_rest_api/models/wait_mode.rb +40 -0
  410. data/lib/apollo_rest_api/models/webhook_result_response.rb +140 -0
  411. data/lib/apollo_rest_api/models/webhook_status.rb +40 -0
  412. data/lib/apollo_rest_api/utilities/date_time_helper.rb +11 -0
  413. data/lib/apollo_rest_api/utilities/file_wrapper.rb +28 -0
  414. data/lib/apollo_rest_api/utilities/union_type_lookup.rb +128 -0
  415. data/lib/apollo_rest_api.rb +503 -0
  416. metadata +499 -0
@@ -0,0 +1,893 @@
1
+ # apollo_rest_api
2
+ #
3
+ # This file was automatically generated by APIMATIC v3.0 (
4
+ # https://www.apimatic.io ).
5
+
6
+ module ApolloRestApi
7
+ # Contact5 Model.
8
+ class Contact5 < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # TODO: Write general description for this method
13
+ # @return [Array[Object]]
14
+ attr_accessor :contact_roles
15
+
16
+ # TODO: Write general description for this method
17
+ # @return [String]
18
+ attr_accessor :id
19
+
20
+ # TODO: Write general description for this method
21
+ # @return [String]
22
+ attr_accessor :first_name
23
+
24
+ # TODO: Write general description for this method
25
+ # @return [String]
26
+ attr_accessor :last_name
27
+
28
+ # TODO: Write general description for this method
29
+ # @return [String]
30
+ attr_accessor :name
31
+
32
+ # TODO: Write general description for this method
33
+ # @return [Object]
34
+ attr_accessor :linkedin_url
35
+
36
+ # TODO: Write general description for this method
37
+ # @return [String]
38
+ attr_accessor :title
39
+
40
+ # TODO: Write general description for this method
41
+ # @return [String]
42
+ attr_accessor :contact_stage_id
43
+
44
+ # TODO: Write general description for this method
45
+ # @return [String]
46
+ attr_accessor :owner_id
47
+
48
+ # TODO: Write general description for this method
49
+ # @return [String]
50
+ attr_accessor :creator_id
51
+
52
+ # TODO: Write general description for this method
53
+ # @return [Object]
54
+ attr_accessor :person_id
55
+
56
+ # TODO: Write general description for this method
57
+ # @return [Object]
58
+ attr_accessor :email_needs_tickling
59
+
60
+ # TODO: Write general description for this method
61
+ # @return [String]
62
+ attr_accessor :organization_name
63
+
64
+ # TODO: Write general description for this method
65
+ # @return [String]
66
+ attr_accessor :source
67
+
68
+ # TODO: Write general description for this method
69
+ # @return [String]
70
+ attr_accessor :original_source
71
+
72
+ # TODO: Write general description for this method
73
+ # @return [String]
74
+ attr_accessor :organization_id
75
+
76
+ # TODO: Write general description for this method
77
+ # @return [Object]
78
+ attr_accessor :headline
79
+
80
+ # TODO: Write general description for this method
81
+ # @return [Object]
82
+ attr_accessor :photo_url
83
+
84
+ # TODO: Write general description for this method
85
+ # @return [Object]
86
+ attr_accessor :present_raw_address
87
+
88
+ # TODO: Write general description for this method
89
+ # @return [Object]
90
+ attr_accessor :linkedin_uid
91
+
92
+ # TODO: Write general description for this method
93
+ # @return [Float]
94
+ attr_accessor :extrapolated_email_confidence
95
+
96
+ # TODO: Write general description for this method
97
+ # @return [Object]
98
+ attr_accessor :salesforce_id
99
+
100
+ # TODO: Write general description for this method
101
+ # @return [Object]
102
+ attr_accessor :salesforce_lead_id
103
+
104
+ # TODO: Write general description for this method
105
+ # @return [Object]
106
+ attr_accessor :salesforce_contact_id
107
+
108
+ # TODO: Write general description for this method
109
+ # @return [Object]
110
+ attr_accessor :salesforce_account_id
111
+
112
+ # TODO: Write general description for this method
113
+ # @return [Object]
114
+ attr_accessor :crm_owner_id
115
+
116
+ # TODO: Write general description for this method
117
+ # @return [String]
118
+ attr_accessor :created_at
119
+
120
+ # TODO: Write general description for this method
121
+ # @return [Array[Object]]
122
+ attr_accessor :emailer_campaign_ids
123
+
124
+ # TODO: Write general description for this method
125
+ # @return [Object]
126
+ attr_accessor :direct_dial_status
127
+
128
+ # TODO: Write general description for this method
129
+ # @return [Object]
130
+ attr_accessor :direct_dial_enrichment_failed_at
131
+
132
+ # TODO: Write general description for this method
133
+ # @return [String]
134
+ attr_accessor :email_status
135
+
136
+ # TODO: Write general description for this method
137
+ # @return [Object]
138
+ attr_accessor :email_source
139
+
140
+ # TODO: Write general description for this method
141
+ # @return [String]
142
+ attr_accessor :account_id
143
+
144
+ # TODO: Write general description for this method
145
+ # @return [Object]
146
+ attr_accessor :last_activity_date
147
+
148
+ # TODO: Write general description for this method
149
+ # @return [Object]
150
+ attr_accessor :hubspot_vid
151
+
152
+ # TODO: Write general description for this method
153
+ # @return [Object]
154
+ attr_accessor :hubspot_company_id
155
+
156
+ # TODO: Write general description for this method
157
+ # @return [Object]
158
+ attr_accessor :crm_id
159
+
160
+ # TODO: Write general description for this method
161
+ # @return [Object]
162
+ attr_accessor :sanitized_phone
163
+
164
+ # TODO: Write general description for this method
165
+ # @return [Object]
166
+ attr_accessor :merged_crm_ids
167
+
168
+ # TODO: Write general description for this method
169
+ # @return [String]
170
+ attr_accessor :updated_at
171
+
172
+ # TODO: Write general description for this method
173
+ # @return [TrueClass | FalseClass]
174
+ attr_accessor :queued_for_crm_push
175
+
176
+ # TODO: Write general description for this method
177
+ # @return [Object]
178
+ attr_accessor :suggested_from_rule_engine_config_id
179
+
180
+ # TODO: Write general description for this method
181
+ # @return [Object]
182
+ attr_accessor :email_unsubscribed
183
+
184
+ # TODO: Write general description for this method
185
+ # @return [Array[Object]]
186
+ attr_accessor :label_ids
187
+
188
+ # TODO: Write general description for this method
189
+ # @return [TrueClass | FalseClass]
190
+ attr_accessor :has_pending_email_arcgate_request
191
+
192
+ # TODO: Write general description for this method
193
+ # @return [TrueClass | FalseClass]
194
+ attr_accessor :has_email_arcgate_request
195
+
196
+ # TODO: Write general description for this method
197
+ # @return [String]
198
+ attr_accessor :existence_level
199
+
200
+ # TODO: Write general description for this method
201
+ # @return [String]
202
+ attr_accessor :email
203
+
204
+ # TODO: Write general description for this method
205
+ # @return [TrueClass | FalseClass]
206
+ attr_accessor :email_from_customer
207
+
208
+ # TODO: Write general description for this method
209
+ # @return [Object]
210
+ attr_accessor :typed_custom_fields
211
+
212
+ # TODO: Write general description for this method
213
+ # @return [Object]
214
+ attr_accessor :custom_field_errors
215
+
216
+ # TODO: Write general description for this method
217
+ # @return [Object]
218
+ attr_accessor :crm_record_url
219
+
220
+ # TODO: Write general description for this method
221
+ # @return [Object]
222
+ attr_accessor :email_status_unavailable_reason
223
+
224
+ # TODO: Write general description for this method
225
+ # @return [String]
226
+ attr_accessor :email_true_status
227
+
228
+ # TODO: Write general description for this method
229
+ # @return [TrueClass | FalseClass]
230
+ attr_accessor :updated_email_true_status
231
+
232
+ # TODO: Write general description for this method
233
+ # @return [Array[Object]]
234
+ attr_accessor :contact_rule_config_statuses
235
+
236
+ # TODO: Write general description for this method
237
+ # @return [String]
238
+ attr_accessor :source_display_name
239
+
240
+ # TODO: Write general description for this method
241
+ # @return [Object]
242
+ attr_accessor :twitter_url
243
+
244
+ # Array of campaign statuses for the contact, showing their participation in
245
+ # various email sequences
246
+ # @return [Array[ContactCampaignStatus]]
247
+ attr_accessor :contact_campaign_statuses
248
+
249
+ # Array of campaign statuses for the contact, showing their participation in
250
+ # various email sequences
251
+ # @return [Account9]
252
+ attr_accessor :account
253
+
254
+ # Array of campaign statuses for the contact, showing their participation in
255
+ # various email sequences
256
+ # @return [Array[Object]]
257
+ attr_accessor :contact_emails
258
+
259
+ # Array of campaign statuses for the contact, showing their participation in
260
+ # various email sequences
261
+ # @return [Organization6]
262
+ attr_accessor :organization
263
+
264
+ # Array of campaign statuses for the contact, showing their participation in
265
+ # various email sequences
266
+ # @return [Object]
267
+ attr_accessor :intent_strength
268
+
269
+ # Array of campaign statuses for the contact, showing their participation in
270
+ # various email sequences
271
+ # @return [TrueClass | FalseClass]
272
+ attr_accessor :show_intent
273
+
274
+ # Array of campaign statuses for the contact, showing their participation in
275
+ # various email sequences
276
+ # @return [Array[Object]]
277
+ attr_accessor :phone_numbers
278
+
279
+ # Array of campaign statuses for the contact, showing their participation in
280
+ # various email sequences
281
+ # @return [Object]
282
+ attr_accessor :account_phone_note
283
+
284
+ # Array of campaign statuses for the contact, showing their participation in
285
+ # various email sequences
286
+ # @return [TrueClass | FalseClass]
287
+ attr_accessor :free_domain
288
+
289
+ # Array of campaign statuses for the contact, showing their participation in
290
+ # various email sequences
291
+ # @return [TrueClass | FalseClass]
292
+ attr_accessor :is_likely_to_engage
293
+
294
+ # Array of campaign statuses for the contact, showing their participation in
295
+ # various email sequences
296
+ # @return [TrueClass | FalseClass]
297
+ attr_accessor :email_domain_catchall
298
+
299
+ # Array of campaign statuses for the contact, showing their participation in
300
+ # various email sequences
301
+ # @return [Object]
302
+ attr_accessor :contact_job_change_event
303
+
304
+ # A mapping from model property names to API property names.
305
+ def self.names
306
+ @_hash = {} if @_hash.nil?
307
+ @_hash['contact_roles'] = 'contact_roles'
308
+ @_hash['id'] = 'id'
309
+ @_hash['first_name'] = 'first_name'
310
+ @_hash['last_name'] = 'last_name'
311
+ @_hash['name'] = 'name'
312
+ @_hash['linkedin_url'] = 'linkedin_url'
313
+ @_hash['title'] = 'title'
314
+ @_hash['contact_stage_id'] = 'contact_stage_id'
315
+ @_hash['owner_id'] = 'owner_id'
316
+ @_hash['creator_id'] = 'creator_id'
317
+ @_hash['person_id'] = 'person_id'
318
+ @_hash['email_needs_tickling'] = 'email_needs_tickling'
319
+ @_hash['organization_name'] = 'organization_name'
320
+ @_hash['source'] = 'source'
321
+ @_hash['original_source'] = 'original_source'
322
+ @_hash['organization_id'] = 'organization_id'
323
+ @_hash['headline'] = 'headline'
324
+ @_hash['photo_url'] = 'photo_url'
325
+ @_hash['present_raw_address'] = 'present_raw_address'
326
+ @_hash['linkedin_uid'] = 'linkedin_uid'
327
+ @_hash['extrapolated_email_confidence'] =
328
+ 'extrapolated_email_confidence'
329
+ @_hash['salesforce_id'] = 'salesforce_id'
330
+ @_hash['salesforce_lead_id'] = 'salesforce_lead_id'
331
+ @_hash['salesforce_contact_id'] = 'salesforce_contact_id'
332
+ @_hash['salesforce_account_id'] = 'salesforce_account_id'
333
+ @_hash['crm_owner_id'] = 'crm_owner_id'
334
+ @_hash['created_at'] = 'created_at'
335
+ @_hash['emailer_campaign_ids'] = 'emailer_campaign_ids'
336
+ @_hash['direct_dial_status'] = 'direct_dial_status'
337
+ @_hash['direct_dial_enrichment_failed_at'] =
338
+ 'direct_dial_enrichment_failed_at'
339
+ @_hash['email_status'] = 'email_status'
340
+ @_hash['email_source'] = 'email_source'
341
+ @_hash['account_id'] = 'account_id'
342
+ @_hash['last_activity_date'] = 'last_activity_date'
343
+ @_hash['hubspot_vid'] = 'hubspot_vid'
344
+ @_hash['hubspot_company_id'] = 'hubspot_company_id'
345
+ @_hash['crm_id'] = 'crm_id'
346
+ @_hash['sanitized_phone'] = 'sanitized_phone'
347
+ @_hash['merged_crm_ids'] = 'merged_crm_ids'
348
+ @_hash['updated_at'] = 'updated_at'
349
+ @_hash['queued_for_crm_push'] = 'queued_for_crm_push'
350
+ @_hash['suggested_from_rule_engine_config_id'] =
351
+ 'suggested_from_rule_engine_config_id'
352
+ @_hash['email_unsubscribed'] = 'email_unsubscribed'
353
+ @_hash['label_ids'] = 'label_ids'
354
+ @_hash['has_pending_email_arcgate_request'] =
355
+ 'has_pending_email_arcgate_request'
356
+ @_hash['has_email_arcgate_request'] = 'has_email_arcgate_request'
357
+ @_hash['existence_level'] = 'existence_level'
358
+ @_hash['email'] = 'email'
359
+ @_hash['email_from_customer'] = 'email_from_customer'
360
+ @_hash['typed_custom_fields'] = 'typed_custom_fields'
361
+ @_hash['custom_field_errors'] = 'custom_field_errors'
362
+ @_hash['crm_record_url'] = 'crm_record_url'
363
+ @_hash['email_status_unavailable_reason'] =
364
+ 'email_status_unavailable_reason'
365
+ @_hash['email_true_status'] = 'email_true_status'
366
+ @_hash['updated_email_true_status'] = 'updated_email_true_status'
367
+ @_hash['contact_rule_config_statuses'] = 'contact_rule_config_statuses'
368
+ @_hash['source_display_name'] = 'source_display_name'
369
+ @_hash['twitter_url'] = 'twitter_url'
370
+ @_hash['contact_campaign_statuses'] = 'contact_campaign_statuses'
371
+ @_hash['account'] = 'account'
372
+ @_hash['contact_emails'] = 'contact_emails'
373
+ @_hash['organization'] = 'organization'
374
+ @_hash['intent_strength'] = 'intent_strength'
375
+ @_hash['show_intent'] = 'show_intent'
376
+ @_hash['phone_numbers'] = 'phone_numbers'
377
+ @_hash['account_phone_note'] = 'account_phone_note'
378
+ @_hash['free_domain'] = 'free_domain'
379
+ @_hash['is_likely_to_engage'] = 'is_likely_to_engage'
380
+ @_hash['email_domain_catchall'] = 'email_domain_catchall'
381
+ @_hash['contact_job_change_event'] = 'contact_job_change_event'
382
+ @_hash
383
+ end
384
+
385
+ # An array for optional fields
386
+ def self.optionals
387
+ %w[
388
+ contact_roles
389
+ id
390
+ first_name
391
+ last_name
392
+ name
393
+ linkedin_url
394
+ title
395
+ contact_stage_id
396
+ owner_id
397
+ creator_id
398
+ person_id
399
+ email_needs_tickling
400
+ organization_name
401
+ source
402
+ original_source
403
+ organization_id
404
+ headline
405
+ photo_url
406
+ present_raw_address
407
+ linkedin_uid
408
+ extrapolated_email_confidence
409
+ salesforce_id
410
+ salesforce_lead_id
411
+ salesforce_contact_id
412
+ salesforce_account_id
413
+ crm_owner_id
414
+ created_at
415
+ emailer_campaign_ids
416
+ direct_dial_status
417
+ direct_dial_enrichment_failed_at
418
+ email_status
419
+ email_source
420
+ account_id
421
+ last_activity_date
422
+ hubspot_vid
423
+ hubspot_company_id
424
+ crm_id
425
+ sanitized_phone
426
+ merged_crm_ids
427
+ updated_at
428
+ queued_for_crm_push
429
+ suggested_from_rule_engine_config_id
430
+ email_unsubscribed
431
+ label_ids
432
+ has_pending_email_arcgate_request
433
+ has_email_arcgate_request
434
+ existence_level
435
+ email
436
+ email_from_customer
437
+ typed_custom_fields
438
+ custom_field_errors
439
+ crm_record_url
440
+ email_status_unavailable_reason
441
+ email_true_status
442
+ updated_email_true_status
443
+ contact_rule_config_statuses
444
+ source_display_name
445
+ twitter_url
446
+ contact_campaign_statuses
447
+ account
448
+ contact_emails
449
+ organization
450
+ intent_strength
451
+ show_intent
452
+ phone_numbers
453
+ account_phone_note
454
+ free_domain
455
+ is_likely_to_engage
456
+ email_domain_catchall
457
+ contact_job_change_event
458
+ ]
459
+ end
460
+
461
+ # An array for nullable fields
462
+ def self.nullables
463
+ %w[
464
+ extrapolated_email_confidence
465
+ ]
466
+ end
467
+
468
+ def initialize(contact_roles: SKIP, id: SKIP, first_name: SKIP,
469
+ last_name: SKIP, name: SKIP, linkedin_url: SKIP, title: SKIP,
470
+ contact_stage_id: SKIP, owner_id: SKIP, creator_id: SKIP,
471
+ person_id: SKIP, email_needs_tickling: SKIP,
472
+ organization_name: SKIP, source: SKIP, original_source: SKIP,
473
+ organization_id: SKIP, headline: SKIP, photo_url: SKIP,
474
+ present_raw_address: SKIP, linkedin_uid: SKIP,
475
+ extrapolated_email_confidence: SKIP, salesforce_id: SKIP,
476
+ salesforce_lead_id: SKIP, salesforce_contact_id: SKIP,
477
+ salesforce_account_id: SKIP, crm_owner_id: SKIP,
478
+ created_at: SKIP, emailer_campaign_ids: SKIP,
479
+ direct_dial_status: SKIP,
480
+ direct_dial_enrichment_failed_at: SKIP, email_status: SKIP,
481
+ email_source: SKIP, account_id: SKIP,
482
+ last_activity_date: SKIP, hubspot_vid: SKIP,
483
+ hubspot_company_id: SKIP, crm_id: SKIP,
484
+ sanitized_phone: SKIP, merged_crm_ids: SKIP,
485
+ updated_at: SKIP, queued_for_crm_push: true,
486
+ suggested_from_rule_engine_config_id: SKIP,
487
+ email_unsubscribed: SKIP, label_ids: SKIP,
488
+ has_pending_email_arcgate_request: true,
489
+ has_email_arcgate_request: true, existence_level: SKIP,
490
+ email: SKIP, email_from_customer: true,
491
+ typed_custom_fields: SKIP, custom_field_errors: SKIP,
492
+ crm_record_url: SKIP, email_status_unavailable_reason: SKIP,
493
+ email_true_status: SKIP, updated_email_true_status: true,
494
+ contact_rule_config_statuses: SKIP,
495
+ source_display_name: SKIP, twitter_url: SKIP,
496
+ contact_campaign_statuses: SKIP, account: SKIP,
497
+ contact_emails: SKIP, organization: SKIP,
498
+ intent_strength: SKIP, show_intent: true,
499
+ phone_numbers: SKIP, account_phone_note: SKIP,
500
+ free_domain: true, is_likely_to_engage: true,
501
+ email_domain_catchall: true, contact_job_change_event: SKIP,
502
+ additional_properties: nil)
503
+ # Add additional model properties to the instance
504
+ additional_properties = {} if additional_properties.nil?
505
+
506
+ @contact_roles = contact_roles unless contact_roles == SKIP
507
+ @id = id unless id == SKIP
508
+ @first_name = first_name unless first_name == SKIP
509
+ @last_name = last_name unless last_name == SKIP
510
+ @name = name unless name == SKIP
511
+ @linkedin_url = linkedin_url unless linkedin_url == SKIP
512
+ @title = title unless title == SKIP
513
+ @contact_stage_id = contact_stage_id unless contact_stage_id == SKIP
514
+ @owner_id = owner_id unless owner_id == SKIP
515
+ @creator_id = creator_id unless creator_id == SKIP
516
+ @person_id = person_id unless person_id == SKIP
517
+ @email_needs_tickling = email_needs_tickling unless email_needs_tickling == SKIP
518
+ @organization_name = organization_name unless organization_name == SKIP
519
+ @source = source unless source == SKIP
520
+ @original_source = original_source unless original_source == SKIP
521
+ @organization_id = organization_id unless organization_id == SKIP
522
+ @headline = headline unless headline == SKIP
523
+ @photo_url = photo_url unless photo_url == SKIP
524
+ @present_raw_address = present_raw_address unless present_raw_address == SKIP
525
+ @linkedin_uid = linkedin_uid unless linkedin_uid == SKIP
526
+ unless extrapolated_email_confidence == SKIP
527
+ @extrapolated_email_confidence =
528
+ extrapolated_email_confidence
529
+ end
530
+ @salesforce_id = salesforce_id unless salesforce_id == SKIP
531
+ @salesforce_lead_id = salesforce_lead_id unless salesforce_lead_id == SKIP
532
+ @salesforce_contact_id = salesforce_contact_id unless salesforce_contact_id == SKIP
533
+ @salesforce_account_id = salesforce_account_id unless salesforce_account_id == SKIP
534
+ @crm_owner_id = crm_owner_id unless crm_owner_id == SKIP
535
+ @created_at = created_at unless created_at == SKIP
536
+ @emailer_campaign_ids = emailer_campaign_ids unless emailer_campaign_ids == SKIP
537
+ @direct_dial_status = direct_dial_status unless direct_dial_status == SKIP
538
+ unless direct_dial_enrichment_failed_at == SKIP
539
+ @direct_dial_enrichment_failed_at =
540
+ direct_dial_enrichment_failed_at
541
+ end
542
+ @email_status = email_status unless email_status == SKIP
543
+ @email_source = email_source unless email_source == SKIP
544
+ @account_id = account_id unless account_id == SKIP
545
+ @last_activity_date = last_activity_date unless last_activity_date == SKIP
546
+ @hubspot_vid = hubspot_vid unless hubspot_vid == SKIP
547
+ @hubspot_company_id = hubspot_company_id unless hubspot_company_id == SKIP
548
+ @crm_id = crm_id unless crm_id == SKIP
549
+ @sanitized_phone = sanitized_phone unless sanitized_phone == SKIP
550
+ @merged_crm_ids = merged_crm_ids unless merged_crm_ids == SKIP
551
+ @updated_at = updated_at unless updated_at == SKIP
552
+ @queued_for_crm_push = queued_for_crm_push unless queued_for_crm_push == SKIP
553
+ unless suggested_from_rule_engine_config_id == SKIP
554
+ @suggested_from_rule_engine_config_id =
555
+ suggested_from_rule_engine_config_id
556
+ end
557
+ @email_unsubscribed = email_unsubscribed unless email_unsubscribed == SKIP
558
+ @label_ids = label_ids unless label_ids == SKIP
559
+ unless has_pending_email_arcgate_request == SKIP
560
+ @has_pending_email_arcgate_request =
561
+ has_pending_email_arcgate_request
562
+ end
563
+ unless has_email_arcgate_request == SKIP
564
+ @has_email_arcgate_request =
565
+ has_email_arcgate_request
566
+ end
567
+ @existence_level = existence_level unless existence_level == SKIP
568
+ @email = email unless email == SKIP
569
+ @email_from_customer = email_from_customer unless email_from_customer == SKIP
570
+ @typed_custom_fields = typed_custom_fields unless typed_custom_fields == SKIP
571
+ @custom_field_errors = custom_field_errors unless custom_field_errors == SKIP
572
+ @crm_record_url = crm_record_url unless crm_record_url == SKIP
573
+ unless email_status_unavailable_reason == SKIP
574
+ @email_status_unavailable_reason =
575
+ email_status_unavailable_reason
576
+ end
577
+ @email_true_status = email_true_status unless email_true_status == SKIP
578
+ unless updated_email_true_status == SKIP
579
+ @updated_email_true_status =
580
+ updated_email_true_status
581
+ end
582
+ unless contact_rule_config_statuses == SKIP
583
+ @contact_rule_config_statuses =
584
+ contact_rule_config_statuses
585
+ end
586
+ @source_display_name = source_display_name unless source_display_name == SKIP
587
+ @twitter_url = twitter_url unless twitter_url == SKIP
588
+ unless contact_campaign_statuses == SKIP
589
+ @contact_campaign_statuses =
590
+ contact_campaign_statuses
591
+ end
592
+ @account = account unless account == SKIP
593
+ @contact_emails = contact_emails unless contact_emails == SKIP
594
+ @organization = organization unless organization == SKIP
595
+ @intent_strength = intent_strength unless intent_strength == SKIP
596
+ @show_intent = show_intent unless show_intent == SKIP
597
+ @phone_numbers = phone_numbers unless phone_numbers == SKIP
598
+ @account_phone_note = account_phone_note unless account_phone_note == SKIP
599
+ @free_domain = free_domain unless free_domain == SKIP
600
+ @is_likely_to_engage = is_likely_to_engage unless is_likely_to_engage == SKIP
601
+ @email_domain_catchall = email_domain_catchall unless email_domain_catchall == SKIP
602
+ @contact_job_change_event = contact_job_change_event unless contact_job_change_event == SKIP
603
+ @additional_properties = additional_properties
604
+ end
605
+
606
+ # Creates an instance of the object from a hash.
607
+ def self.from_hash(hash)
608
+ return nil unless hash
609
+
610
+ # Extract variables from the hash.
611
+ contact_roles = hash.key?('contact_roles') ? hash['contact_roles'] : SKIP
612
+ id = hash.key?('id') ? hash['id'] : SKIP
613
+ first_name = hash.key?('first_name') ? hash['first_name'] : SKIP
614
+ last_name = hash.key?('last_name') ? hash['last_name'] : SKIP
615
+ name = hash.key?('name') ? hash['name'] : SKIP
616
+ linkedin_url = hash.key?('linkedin_url') ? hash['linkedin_url'] : SKIP
617
+ title = hash.key?('title') ? hash['title'] : SKIP
618
+ contact_stage_id =
619
+ hash.key?('contact_stage_id') ? hash['contact_stage_id'] : SKIP
620
+ owner_id = hash.key?('owner_id') ? hash['owner_id'] : SKIP
621
+ creator_id = hash.key?('creator_id') ? hash['creator_id'] : SKIP
622
+ person_id = hash.key?('person_id') ? hash['person_id'] : SKIP
623
+ email_needs_tickling =
624
+ hash.key?('email_needs_tickling') ? hash['email_needs_tickling'] : SKIP
625
+ organization_name =
626
+ hash.key?('organization_name') ? hash['organization_name'] : SKIP
627
+ source = hash.key?('source') ? hash['source'] : SKIP
628
+ original_source =
629
+ hash.key?('original_source') ? hash['original_source'] : SKIP
630
+ organization_id =
631
+ hash.key?('organization_id') ? hash['organization_id'] : SKIP
632
+ headline = hash.key?('headline') ? hash['headline'] : SKIP
633
+ photo_url = hash.key?('photo_url') ? hash['photo_url'] : SKIP
634
+ present_raw_address =
635
+ hash.key?('present_raw_address') ? hash['present_raw_address'] : SKIP
636
+ linkedin_uid = hash.key?('linkedin_uid') ? hash['linkedin_uid'] : SKIP
637
+ extrapolated_email_confidence =
638
+ hash.key?('extrapolated_email_confidence') ? hash['extrapolated_email_confidence'] : SKIP
639
+ salesforce_id = hash.key?('salesforce_id') ? hash['salesforce_id'] : SKIP
640
+ salesforce_lead_id =
641
+ hash.key?('salesforce_lead_id') ? hash['salesforce_lead_id'] : SKIP
642
+ salesforce_contact_id =
643
+ hash.key?('salesforce_contact_id') ? hash['salesforce_contact_id'] : SKIP
644
+ salesforce_account_id =
645
+ hash.key?('salesforce_account_id') ? hash['salesforce_account_id'] : SKIP
646
+ crm_owner_id = hash.key?('crm_owner_id') ? hash['crm_owner_id'] : SKIP
647
+ created_at = hash.key?('created_at') ? hash['created_at'] : SKIP
648
+ emailer_campaign_ids =
649
+ hash.key?('emailer_campaign_ids') ? hash['emailer_campaign_ids'] : SKIP
650
+ direct_dial_status =
651
+ hash.key?('direct_dial_status') ? hash['direct_dial_status'] : SKIP
652
+ direct_dial_enrichment_failed_at =
653
+ hash.key?('direct_dial_enrichment_failed_at') ? hash['direct_dial_enrichment_failed_at'] : SKIP
654
+ email_status = hash.key?('email_status') ? hash['email_status'] : SKIP
655
+ email_source = hash.key?('email_source') ? hash['email_source'] : SKIP
656
+ account_id = hash.key?('account_id') ? hash['account_id'] : SKIP
657
+ last_activity_date =
658
+ hash.key?('last_activity_date') ? hash['last_activity_date'] : SKIP
659
+ hubspot_vid = hash.key?('hubspot_vid') ? hash['hubspot_vid'] : SKIP
660
+ hubspot_company_id =
661
+ hash.key?('hubspot_company_id') ? hash['hubspot_company_id'] : SKIP
662
+ crm_id = hash.key?('crm_id') ? hash['crm_id'] : SKIP
663
+ sanitized_phone =
664
+ hash.key?('sanitized_phone') ? hash['sanitized_phone'] : SKIP
665
+ merged_crm_ids =
666
+ hash.key?('merged_crm_ids') ? hash['merged_crm_ids'] : SKIP
667
+ updated_at = hash.key?('updated_at') ? hash['updated_at'] : SKIP
668
+ queued_for_crm_push = hash['queued_for_crm_push'] ||= true
669
+ suggested_from_rule_engine_config_id =
670
+ hash.key?('suggested_from_rule_engine_config_id') ? hash['suggested_from_rule_engine_config_id'] : SKIP
671
+ email_unsubscribed =
672
+ hash.key?('email_unsubscribed') ? hash['email_unsubscribed'] : SKIP
673
+ label_ids = hash.key?('label_ids') ? hash['label_ids'] : SKIP
674
+ has_pending_email_arcgate_request =
675
+ hash['has_pending_email_arcgate_request'] ||= true
676
+ has_email_arcgate_request = hash['has_email_arcgate_request'] ||= true
677
+ existence_level =
678
+ hash.key?('existence_level') ? hash['existence_level'] : SKIP
679
+ email = hash.key?('email') ? hash['email'] : SKIP
680
+ email_from_customer = hash['email_from_customer'] ||= true
681
+ typed_custom_fields =
682
+ hash.key?('typed_custom_fields') ? hash['typed_custom_fields'] : SKIP
683
+ custom_field_errors =
684
+ hash.key?('custom_field_errors') ? hash['custom_field_errors'] : SKIP
685
+ crm_record_url =
686
+ hash.key?('crm_record_url') ? hash['crm_record_url'] : SKIP
687
+ email_status_unavailable_reason =
688
+ hash.key?('email_status_unavailable_reason') ? hash['email_status_unavailable_reason'] : SKIP
689
+ email_true_status =
690
+ hash.key?('email_true_status') ? hash['email_true_status'] : SKIP
691
+ updated_email_true_status = hash['updated_email_true_status'] ||= true
692
+ contact_rule_config_statuses =
693
+ hash.key?('contact_rule_config_statuses') ? hash['contact_rule_config_statuses'] : SKIP
694
+ source_display_name =
695
+ hash.key?('source_display_name') ? hash['source_display_name'] : SKIP
696
+ twitter_url = hash.key?('twitter_url') ? hash['twitter_url'] : SKIP
697
+ # Parameter is an array, so we need to iterate through it
698
+ contact_campaign_statuses = nil
699
+ unless hash['contact_campaign_statuses'].nil?
700
+ contact_campaign_statuses = []
701
+ hash['contact_campaign_statuses'].each do |structure|
702
+ contact_campaign_statuses << (ContactCampaignStatus.from_hash(structure) if structure)
703
+ end
704
+ end
705
+
706
+ contact_campaign_statuses = SKIP unless hash.key?('contact_campaign_statuses')
707
+ account = Account9.from_hash(hash['account']) if hash['account']
708
+ contact_emails =
709
+ hash.key?('contact_emails') ? hash['contact_emails'] : SKIP
710
+ organization = Organization6.from_hash(hash['organization']) if hash['organization']
711
+ intent_strength =
712
+ hash.key?('intent_strength') ? hash['intent_strength'] : SKIP
713
+ show_intent = hash['show_intent'] ||= true
714
+ phone_numbers = hash.key?('phone_numbers') ? hash['phone_numbers'] : SKIP
715
+ account_phone_note =
716
+ hash.key?('account_phone_note') ? hash['account_phone_note'] : SKIP
717
+ free_domain = hash['free_domain'] ||= true
718
+ is_likely_to_engage = hash['is_likely_to_engage'] ||= true
719
+ email_domain_catchall = hash['email_domain_catchall'] ||= true
720
+ contact_job_change_event =
721
+ hash.key?('contact_job_change_event') ? hash['contact_job_change_event'] : SKIP
722
+
723
+ # Create a new hash for additional properties, removing known properties.
724
+ new_hash = hash.reject { |k, _| names.value?(k) }
725
+
726
+ additional_properties = APIHelper.get_additional_properties(
727
+ new_hash, proc { |value| value }
728
+ )
729
+
730
+ # Create object from extracted values.
731
+ Contact5.new(contact_roles: contact_roles,
732
+ id: id,
733
+ first_name: first_name,
734
+ last_name: last_name,
735
+ name: name,
736
+ linkedin_url: linkedin_url,
737
+ title: title,
738
+ contact_stage_id: contact_stage_id,
739
+ owner_id: owner_id,
740
+ creator_id: creator_id,
741
+ person_id: person_id,
742
+ email_needs_tickling: email_needs_tickling,
743
+ organization_name: organization_name,
744
+ source: source,
745
+ original_source: original_source,
746
+ organization_id: organization_id,
747
+ headline: headline,
748
+ photo_url: photo_url,
749
+ present_raw_address: present_raw_address,
750
+ linkedin_uid: linkedin_uid,
751
+ extrapolated_email_confidence: extrapolated_email_confidence,
752
+ salesforce_id: salesforce_id,
753
+ salesforce_lead_id: salesforce_lead_id,
754
+ salesforce_contact_id: salesforce_contact_id,
755
+ salesforce_account_id: salesforce_account_id,
756
+ crm_owner_id: crm_owner_id,
757
+ created_at: created_at,
758
+ emailer_campaign_ids: emailer_campaign_ids,
759
+ direct_dial_status: direct_dial_status,
760
+ direct_dial_enrichment_failed_at: direct_dial_enrichment_failed_at,
761
+ email_status: email_status,
762
+ email_source: email_source,
763
+ account_id: account_id,
764
+ last_activity_date: last_activity_date,
765
+ hubspot_vid: hubspot_vid,
766
+ hubspot_company_id: hubspot_company_id,
767
+ crm_id: crm_id,
768
+ sanitized_phone: sanitized_phone,
769
+ merged_crm_ids: merged_crm_ids,
770
+ updated_at: updated_at,
771
+ queued_for_crm_push: queued_for_crm_push,
772
+ suggested_from_rule_engine_config_id: suggested_from_rule_engine_config_id,
773
+ email_unsubscribed: email_unsubscribed,
774
+ label_ids: label_ids,
775
+ has_pending_email_arcgate_request: has_pending_email_arcgate_request,
776
+ has_email_arcgate_request: has_email_arcgate_request,
777
+ existence_level: existence_level,
778
+ email: email,
779
+ email_from_customer: email_from_customer,
780
+ typed_custom_fields: typed_custom_fields,
781
+ custom_field_errors: custom_field_errors,
782
+ crm_record_url: crm_record_url,
783
+ email_status_unavailable_reason: email_status_unavailable_reason,
784
+ email_true_status: email_true_status,
785
+ updated_email_true_status: updated_email_true_status,
786
+ contact_rule_config_statuses: contact_rule_config_statuses,
787
+ source_display_name: source_display_name,
788
+ twitter_url: twitter_url,
789
+ contact_campaign_statuses: contact_campaign_statuses,
790
+ account: account,
791
+ contact_emails: contact_emails,
792
+ organization: organization,
793
+ intent_strength: intent_strength,
794
+ show_intent: show_intent,
795
+ phone_numbers: phone_numbers,
796
+ account_phone_note: account_phone_note,
797
+ free_domain: free_domain,
798
+ is_likely_to_engage: is_likely_to_engage,
799
+ email_domain_catchall: email_domain_catchall,
800
+ contact_job_change_event: contact_job_change_event,
801
+ additional_properties: additional_properties)
802
+ end
803
+
804
+ # Provides a human-readable string representation of the object.
805
+ def to_s
806
+ class_name = self.class.name.split('::').last
807
+ "<#{class_name} contact_roles: #{@contact_roles}, id: #{@id}, first_name: #{@first_name},"\
808
+ " last_name: #{@last_name}, name: #{@name}, linkedin_url: #{@linkedin_url}, title:"\
809
+ " #{@title}, contact_stage_id: #{@contact_stage_id}, owner_id: #{@owner_id}, creator_id:"\
810
+ " #{@creator_id}, person_id: #{@person_id}, email_needs_tickling: #{@email_needs_tickling},"\
811
+ " organization_name: #{@organization_name}, source: #{@source}, original_source:"\
812
+ " #{@original_source}, organization_id: #{@organization_id}, headline: #{@headline},"\
813
+ " photo_url: #{@photo_url}, present_raw_address: #{@present_raw_address}, linkedin_uid:"\
814
+ " #{@linkedin_uid}, extrapolated_email_confidence: #{@extrapolated_email_confidence},"\
815
+ " salesforce_id: #{@salesforce_id}, salesforce_lead_id: #{@salesforce_lead_id},"\
816
+ " salesforce_contact_id: #{@salesforce_contact_id}, salesforce_account_id:"\
817
+ " #{@salesforce_account_id}, crm_owner_id: #{@crm_owner_id}, created_at: #{@created_at},"\
818
+ " emailer_campaign_ids: #{@emailer_campaign_ids}, direct_dial_status:"\
819
+ " #{@direct_dial_status}, direct_dial_enrichment_failed_at:"\
820
+ " #{@direct_dial_enrichment_failed_at}, email_status: #{@email_status}, email_source:"\
821
+ " #{@email_source}, account_id: #{@account_id}, last_activity_date: #{@last_activity_date},"\
822
+ " hubspot_vid: #{@hubspot_vid}, hubspot_company_id: #{@hubspot_company_id}, crm_id:"\
823
+ " #{@crm_id}, sanitized_phone: #{@sanitized_phone}, merged_crm_ids: #{@merged_crm_ids},"\
824
+ " updated_at: #{@updated_at}, queued_for_crm_push: #{@queued_for_crm_push},"\
825
+ " suggested_from_rule_engine_config_id: #{@suggested_from_rule_engine_config_id},"\
826
+ " email_unsubscribed: #{@email_unsubscribed}, label_ids: #{@label_ids},"\
827
+ " has_pending_email_arcgate_request: #{@has_pending_email_arcgate_request},"\
828
+ " has_email_arcgate_request: #{@has_email_arcgate_request}, existence_level:"\
829
+ " #{@existence_level}, email: #{@email}, email_from_customer: #{@email_from_customer},"\
830
+ " typed_custom_fields: #{@typed_custom_fields}, custom_field_errors:"\
831
+ " #{@custom_field_errors}, crm_record_url: #{@crm_record_url},"\
832
+ " email_status_unavailable_reason: #{@email_status_unavailable_reason}, email_true_status:"\
833
+ " #{@email_true_status}, updated_email_true_status: #{@updated_email_true_status},"\
834
+ " contact_rule_config_statuses: #{@contact_rule_config_statuses}, source_display_name:"\
835
+ " #{@source_display_name}, twitter_url: #{@twitter_url}, contact_campaign_statuses:"\
836
+ " #{@contact_campaign_statuses}, account: #{@account}, contact_emails: #{@contact_emails},"\
837
+ " organization: #{@organization}, intent_strength: #{@intent_strength}, show_intent:"\
838
+ " #{@show_intent}, phone_numbers: #{@phone_numbers}, account_phone_note:"\
839
+ " #{@account_phone_note}, free_domain: #{@free_domain}, is_likely_to_engage:"\
840
+ " #{@is_likely_to_engage}, email_domain_catchall: #{@email_domain_catchall},"\
841
+ " contact_job_change_event: #{@contact_job_change_event}, additional_properties:"\
842
+ " #{@additional_properties}>"
843
+ end
844
+
845
+ # Provides a debugging-friendly string with detailed object information.
846
+ def inspect
847
+ class_name = self.class.name.split('::').last
848
+ "<#{class_name} contact_roles: #{@contact_roles.inspect}, id: #{@id.inspect}, first_name:"\
849
+ " #{@first_name.inspect}, last_name: #{@last_name.inspect}, name: #{@name.inspect},"\
850
+ " linkedin_url: #{@linkedin_url.inspect}, title: #{@title.inspect}, contact_stage_id:"\
851
+ " #{@contact_stage_id.inspect}, owner_id: #{@owner_id.inspect}, creator_id:"\
852
+ " #{@creator_id.inspect}, person_id: #{@person_id.inspect}, email_needs_tickling:"\
853
+ " #{@email_needs_tickling.inspect}, organization_name: #{@organization_name.inspect},"\
854
+ " source: #{@source.inspect}, original_source: #{@original_source.inspect}, organization_id:"\
855
+ " #{@organization_id.inspect}, headline: #{@headline.inspect}, photo_url:"\
856
+ " #{@photo_url.inspect}, present_raw_address: #{@present_raw_address.inspect}, linkedin_uid:"\
857
+ " #{@linkedin_uid.inspect}, extrapolated_email_confidence:"\
858
+ " #{@extrapolated_email_confidence.inspect}, salesforce_id: #{@salesforce_id.inspect},"\
859
+ " salesforce_lead_id: #{@salesforce_lead_id.inspect}, salesforce_contact_id:"\
860
+ " #{@salesforce_contact_id.inspect}, salesforce_account_id:"\
861
+ " #{@salesforce_account_id.inspect}, crm_owner_id: #{@crm_owner_id.inspect}, created_at:"\
862
+ " #{@created_at.inspect}, emailer_campaign_ids: #{@emailer_campaign_ids.inspect},"\
863
+ " direct_dial_status: #{@direct_dial_status.inspect}, direct_dial_enrichment_failed_at:"\
864
+ " #{@direct_dial_enrichment_failed_at.inspect}, email_status: #{@email_status.inspect},"\
865
+ " email_source: #{@email_source.inspect}, account_id: #{@account_id.inspect},"\
866
+ " last_activity_date: #{@last_activity_date.inspect}, hubspot_vid: #{@hubspot_vid.inspect},"\
867
+ " hubspot_company_id: #{@hubspot_company_id.inspect}, crm_id: #{@crm_id.inspect},"\
868
+ " sanitized_phone: #{@sanitized_phone.inspect}, merged_crm_ids: #{@merged_crm_ids.inspect},"\
869
+ " updated_at: #{@updated_at.inspect}, queued_for_crm_push: #{@queued_for_crm_push.inspect},"\
870
+ " suggested_from_rule_engine_config_id: #{@suggested_from_rule_engine_config_id.inspect},"\
871
+ " email_unsubscribed: #{@email_unsubscribed.inspect}, label_ids: #{@label_ids.inspect},"\
872
+ " has_pending_email_arcgate_request: #{@has_pending_email_arcgate_request.inspect},"\
873
+ " has_email_arcgate_request: #{@has_email_arcgate_request.inspect}, existence_level:"\
874
+ " #{@existence_level.inspect}, email: #{@email.inspect}, email_from_customer:"\
875
+ " #{@email_from_customer.inspect}, typed_custom_fields: #{@typed_custom_fields.inspect},"\
876
+ " custom_field_errors: #{@custom_field_errors.inspect}, crm_record_url:"\
877
+ " #{@crm_record_url.inspect}, email_status_unavailable_reason:"\
878
+ " #{@email_status_unavailable_reason.inspect}, email_true_status:"\
879
+ " #{@email_true_status.inspect}, updated_email_true_status:"\
880
+ " #{@updated_email_true_status.inspect}, contact_rule_config_statuses:"\
881
+ " #{@contact_rule_config_statuses.inspect}, source_display_name:"\
882
+ " #{@source_display_name.inspect}, twitter_url: #{@twitter_url.inspect},"\
883
+ " contact_campaign_statuses: #{@contact_campaign_statuses.inspect}, account:"\
884
+ " #{@account.inspect}, contact_emails: #{@contact_emails.inspect}, organization:"\
885
+ " #{@organization.inspect}, intent_strength: #{@intent_strength.inspect}, show_intent:"\
886
+ " #{@show_intent.inspect}, phone_numbers: #{@phone_numbers.inspect}, account_phone_note:"\
887
+ " #{@account_phone_note.inspect}, free_domain: #{@free_domain.inspect}, is_likely_to_engage:"\
888
+ " #{@is_likely_to_engage.inspect}, email_domain_catchall: #{@email_domain_catchall.inspect},"\
889
+ " contact_job_change_event: #{@contact_job_change_event.inspect}, additional_properties:"\
890
+ " #{@additional_properties}>"
891
+ end
892
+ end
893
+ end