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,1294 @@
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
+ # User Model.
8
+ class User < BaseModel
9
+ SKIP = Object.new
10
+ private_constant :SKIP
11
+
12
+ # TODO: Write general description for this method
13
+ # @return [String]
14
+ attr_accessor :id
15
+
16
+ # TODO: Write general description for this method
17
+ # @return [String]
18
+ attr_accessor :team_id
19
+
20
+ # TODO: Write general description for this method
21
+ # @return [Object]
22
+ attr_accessor :first_name
23
+
24
+ # TODO: Write general description for this method
25
+ # @return [Object]
26
+ attr_accessor :last_name
27
+
28
+ # TODO: Write general description for this method
29
+ # @return [Object]
30
+ attr_accessor :title
31
+
32
+ # TODO: Write general description for this method
33
+ # @return [String]
34
+ attr_accessor :email
35
+
36
+ # TODO: Write general description for this method
37
+ # @return [String]
38
+ attr_accessor :created_at
39
+
40
+ # TODO: Write general description for this method
41
+ # @return [Object]
42
+ attr_accessor :credit_limit
43
+
44
+ # TODO: Write general description for this method
45
+ # @return [Object]
46
+ attr_accessor :direct_dial_credit_limit
47
+
48
+ # TODO: Write general description for this method
49
+ # @return [Object]
50
+ attr_accessor :export_credit_limit
51
+
52
+ # TODO: Write general description for this method
53
+ # @return [Object]
54
+ attr_accessor :ai_credit_limit
55
+
56
+ # TODO: Write general description for this method
57
+ # @return [Object]
58
+ attr_accessor :salesforce_account
59
+
60
+ # TODO: Write general description for this method
61
+ # @return [TrueClass | FalseClass]
62
+ attr_accessor :deleted
63
+
64
+ # TODO: Write general description for this method
65
+ # @return [String]
66
+ attr_accessor :opt_out_html_template
67
+
68
+ # TODO: Write general description for this method
69
+ # @return [String]
70
+ attr_accessor :name
71
+
72
+ # TODO: Write general description for this method
73
+ # @return [String]
74
+ attr_accessor :referral_code
75
+
76
+ # TODO: Write general description for this method
77
+ # @return [TrueClass | FalseClass]
78
+ attr_accessor :password_needs_reset
79
+
80
+ # TODO: Write general description for this method
81
+ # @return [Object]
82
+ attr_accessor :salesforce_id
83
+
84
+ # TODO: Write general description for this method
85
+ # @return [Object]
86
+ attr_accessor :default_cockpit_layout
87
+
88
+ # TODO: Write general description for this method
89
+ # @return [Object]
90
+ attr_accessor :default_account_overview_layout_id
91
+
92
+ # TODO: Write general description for this method
93
+ # @return [Object]
94
+ attr_accessor :default_contact_overview_layout_id
95
+
96
+ # TODO: Write general description for this method
97
+ # @return [Object]
98
+ attr_accessor :default_person_overview_layout_id
99
+
100
+ # TODO: Write general description for this method
101
+ # @return [Object]
102
+ attr_accessor :default_organization_overview_layout_id
103
+
104
+ # TODO: Write general description for this method
105
+ # @return [Object]
106
+ attr_accessor :default_opportunity_overview_layout_id
107
+
108
+ # TODO: Write general description for this method
109
+ # @return [Object]
110
+ attr_accessor :default_home_overview_layout_id
111
+
112
+ # TODO: Write general description for this method
113
+ # @return [TrueClass | FalseClass]
114
+ attr_accessor :bridge_calls
115
+
116
+ # TODO: Write general description for this method
117
+ # @return [Object]
118
+ attr_accessor :bridge_phone_number
119
+
120
+ # TODO: Write general description for this method
121
+ # @return [TrueClass | FalseClass]
122
+ attr_accessor :bridge_incoming_calls
123
+
124
+ # TODO: Write general description for this method
125
+ # @return [Object]
126
+ attr_accessor :bridge_incoming_phone_number
127
+
128
+ # TODO: Write general description for this method
129
+ # @return [TrueClass | FalseClass]
130
+ attr_accessor :current_email_verified
131
+
132
+ # TODO: Write general description for this method
133
+ # @return [TrueClass | FalseClass]
134
+ attr_accessor :record_calls
135
+
136
+ # TODO: Write general description for this method
137
+ # @return [Object]
138
+ attr_accessor :salesforce_instance_url
139
+
140
+ # TODO: Write general description for this method
141
+ # @return [String]
142
+ attr_accessor :permission_set_id
143
+
144
+ # TODO: Write general description for this method
145
+ # @return [TrueClass | FalseClass]
146
+ attr_accessor :default_use_local_numbers
147
+
148
+ # TODO: Write general description for this method
149
+ # @return [Object]
150
+ attr_accessor :disable_email_linking
151
+
152
+ # TODO: Write general description for this method
153
+ # @return [Object]
154
+ attr_accessor :sync_salesforce_id
155
+
156
+ # TODO: Write general description for this method
157
+ # @return [Object]
158
+ attr_accessor :sync_crm_id
159
+
160
+ # TODO: Write general description for this method
161
+ # @return [String]
162
+ attr_accessor :zp_contact_id
163
+
164
+ # TODO: Write general description for this method
165
+ # @return [TrueClass | FalseClass]
166
+ attr_accessor :chrome_extension_downloaded
167
+
168
+ # TODO: Write general description for this method
169
+ # @return [Object]
170
+ attr_accessor :zp_is_super_analytics_user
171
+
172
+ # TODO: Write general description for this method
173
+ # @return [TrueClass | FalseClass]
174
+ attr_accessor :email_oauth_signin_only
175
+
176
+ # TODO: Write general description for this method
177
+ # @return [Object]
178
+ attr_accessor :notification_last_created_at
179
+
180
+ # TODO: Write general description for this method
181
+ # @return [Object]
182
+ attr_accessor :crm_requested_to_integrate
183
+
184
+ # TODO: Write general description for this method
185
+ # @return [TrueClass | FalseClass]
186
+ attr_accessor :has_invited_user
187
+
188
+ # TODO: Write general description for this method
189
+ # @return [TrueClass | FalseClass]
190
+ attr_accessor :has_used_enrichment
191
+
192
+ # TODO: Write general description for this method
193
+ # @return [TrueClass | FalseClass]
194
+ attr_accessor :has_uploaded_csv
195
+
196
+ # TODO: Write general description for this method
197
+ # @return [TrueClass | FalseClass]
198
+ attr_accessor :has_hidden_onboarding
199
+
200
+ # TODO: Write general description for this method
201
+ # @return [Object]
202
+ attr_accessor :notification_last_read_at
203
+
204
+ # TODO: Write general description for this method
205
+ # @return [TrueClass | FalseClass]
206
+ attr_accessor :daily_data_request_email
207
+
208
+ # TODO: Write general description for this method
209
+ # @return [TrueClass | FalseClass]
210
+ attr_accessor :data_request_emails
211
+
212
+ # TODO: Write general description for this method
213
+ # @return [TrueClass | FalseClass]
214
+ attr_accessor :daily_task_email
215
+
216
+ # TODO: Write general description for this method
217
+ # @return [TrueClass | FalseClass]
218
+ attr_accessor :free_data_credits_email
219
+
220
+ # TODO: Write general description for this method
221
+ # @return [TrueClass | FalseClass]
222
+ attr_accessor :dismiss_new_team_suggestion
223
+
224
+ # TODO: Write general description for this method
225
+ # @return [Object]
226
+ attr_accessor :request_email_change_to
227
+
228
+ # TODO: Write general description for this method
229
+ # @return [Object]
230
+ attr_accessor :self_identified_persona
231
+
232
+ # TODO: Write general description for this method
233
+ # @return [TrueClass | FalseClass]
234
+ attr_accessor :territory_is_active
235
+
236
+ # TODO: Write general description for this method
237
+ # @return [Object]
238
+ attr_accessor :conversation_is_private
239
+
240
+ # TODO: Write general description for this method
241
+ # @return [TrueClass | FalseClass]
242
+ attr_accessor :show_deals_detail_page_updates_modal
243
+
244
+ # TODO: Write general description for this method
245
+ # @return [AssistantSetting]
246
+ attr_accessor :assistant_setting
247
+
248
+ # TODO: Write general description for this method
249
+ # @return [TrueClass | FalseClass]
250
+ attr_accessor :fields_fully_loaded
251
+
252
+ # TODO: Write general description for this method
253
+ # @return [Object]
254
+ attr_accessor :typed_custom_fields
255
+
256
+ # TODO: Write general description for this method
257
+ # @return [TrueClass | FalseClass]
258
+ attr_accessor :connected_to_slack
259
+
260
+ # TODO: Write general description for this method
261
+ # @return [Object]
262
+ attr_accessor :crm_email
263
+
264
+ # TODO: Write general description for this method
265
+ # @return [Array[Object]]
266
+ attr_accessor :triggered_referral_campaigns
267
+
268
+ # TODO: Write general description for this method
269
+ # @return [TrueClass | FalseClass]
270
+ attr_accessor :enable_click_tracking
271
+
272
+ # TODO: Write general description for this method
273
+ # @return [TrueClass | FalseClass]
274
+ attr_accessor :enable_open_tracking
275
+
276
+ # TODO: Write general description for this method
277
+ # @return [TrueClass | FalseClass]
278
+ attr_accessor :should_include_unsubscribe_link
279
+
280
+ # TODO: Write general description for this method
281
+ # @return [Object]
282
+ attr_accessor :enable_one_click_unsubscribe
283
+
284
+ # TODO: Write general description for this method
285
+ # @return [Array[Object]]
286
+ attr_accessor :subteam_ids
287
+
288
+ # TODO: Write general description for this method
289
+ # @return [Array[Object]]
290
+ attr_accessor :prospect_territory_ids
291
+
292
+ # TODO: Write general description for this method
293
+ # @return [Array[Object]]
294
+ attr_accessor :toggled_on_territory_ids
295
+
296
+ # TODO: Write general description for this method
297
+ # @return [Object]
298
+ attr_accessor :linked_salesforce
299
+
300
+ # TODO: Write general description for this method
301
+ # @return [TrueClass | FalseClass]
302
+ attr_accessor :linked_zoom_conference_account
303
+
304
+ # TODO: Write general description for this method
305
+ # @return [TrueClass | FalseClass]
306
+ attr_accessor :linked_bot_conference_account
307
+
308
+ # TODO: Write general description for this method
309
+ # @return [Array[String]]
310
+ attr_accessor :linked_bot_conference_account_platforms
311
+
312
+ # TODO: Write general description for this method
313
+ # @return [TrueClass | FalseClass]
314
+ attr_accessor :has_conference_account
315
+
316
+ # TODO: Write general description for this method
317
+ # @return [TrueClass | FalseClass]
318
+ attr_accessor :linked_hubspot
319
+
320
+ # TODO: Write general description for this method
321
+ # @return [TrueClass | FalseClass]
322
+ attr_accessor :linked_salesloft
323
+
324
+ # TODO: Write general description for this method
325
+ # @return [Object]
326
+ attr_accessor :linked_crm_name
327
+
328
+ # TODO: Write general description for this method
329
+ # @return [Array[String]]
330
+ attr_accessor :chrome_extension_enabled_features
331
+
332
+ # TODO: Write general description for this method
333
+ # @return [Array[String]]
334
+ attr_accessor :chrome_extension_exclude_from_websites
335
+
336
+ # TODO: Write general description for this method
337
+ # @return [String]
338
+ attr_accessor :chrome_extension_everywhere_icon_horizontal_position
339
+
340
+ # TODO: Write general description for this method
341
+ # @return [Integer]
342
+ attr_accessor :chrome_extension_everywhere_icon_vertical_position_in_vh
343
+
344
+ # TODO: Write general description for this method
345
+ # @return [TrueClass | FalseClass]
346
+ attr_accessor :default_chrome_extension_log_email_send_to_salesforce
347
+
348
+ # TODO: Write general description for this method
349
+ # @return [TrueClass | FalseClass]
350
+ attr_accessor :default_chrome_extension_log_email_send_to_hubspot
351
+
352
+ # TODO: Write general description for this method
353
+ # @return [TrueClass | FalseClass]
354
+ attr_accessor :chrome_extension_auto_match_salesforce_opportunity
355
+
356
+ # TODO: Write general description for this method
357
+ # @return [TrueClass | FalseClass]
358
+ attr_accessor :chrome_extension_gmail_enable_email_tools
359
+
360
+ # TODO: Write general description for this method
361
+ # @return [TrueClass | FalseClass]
362
+ attr_accessor :enable_desktop_notifications
363
+
364
+ # TODO: Write general description for this method
365
+ # @return [Object]
366
+ attr_accessor :enable_gmail_desktop_notifications
367
+
368
+ # TODO: Write general description for this method
369
+ # @return [TrueClass | FalseClass]
370
+ attr_accessor :default_chrome_extension_enable_reminders
371
+
372
+ # TODO: Write general description for this method
373
+ # @return [TrueClass | FalseClass]
374
+ attr_accessor :chrome_extension_gmail_enable_crm_sidebar
375
+
376
+ # TODO: Write general description for this method
377
+ # @return [TrueClass | FalseClass]
378
+ attr_accessor :show_chrome_extension_buying_intent_promo
379
+
380
+ # TODO: Write general description for this method
381
+ # @return [Integer]
382
+ attr_accessor :apollo_everywhere_search_count
383
+
384
+ # A mapping from model property names to API property names.
385
+ def self.names
386
+ @_hash = {} if @_hash.nil?
387
+ @_hash['id'] = 'id'
388
+ @_hash['team_id'] = 'team_id'
389
+ @_hash['first_name'] = 'first_name'
390
+ @_hash['last_name'] = 'last_name'
391
+ @_hash['title'] = 'title'
392
+ @_hash['email'] = 'email'
393
+ @_hash['created_at'] = 'created_at'
394
+ @_hash['credit_limit'] = 'credit_limit'
395
+ @_hash['direct_dial_credit_limit'] = 'direct_dial_credit_limit'
396
+ @_hash['export_credit_limit'] = 'export_credit_limit'
397
+ @_hash['ai_credit_limit'] = 'ai_credit_limit'
398
+ @_hash['salesforce_account'] = 'salesforce_account'
399
+ @_hash['deleted'] = 'deleted'
400
+ @_hash['opt_out_html_template'] = 'opt_out_html_template'
401
+ @_hash['name'] = 'name'
402
+ @_hash['referral_code'] = 'referral_code'
403
+ @_hash['password_needs_reset'] = 'password_needs_reset'
404
+ @_hash['salesforce_id'] = 'salesforce_id'
405
+ @_hash['default_cockpit_layout'] = 'default_cockpit_layout'
406
+ @_hash['default_account_overview_layout_id'] =
407
+ 'default_account_overview_layout_id'
408
+ @_hash['default_contact_overview_layout_id'] =
409
+ 'default_contact_overview_layout_id'
410
+ @_hash['default_person_overview_layout_id'] =
411
+ 'default_person_overview_layout_id'
412
+ @_hash['default_organization_overview_layout_id'] =
413
+ 'default_organization_overview_layout_id'
414
+ @_hash['default_opportunity_overview_layout_id'] =
415
+ 'default_opportunity_overview_layout_id'
416
+ @_hash['default_home_overview_layout_id'] =
417
+ 'default_home_overview_layout_id'
418
+ @_hash['bridge_calls'] = 'bridge_calls'
419
+ @_hash['bridge_phone_number'] = 'bridge_phone_number'
420
+ @_hash['bridge_incoming_calls'] = 'bridge_incoming_calls'
421
+ @_hash['bridge_incoming_phone_number'] = 'bridge_incoming_phone_number'
422
+ @_hash['current_email_verified'] = 'current_email_verified'
423
+ @_hash['record_calls'] = 'record_calls'
424
+ @_hash['salesforce_instance_url'] = 'salesforce_instance_url'
425
+ @_hash['permission_set_id'] = 'permission_set_id'
426
+ @_hash['default_use_local_numbers'] = 'default_use_local_numbers'
427
+ @_hash['disable_email_linking'] = 'disable_email_linking'
428
+ @_hash['sync_salesforce_id'] = 'sync_salesforce_id'
429
+ @_hash['sync_crm_id'] = 'sync_crm_id'
430
+ @_hash['zp_contact_id'] = 'zp_contact_id'
431
+ @_hash['chrome_extension_downloaded'] = 'chrome_extension_downloaded'
432
+ @_hash['zp_is_super_analytics_user'] = 'zp_is_super_analytics_user'
433
+ @_hash['email_oauth_signin_only'] = 'email_oauth_signin_only'
434
+ @_hash['notification_last_created_at'] = 'notification_last_created_at'
435
+ @_hash['crm_requested_to_integrate'] = 'crm_requested_to_integrate'
436
+ @_hash['has_invited_user'] = 'has_invited_user'
437
+ @_hash['has_used_enrichment'] = 'has_used_enrichment'
438
+ @_hash['has_uploaded_csv'] = 'has_uploaded_csv'
439
+ @_hash['has_hidden_onboarding'] = 'has_hidden_onboarding'
440
+ @_hash['notification_last_read_at'] = 'notification_last_read_at'
441
+ @_hash['daily_data_request_email'] = 'daily_data_request_email'
442
+ @_hash['data_request_emails'] = 'data_request_emails'
443
+ @_hash['daily_task_email'] = 'daily_task_email'
444
+ @_hash['free_data_credits_email'] = 'free_data_credits_email'
445
+ @_hash['dismiss_new_team_suggestion'] = 'dismiss_new_team_suggestion'
446
+ @_hash['request_email_change_to'] = 'request_email_change_to'
447
+ @_hash['self_identified_persona'] = 'self_identified_persona'
448
+ @_hash['territory_is_active'] = 'territory_is_active'
449
+ @_hash['conversation_is_private'] = 'conversation_is_private'
450
+ @_hash['show_deals_detail_page_updates_modal'] =
451
+ 'show_deals_detail_page_updates_modal'
452
+ @_hash['assistant_setting'] = 'assistant_setting'
453
+ @_hash['fields_fully_loaded'] = 'fields_fully_loaded'
454
+ @_hash['typed_custom_fields'] = 'typed_custom_fields'
455
+ @_hash['connected_to_slack'] = 'connected_to_slack'
456
+ @_hash['crm_email'] = 'crm_email'
457
+ @_hash['triggered_referral_campaigns'] = 'triggered_referral_campaigns'
458
+ @_hash['enable_click_tracking'] = 'enable_click_tracking'
459
+ @_hash['enable_open_tracking'] = 'enable_open_tracking'
460
+ @_hash['should_include_unsubscribe_link'] =
461
+ 'should_include_unsubscribe_link'
462
+ @_hash['enable_one_click_unsubscribe'] = 'enable_one_click_unsubscribe'
463
+ @_hash['subteam_ids'] = 'subteam_ids'
464
+ @_hash['prospect_territory_ids'] = 'prospect_territory_ids'
465
+ @_hash['toggled_on_territory_ids'] = 'toggled_on_territory_ids'
466
+ @_hash['linked_salesforce'] = 'linked_salesforce'
467
+ @_hash['linked_zoom_conference_account'] =
468
+ 'linked_zoom_conference_account'
469
+ @_hash['linked_bot_conference_account'] =
470
+ 'linked_bot_conference_account'
471
+ @_hash['linked_bot_conference_account_platforms'] =
472
+ 'linked_bot_conference_account_platforms'
473
+ @_hash['has_conference_account'] = 'has_conference_account'
474
+ @_hash['linked_hubspot'] = 'linked_hubspot'
475
+ @_hash['linked_salesloft'] = 'linked_salesloft'
476
+ @_hash['linked_crm_name'] = 'linked_crm_name'
477
+ @_hash['chrome_extension_enabled_features'] =
478
+ 'chrome_extension_enabled_features'
479
+ @_hash['chrome_extension_exclude_from_websites'] =
480
+ 'chrome_extension_exclude_from_websites'
481
+ @_hash['chrome_extension_everywhere_icon_horizontal_position'] =
482
+ 'chrome_extension_everywhere_icon_horizontal_position'
483
+ @_hash['chrome_extension_everywhere_icon_vertical_position_in_vh'] =
484
+ 'chrome_extension_everywhere_icon_vertical_position_in_vh'
485
+ @_hash['default_chrome_extension_log_email_send_to_salesforce'] =
486
+ 'default_chrome_extension_log_email_send_to_salesforce'
487
+ @_hash['default_chrome_extension_log_email_send_to_hubspot'] =
488
+ 'default_chrome_extension_log_email_send_to_hubspot'
489
+ @_hash['chrome_extension_auto_match_salesforce_opportunity'] =
490
+ 'chrome_extension_auto_match_salesforce_opportunity'
491
+ @_hash['chrome_extension_gmail_enable_email_tools'] =
492
+ 'chrome_extension_gmail_enable_email_tools'
493
+ @_hash['enable_desktop_notifications'] = 'enable_desktop_notifications'
494
+ @_hash['enable_gmail_desktop_notifications'] =
495
+ 'enable_gmail_desktop_notifications'
496
+ @_hash['default_chrome_extension_enable_reminders'] =
497
+ 'default_chrome_extension_enable_reminders'
498
+ @_hash['chrome_extension_gmail_enable_crm_sidebar'] =
499
+ 'chrome_extension_gmail_enable_crm_sidebar'
500
+ @_hash['show_chrome_extension_buying_intent_promo'] =
501
+ 'show_chrome_extension_buying_intent_promo'
502
+ @_hash['apollo_everywhere_search_count'] =
503
+ 'apollo_everywhere_search_count'
504
+ @_hash
505
+ end
506
+
507
+ # An array for optional fields
508
+ def self.optionals
509
+ %w[
510
+ id
511
+ team_id
512
+ first_name
513
+ last_name
514
+ title
515
+ email
516
+ created_at
517
+ credit_limit
518
+ direct_dial_credit_limit
519
+ export_credit_limit
520
+ ai_credit_limit
521
+ salesforce_account
522
+ deleted
523
+ opt_out_html_template
524
+ name
525
+ referral_code
526
+ password_needs_reset
527
+ salesforce_id
528
+ default_cockpit_layout
529
+ default_account_overview_layout_id
530
+ default_contact_overview_layout_id
531
+ default_person_overview_layout_id
532
+ default_organization_overview_layout_id
533
+ default_opportunity_overview_layout_id
534
+ default_home_overview_layout_id
535
+ bridge_calls
536
+ bridge_phone_number
537
+ bridge_incoming_calls
538
+ bridge_incoming_phone_number
539
+ current_email_verified
540
+ record_calls
541
+ salesforce_instance_url
542
+ permission_set_id
543
+ default_use_local_numbers
544
+ disable_email_linking
545
+ sync_salesforce_id
546
+ sync_crm_id
547
+ zp_contact_id
548
+ chrome_extension_downloaded
549
+ zp_is_super_analytics_user
550
+ email_oauth_signin_only
551
+ notification_last_created_at
552
+ crm_requested_to_integrate
553
+ has_invited_user
554
+ has_used_enrichment
555
+ has_uploaded_csv
556
+ has_hidden_onboarding
557
+ notification_last_read_at
558
+ daily_data_request_email
559
+ data_request_emails
560
+ daily_task_email
561
+ free_data_credits_email
562
+ dismiss_new_team_suggestion
563
+ request_email_change_to
564
+ self_identified_persona
565
+ territory_is_active
566
+ conversation_is_private
567
+ show_deals_detail_page_updates_modal
568
+ assistant_setting
569
+ fields_fully_loaded
570
+ typed_custom_fields
571
+ connected_to_slack
572
+ crm_email
573
+ triggered_referral_campaigns
574
+ enable_click_tracking
575
+ enable_open_tracking
576
+ should_include_unsubscribe_link
577
+ enable_one_click_unsubscribe
578
+ subteam_ids
579
+ prospect_territory_ids
580
+ toggled_on_territory_ids
581
+ linked_salesforce
582
+ linked_zoom_conference_account
583
+ linked_bot_conference_account
584
+ linked_bot_conference_account_platforms
585
+ has_conference_account
586
+ linked_hubspot
587
+ linked_salesloft
588
+ linked_crm_name
589
+ chrome_extension_enabled_features
590
+ chrome_extension_exclude_from_websites
591
+ chrome_extension_everywhere_icon_horizontal_position
592
+ chrome_extension_everywhere_icon_vertical_position_in_vh
593
+ default_chrome_extension_log_email_send_to_salesforce
594
+ default_chrome_extension_log_email_send_to_hubspot
595
+ chrome_extension_auto_match_salesforce_opportunity
596
+ chrome_extension_gmail_enable_email_tools
597
+ enable_desktop_notifications
598
+ enable_gmail_desktop_notifications
599
+ default_chrome_extension_enable_reminders
600
+ chrome_extension_gmail_enable_crm_sidebar
601
+ show_chrome_extension_buying_intent_promo
602
+ apollo_everywhere_search_count
603
+ ]
604
+ end
605
+
606
+ # An array for nullable fields
607
+ def self.nullables
608
+ []
609
+ end
610
+
611
+ def initialize(id: SKIP, team_id: SKIP, first_name: SKIP, last_name: SKIP,
612
+ title: SKIP, email: SKIP, created_at: SKIP,
613
+ credit_limit: SKIP, direct_dial_credit_limit: SKIP,
614
+ export_credit_limit: SKIP, ai_credit_limit: SKIP,
615
+ salesforce_account: SKIP, deleted: true,
616
+ opt_out_html_template: SKIP, name: SKIP, referral_code: SKIP,
617
+ password_needs_reset: true, salesforce_id: SKIP,
618
+ default_cockpit_layout: SKIP,
619
+ default_account_overview_layout_id: SKIP,
620
+ default_contact_overview_layout_id: SKIP,
621
+ default_person_overview_layout_id: SKIP,
622
+ default_organization_overview_layout_id: SKIP,
623
+ default_opportunity_overview_layout_id: SKIP,
624
+ default_home_overview_layout_id: SKIP, bridge_calls: true,
625
+ bridge_phone_number: SKIP, bridge_incoming_calls: true,
626
+ bridge_incoming_phone_number: SKIP,
627
+ current_email_verified: true, record_calls: true,
628
+ salesforce_instance_url: SKIP, permission_set_id: SKIP,
629
+ default_use_local_numbers: true, disable_email_linking: SKIP,
630
+ sync_salesforce_id: SKIP, sync_crm_id: SKIP,
631
+ zp_contact_id: SKIP, chrome_extension_downloaded: true,
632
+ zp_is_super_analytics_user: SKIP,
633
+ email_oauth_signin_only: true,
634
+ notification_last_created_at: SKIP,
635
+ crm_requested_to_integrate: SKIP, has_invited_user: true,
636
+ has_used_enrichment: true, has_uploaded_csv: true,
637
+ has_hidden_onboarding: true, notification_last_read_at: SKIP,
638
+ daily_data_request_email: true, data_request_emails: true,
639
+ daily_task_email: true, free_data_credits_email: true,
640
+ dismiss_new_team_suggestion: true,
641
+ request_email_change_to: SKIP, self_identified_persona: SKIP,
642
+ territory_is_active: true, conversation_is_private: SKIP,
643
+ show_deals_detail_page_updates_modal: true,
644
+ assistant_setting: SKIP, fields_fully_loaded: true,
645
+ typed_custom_fields: SKIP, connected_to_slack: true,
646
+ crm_email: SKIP, triggered_referral_campaigns: SKIP,
647
+ enable_click_tracking: true, enable_open_tracking: true,
648
+ should_include_unsubscribe_link: true,
649
+ enable_one_click_unsubscribe: SKIP, subteam_ids: SKIP,
650
+ prospect_territory_ids: SKIP, toggled_on_territory_ids: SKIP,
651
+ linked_salesforce: SKIP,
652
+ linked_zoom_conference_account: true,
653
+ linked_bot_conference_account: true,
654
+ linked_bot_conference_account_platforms: SKIP,
655
+ has_conference_account: true, linked_hubspot: true,
656
+ linked_salesloft: true, linked_crm_name: SKIP,
657
+ chrome_extension_enabled_features: SKIP,
658
+ chrome_extension_exclude_from_websites: SKIP,
659
+ chrome_extension_everywhere_icon_horizontal_position: SKIP,
660
+ chrome_extension_everywhere_icon_vertical_position_in_vh: 0,
661
+ default_chrome_extension_log_email_send_to_salesforce: true,
662
+ default_chrome_extension_log_email_send_to_hubspot: true,
663
+ chrome_extension_auto_match_salesforce_opportunity: true,
664
+ chrome_extension_gmail_enable_email_tools: true,
665
+ enable_desktop_notifications: true,
666
+ enable_gmail_desktop_notifications: SKIP,
667
+ default_chrome_extension_enable_reminders: true,
668
+ chrome_extension_gmail_enable_crm_sidebar: true,
669
+ show_chrome_extension_buying_intent_promo: true,
670
+ apollo_everywhere_search_count: 0,
671
+ additional_properties: nil)
672
+ # Add additional model properties to the instance
673
+ additional_properties = {} if additional_properties.nil?
674
+
675
+ @id = id unless id == SKIP
676
+ @team_id = team_id unless team_id == SKIP
677
+ @first_name = first_name unless first_name == SKIP
678
+ @last_name = last_name unless last_name == SKIP
679
+ @title = title unless title == SKIP
680
+ @email = email unless email == SKIP
681
+ @created_at = created_at unless created_at == SKIP
682
+ @credit_limit = credit_limit unless credit_limit == SKIP
683
+ @direct_dial_credit_limit = direct_dial_credit_limit unless direct_dial_credit_limit == SKIP
684
+ @export_credit_limit = export_credit_limit unless export_credit_limit == SKIP
685
+ @ai_credit_limit = ai_credit_limit unless ai_credit_limit == SKIP
686
+ @salesforce_account = salesforce_account unless salesforce_account == SKIP
687
+ @deleted = deleted unless deleted == SKIP
688
+ @opt_out_html_template = opt_out_html_template unless opt_out_html_template == SKIP
689
+ @name = name unless name == SKIP
690
+ @referral_code = referral_code unless referral_code == SKIP
691
+ @password_needs_reset = password_needs_reset unless password_needs_reset == SKIP
692
+ @salesforce_id = salesforce_id unless salesforce_id == SKIP
693
+ @default_cockpit_layout = default_cockpit_layout unless default_cockpit_layout == SKIP
694
+ unless default_account_overview_layout_id == SKIP
695
+ @default_account_overview_layout_id =
696
+ default_account_overview_layout_id
697
+ end
698
+ unless default_contact_overview_layout_id == SKIP
699
+ @default_contact_overview_layout_id =
700
+ default_contact_overview_layout_id
701
+ end
702
+ unless default_person_overview_layout_id == SKIP
703
+ @default_person_overview_layout_id =
704
+ default_person_overview_layout_id
705
+ end
706
+ unless default_organization_overview_layout_id == SKIP
707
+ @default_organization_overview_layout_id =
708
+ default_organization_overview_layout_id
709
+ end
710
+ unless default_opportunity_overview_layout_id == SKIP
711
+ @default_opportunity_overview_layout_id =
712
+ default_opportunity_overview_layout_id
713
+ end
714
+ unless default_home_overview_layout_id == SKIP
715
+ @default_home_overview_layout_id =
716
+ default_home_overview_layout_id
717
+ end
718
+ @bridge_calls = bridge_calls unless bridge_calls == SKIP
719
+ @bridge_phone_number = bridge_phone_number unless bridge_phone_number == SKIP
720
+ @bridge_incoming_calls = bridge_incoming_calls unless bridge_incoming_calls == SKIP
721
+ unless bridge_incoming_phone_number == SKIP
722
+ @bridge_incoming_phone_number =
723
+ bridge_incoming_phone_number
724
+ end
725
+ @current_email_verified = current_email_verified unless current_email_verified == SKIP
726
+ @record_calls = record_calls unless record_calls == SKIP
727
+ @salesforce_instance_url = salesforce_instance_url unless salesforce_instance_url == SKIP
728
+ @permission_set_id = permission_set_id unless permission_set_id == SKIP
729
+ unless default_use_local_numbers == SKIP
730
+ @default_use_local_numbers =
731
+ default_use_local_numbers
732
+ end
733
+ @disable_email_linking = disable_email_linking unless disable_email_linking == SKIP
734
+ @sync_salesforce_id = sync_salesforce_id unless sync_salesforce_id == SKIP
735
+ @sync_crm_id = sync_crm_id unless sync_crm_id == SKIP
736
+ @zp_contact_id = zp_contact_id unless zp_contact_id == SKIP
737
+ unless chrome_extension_downloaded == SKIP
738
+ @chrome_extension_downloaded =
739
+ chrome_extension_downloaded
740
+ end
741
+ unless zp_is_super_analytics_user == SKIP
742
+ @zp_is_super_analytics_user =
743
+ zp_is_super_analytics_user
744
+ end
745
+ @email_oauth_signin_only = email_oauth_signin_only unless email_oauth_signin_only == SKIP
746
+ unless notification_last_created_at == SKIP
747
+ @notification_last_created_at =
748
+ notification_last_created_at
749
+ end
750
+ unless crm_requested_to_integrate == SKIP
751
+ @crm_requested_to_integrate =
752
+ crm_requested_to_integrate
753
+ end
754
+ @has_invited_user = has_invited_user unless has_invited_user == SKIP
755
+ @has_used_enrichment = has_used_enrichment unless has_used_enrichment == SKIP
756
+ @has_uploaded_csv = has_uploaded_csv unless has_uploaded_csv == SKIP
757
+ @has_hidden_onboarding = has_hidden_onboarding unless has_hidden_onboarding == SKIP
758
+ unless notification_last_read_at == SKIP
759
+ @notification_last_read_at =
760
+ notification_last_read_at
761
+ end
762
+ @daily_data_request_email = daily_data_request_email unless daily_data_request_email == SKIP
763
+ @data_request_emails = data_request_emails unless data_request_emails == SKIP
764
+ @daily_task_email = daily_task_email unless daily_task_email == SKIP
765
+ @free_data_credits_email = free_data_credits_email unless free_data_credits_email == SKIP
766
+ unless dismiss_new_team_suggestion == SKIP
767
+ @dismiss_new_team_suggestion =
768
+ dismiss_new_team_suggestion
769
+ end
770
+ @request_email_change_to = request_email_change_to unless request_email_change_to == SKIP
771
+ @self_identified_persona = self_identified_persona unless self_identified_persona == SKIP
772
+ @territory_is_active = territory_is_active unless territory_is_active == SKIP
773
+ @conversation_is_private = conversation_is_private unless conversation_is_private == SKIP
774
+ unless show_deals_detail_page_updates_modal == SKIP
775
+ @show_deals_detail_page_updates_modal =
776
+ show_deals_detail_page_updates_modal
777
+ end
778
+ @assistant_setting = assistant_setting unless assistant_setting == SKIP
779
+ @fields_fully_loaded = fields_fully_loaded unless fields_fully_loaded == SKIP
780
+ @typed_custom_fields = typed_custom_fields unless typed_custom_fields == SKIP
781
+ @connected_to_slack = connected_to_slack unless connected_to_slack == SKIP
782
+ @crm_email = crm_email unless crm_email == SKIP
783
+ unless triggered_referral_campaigns == SKIP
784
+ @triggered_referral_campaigns =
785
+ triggered_referral_campaigns
786
+ end
787
+ @enable_click_tracking = enable_click_tracking unless enable_click_tracking == SKIP
788
+ @enable_open_tracking = enable_open_tracking unless enable_open_tracking == SKIP
789
+ unless should_include_unsubscribe_link == SKIP
790
+ @should_include_unsubscribe_link =
791
+ should_include_unsubscribe_link
792
+ end
793
+ unless enable_one_click_unsubscribe == SKIP
794
+ @enable_one_click_unsubscribe =
795
+ enable_one_click_unsubscribe
796
+ end
797
+ @subteam_ids = subteam_ids unless subteam_ids == SKIP
798
+ @prospect_territory_ids = prospect_territory_ids unless prospect_territory_ids == SKIP
799
+ @toggled_on_territory_ids = toggled_on_territory_ids unless toggled_on_territory_ids == SKIP
800
+ @linked_salesforce = linked_salesforce unless linked_salesforce == SKIP
801
+ unless linked_zoom_conference_account == SKIP
802
+ @linked_zoom_conference_account =
803
+ linked_zoom_conference_account
804
+ end
805
+ unless linked_bot_conference_account == SKIP
806
+ @linked_bot_conference_account =
807
+ linked_bot_conference_account
808
+ end
809
+ unless linked_bot_conference_account_platforms == SKIP
810
+ @linked_bot_conference_account_platforms =
811
+ linked_bot_conference_account_platforms
812
+ end
813
+ @has_conference_account = has_conference_account unless has_conference_account == SKIP
814
+ @linked_hubspot = linked_hubspot unless linked_hubspot == SKIP
815
+ @linked_salesloft = linked_salesloft unless linked_salesloft == SKIP
816
+ @linked_crm_name = linked_crm_name unless linked_crm_name == SKIP
817
+ unless chrome_extension_enabled_features == SKIP
818
+ @chrome_extension_enabled_features =
819
+ chrome_extension_enabled_features
820
+ end
821
+ unless chrome_extension_exclude_from_websites == SKIP
822
+ @chrome_extension_exclude_from_websites =
823
+ chrome_extension_exclude_from_websites
824
+ end
825
+ unless chrome_extension_everywhere_icon_horizontal_position == SKIP
826
+ @chrome_extension_everywhere_icon_horizontal_position =
827
+ chrome_extension_everywhere_icon_horizontal_position
828
+ end
829
+ unless chrome_extension_everywhere_icon_vertical_position_in_vh == SKIP
830
+ @chrome_extension_everywhere_icon_vertical_position_in_vh =
831
+ chrome_extension_everywhere_icon_vertical_position_in_vh
832
+ end
833
+ unless default_chrome_extension_log_email_send_to_salesforce == SKIP
834
+ @default_chrome_extension_log_email_send_to_salesforce =
835
+ default_chrome_extension_log_email_send_to_salesforce
836
+ end
837
+ unless default_chrome_extension_log_email_send_to_hubspot == SKIP
838
+ @default_chrome_extension_log_email_send_to_hubspot =
839
+ default_chrome_extension_log_email_send_to_hubspot
840
+ end
841
+ unless chrome_extension_auto_match_salesforce_opportunity == SKIP
842
+ @chrome_extension_auto_match_salesforce_opportunity =
843
+ chrome_extension_auto_match_salesforce_opportunity
844
+ end
845
+ unless chrome_extension_gmail_enable_email_tools == SKIP
846
+ @chrome_extension_gmail_enable_email_tools =
847
+ chrome_extension_gmail_enable_email_tools
848
+ end
849
+ unless enable_desktop_notifications == SKIP
850
+ @enable_desktop_notifications =
851
+ enable_desktop_notifications
852
+ end
853
+ unless enable_gmail_desktop_notifications == SKIP
854
+ @enable_gmail_desktop_notifications =
855
+ enable_gmail_desktop_notifications
856
+ end
857
+ unless default_chrome_extension_enable_reminders == SKIP
858
+ @default_chrome_extension_enable_reminders =
859
+ default_chrome_extension_enable_reminders
860
+ end
861
+ unless chrome_extension_gmail_enable_crm_sidebar == SKIP
862
+ @chrome_extension_gmail_enable_crm_sidebar =
863
+ chrome_extension_gmail_enable_crm_sidebar
864
+ end
865
+ unless show_chrome_extension_buying_intent_promo == SKIP
866
+ @show_chrome_extension_buying_intent_promo =
867
+ show_chrome_extension_buying_intent_promo
868
+ end
869
+ unless apollo_everywhere_search_count == SKIP
870
+ @apollo_everywhere_search_count =
871
+ apollo_everywhere_search_count
872
+ end
873
+ @additional_properties = additional_properties
874
+ end
875
+
876
+ # Creates an instance of the object from a hash.
877
+ def self.from_hash(hash)
878
+ return nil unless hash
879
+
880
+ # Extract variables from the hash.
881
+ id = hash.key?('id') ? hash['id'] : SKIP
882
+ team_id = hash.key?('team_id') ? hash['team_id'] : SKIP
883
+ first_name = hash.key?('first_name') ? hash['first_name'] : SKIP
884
+ last_name = hash.key?('last_name') ? hash['last_name'] : SKIP
885
+ title = hash.key?('title') ? hash['title'] : SKIP
886
+ email = hash.key?('email') ? hash['email'] : SKIP
887
+ created_at = hash.key?('created_at') ? hash['created_at'] : SKIP
888
+ credit_limit = hash.key?('credit_limit') ? hash['credit_limit'] : SKIP
889
+ direct_dial_credit_limit =
890
+ hash.key?('direct_dial_credit_limit') ? hash['direct_dial_credit_limit'] : SKIP
891
+ export_credit_limit =
892
+ hash.key?('export_credit_limit') ? hash['export_credit_limit'] : SKIP
893
+ ai_credit_limit =
894
+ hash.key?('ai_credit_limit') ? hash['ai_credit_limit'] : SKIP
895
+ salesforce_account =
896
+ hash.key?('salesforce_account') ? hash['salesforce_account'] : SKIP
897
+ deleted = hash['deleted'] ||= true
898
+ opt_out_html_template =
899
+ hash.key?('opt_out_html_template') ? hash['opt_out_html_template'] : SKIP
900
+ name = hash.key?('name') ? hash['name'] : SKIP
901
+ referral_code = hash.key?('referral_code') ? hash['referral_code'] : SKIP
902
+ password_needs_reset = hash['password_needs_reset'] ||= true
903
+ salesforce_id = hash.key?('salesforce_id') ? hash['salesforce_id'] : SKIP
904
+ default_cockpit_layout =
905
+ hash.key?('default_cockpit_layout') ? hash['default_cockpit_layout'] : SKIP
906
+ default_account_overview_layout_id =
907
+ hash.key?('default_account_overview_layout_id') ? hash['default_account_overview_layout_id'] : SKIP
908
+ default_contact_overview_layout_id =
909
+ hash.key?('default_contact_overview_layout_id') ? hash['default_contact_overview_layout_id'] : SKIP
910
+ default_person_overview_layout_id =
911
+ hash.key?('default_person_overview_layout_id') ? hash['default_person_overview_layout_id'] : SKIP
912
+ default_organization_overview_layout_id =
913
+ hash.key?('default_organization_overview_layout_id') ? hash['default_organization_overview_layout_id'] : SKIP
914
+ default_opportunity_overview_layout_id =
915
+ hash.key?('default_opportunity_overview_layout_id') ? hash['default_opportunity_overview_layout_id'] : SKIP
916
+ default_home_overview_layout_id =
917
+ hash.key?('default_home_overview_layout_id') ? hash['default_home_overview_layout_id'] : SKIP
918
+ bridge_calls = hash['bridge_calls'] ||= true
919
+ bridge_phone_number =
920
+ hash.key?('bridge_phone_number') ? hash['bridge_phone_number'] : SKIP
921
+ bridge_incoming_calls = hash['bridge_incoming_calls'] ||= true
922
+ bridge_incoming_phone_number =
923
+ hash.key?('bridge_incoming_phone_number') ? hash['bridge_incoming_phone_number'] : SKIP
924
+ current_email_verified = hash['current_email_verified'] ||= true
925
+ record_calls = hash['record_calls'] ||= true
926
+ salesforce_instance_url =
927
+ hash.key?('salesforce_instance_url') ? hash['salesforce_instance_url'] : SKIP
928
+ permission_set_id =
929
+ hash.key?('permission_set_id') ? hash['permission_set_id'] : SKIP
930
+ default_use_local_numbers = hash['default_use_local_numbers'] ||= true
931
+ disable_email_linking =
932
+ hash.key?('disable_email_linking') ? hash['disable_email_linking'] : SKIP
933
+ sync_salesforce_id =
934
+ hash.key?('sync_salesforce_id') ? hash['sync_salesforce_id'] : SKIP
935
+ sync_crm_id = hash.key?('sync_crm_id') ? hash['sync_crm_id'] : SKIP
936
+ zp_contact_id = hash.key?('zp_contact_id') ? hash['zp_contact_id'] : SKIP
937
+ chrome_extension_downloaded = hash['chrome_extension_downloaded'] ||= true
938
+ zp_is_super_analytics_user =
939
+ hash.key?('zp_is_super_analytics_user') ? hash['zp_is_super_analytics_user'] : SKIP
940
+ email_oauth_signin_only = hash['email_oauth_signin_only'] ||= true
941
+ notification_last_created_at =
942
+ hash.key?('notification_last_created_at') ? hash['notification_last_created_at'] : SKIP
943
+ crm_requested_to_integrate =
944
+ hash.key?('crm_requested_to_integrate') ? hash['crm_requested_to_integrate'] : SKIP
945
+ has_invited_user = hash['has_invited_user'] ||= true
946
+ has_used_enrichment = hash['has_used_enrichment'] ||= true
947
+ has_uploaded_csv = hash['has_uploaded_csv'] ||= true
948
+ has_hidden_onboarding = hash['has_hidden_onboarding'] ||= true
949
+ notification_last_read_at =
950
+ hash.key?('notification_last_read_at') ? hash['notification_last_read_at'] : SKIP
951
+ daily_data_request_email = hash['daily_data_request_email'] ||= true
952
+ data_request_emails = hash['data_request_emails'] ||= true
953
+ daily_task_email = hash['daily_task_email'] ||= true
954
+ free_data_credits_email = hash['free_data_credits_email'] ||= true
955
+ dismiss_new_team_suggestion = hash['dismiss_new_team_suggestion'] ||= true
956
+ request_email_change_to =
957
+ hash.key?('request_email_change_to') ? hash['request_email_change_to'] : SKIP
958
+ self_identified_persona =
959
+ hash.key?('self_identified_persona') ? hash['self_identified_persona'] : SKIP
960
+ territory_is_active = hash['territory_is_active'] ||= true
961
+ conversation_is_private =
962
+ hash.key?('conversation_is_private') ? hash['conversation_is_private'] : SKIP
963
+ show_deals_detail_page_updates_modal =
964
+ hash['show_deals_detail_page_updates_modal'] ||= true
965
+ assistant_setting = AssistantSetting.from_hash(hash['assistant_setting']) if
966
+ hash['assistant_setting']
967
+ fields_fully_loaded = hash['fields_fully_loaded'] ||= true
968
+ typed_custom_fields =
969
+ hash.key?('typed_custom_fields') ? hash['typed_custom_fields'] : SKIP
970
+ connected_to_slack = hash['connected_to_slack'] ||= true
971
+ crm_email = hash.key?('crm_email') ? hash['crm_email'] : SKIP
972
+ triggered_referral_campaigns =
973
+ hash.key?('triggered_referral_campaigns') ? hash['triggered_referral_campaigns'] : SKIP
974
+ enable_click_tracking = hash['enable_click_tracking'] ||= true
975
+ enable_open_tracking = hash['enable_open_tracking'] ||= true
976
+ should_include_unsubscribe_link =
977
+ hash['should_include_unsubscribe_link'] ||= true
978
+ enable_one_click_unsubscribe =
979
+ hash.key?('enable_one_click_unsubscribe') ? hash['enable_one_click_unsubscribe'] : SKIP
980
+ subteam_ids = hash.key?('subteam_ids') ? hash['subteam_ids'] : SKIP
981
+ prospect_territory_ids =
982
+ hash.key?('prospect_territory_ids') ? hash['prospect_territory_ids'] : SKIP
983
+ toggled_on_territory_ids =
984
+ hash.key?('toggled_on_territory_ids') ? hash['toggled_on_territory_ids'] : SKIP
985
+ linked_salesforce =
986
+ hash.key?('linked_salesforce') ? hash['linked_salesforce'] : SKIP
987
+ linked_zoom_conference_account =
988
+ hash['linked_zoom_conference_account'] ||= true
989
+ linked_bot_conference_account =
990
+ hash['linked_bot_conference_account'] ||= true
991
+ linked_bot_conference_account_platforms =
992
+ hash.key?('linked_bot_conference_account_platforms') ? hash['linked_bot_conference_account_platforms'] : SKIP
993
+ has_conference_account = hash['has_conference_account'] ||= true
994
+ linked_hubspot = hash['linked_hubspot'] ||= true
995
+ linked_salesloft = hash['linked_salesloft'] ||= true
996
+ linked_crm_name =
997
+ hash.key?('linked_crm_name') ? hash['linked_crm_name'] : SKIP
998
+ chrome_extension_enabled_features =
999
+ hash.key?('chrome_extension_enabled_features') ? hash['chrome_extension_enabled_features'] : SKIP
1000
+ chrome_extension_exclude_from_websites =
1001
+ hash.key?('chrome_extension_exclude_from_websites') ? hash['chrome_extension_exclude_from_websites'] : SKIP
1002
+ chrome_extension_everywhere_icon_horizontal_position =
1003
+ hash.key?('chrome_extension_everywhere_icon_horizontal_position') ? hash['chrome_extension_everywhere_icon_horizontal_position'] : SKIP
1004
+ chrome_extension_everywhere_icon_vertical_position_in_vh =
1005
+ hash['chrome_extension_everywhere_icon_vertical_position_in_vh'] ||= 0
1006
+ default_chrome_extension_log_email_send_to_salesforce =
1007
+ hash['default_chrome_extension_log_email_send_to_salesforce'] ||= true
1008
+ default_chrome_extension_log_email_send_to_hubspot =
1009
+ hash['default_chrome_extension_log_email_send_to_hubspot'] ||= true
1010
+ chrome_extension_auto_match_salesforce_opportunity =
1011
+ hash['chrome_extension_auto_match_salesforce_opportunity'] ||= true
1012
+ chrome_extension_gmail_enable_email_tools =
1013
+ hash['chrome_extension_gmail_enable_email_tools'] ||= true
1014
+ enable_desktop_notifications =
1015
+ hash['enable_desktop_notifications'] ||= true
1016
+ enable_gmail_desktop_notifications =
1017
+ hash.key?('enable_gmail_desktop_notifications') ? hash['enable_gmail_desktop_notifications'] : SKIP
1018
+ default_chrome_extension_enable_reminders =
1019
+ hash['default_chrome_extension_enable_reminders'] ||= true
1020
+ chrome_extension_gmail_enable_crm_sidebar =
1021
+ hash['chrome_extension_gmail_enable_crm_sidebar'] ||= true
1022
+ show_chrome_extension_buying_intent_promo =
1023
+ hash['show_chrome_extension_buying_intent_promo'] ||= true
1024
+ apollo_everywhere_search_count =
1025
+ hash['apollo_everywhere_search_count'] ||= 0
1026
+
1027
+ # Create a new hash for additional properties, removing known properties.
1028
+ new_hash = hash.reject { |k, _| names.value?(k) }
1029
+
1030
+ additional_properties = APIHelper.get_additional_properties(
1031
+ new_hash, proc { |value| value }
1032
+ )
1033
+
1034
+ # Create object from extracted values.
1035
+ User.new(id: id,
1036
+ team_id: team_id,
1037
+ first_name: first_name,
1038
+ last_name: last_name,
1039
+ title: title,
1040
+ email: email,
1041
+ created_at: created_at,
1042
+ credit_limit: credit_limit,
1043
+ direct_dial_credit_limit: direct_dial_credit_limit,
1044
+ export_credit_limit: export_credit_limit,
1045
+ ai_credit_limit: ai_credit_limit,
1046
+ salesforce_account: salesforce_account,
1047
+ deleted: deleted,
1048
+ opt_out_html_template: opt_out_html_template,
1049
+ name: name,
1050
+ referral_code: referral_code,
1051
+ password_needs_reset: password_needs_reset,
1052
+ salesforce_id: salesforce_id,
1053
+ default_cockpit_layout: default_cockpit_layout,
1054
+ default_account_overview_layout_id: default_account_overview_layout_id,
1055
+ default_contact_overview_layout_id: default_contact_overview_layout_id,
1056
+ default_person_overview_layout_id: default_person_overview_layout_id,
1057
+ default_organization_overview_layout_id: default_organization_overview_layout_id,
1058
+ default_opportunity_overview_layout_id: default_opportunity_overview_layout_id,
1059
+ default_home_overview_layout_id: default_home_overview_layout_id,
1060
+ bridge_calls: bridge_calls,
1061
+ bridge_phone_number: bridge_phone_number,
1062
+ bridge_incoming_calls: bridge_incoming_calls,
1063
+ bridge_incoming_phone_number: bridge_incoming_phone_number,
1064
+ current_email_verified: current_email_verified,
1065
+ record_calls: record_calls,
1066
+ salesforce_instance_url: salesforce_instance_url,
1067
+ permission_set_id: permission_set_id,
1068
+ default_use_local_numbers: default_use_local_numbers,
1069
+ disable_email_linking: disable_email_linking,
1070
+ sync_salesforce_id: sync_salesforce_id,
1071
+ sync_crm_id: sync_crm_id,
1072
+ zp_contact_id: zp_contact_id,
1073
+ chrome_extension_downloaded: chrome_extension_downloaded,
1074
+ zp_is_super_analytics_user: zp_is_super_analytics_user,
1075
+ email_oauth_signin_only: email_oauth_signin_only,
1076
+ notification_last_created_at: notification_last_created_at,
1077
+ crm_requested_to_integrate: crm_requested_to_integrate,
1078
+ has_invited_user: has_invited_user,
1079
+ has_used_enrichment: has_used_enrichment,
1080
+ has_uploaded_csv: has_uploaded_csv,
1081
+ has_hidden_onboarding: has_hidden_onboarding,
1082
+ notification_last_read_at: notification_last_read_at,
1083
+ daily_data_request_email: daily_data_request_email,
1084
+ data_request_emails: data_request_emails,
1085
+ daily_task_email: daily_task_email,
1086
+ free_data_credits_email: free_data_credits_email,
1087
+ dismiss_new_team_suggestion: dismiss_new_team_suggestion,
1088
+ request_email_change_to: request_email_change_to,
1089
+ self_identified_persona: self_identified_persona,
1090
+ territory_is_active: territory_is_active,
1091
+ conversation_is_private: conversation_is_private,
1092
+ show_deals_detail_page_updates_modal: show_deals_detail_page_updates_modal,
1093
+ assistant_setting: assistant_setting,
1094
+ fields_fully_loaded: fields_fully_loaded,
1095
+ typed_custom_fields: typed_custom_fields,
1096
+ connected_to_slack: connected_to_slack,
1097
+ crm_email: crm_email,
1098
+ triggered_referral_campaigns: triggered_referral_campaigns,
1099
+ enable_click_tracking: enable_click_tracking,
1100
+ enable_open_tracking: enable_open_tracking,
1101
+ should_include_unsubscribe_link: should_include_unsubscribe_link,
1102
+ enable_one_click_unsubscribe: enable_one_click_unsubscribe,
1103
+ subteam_ids: subteam_ids,
1104
+ prospect_territory_ids: prospect_territory_ids,
1105
+ toggled_on_territory_ids: toggled_on_territory_ids,
1106
+ linked_salesforce: linked_salesforce,
1107
+ linked_zoom_conference_account: linked_zoom_conference_account,
1108
+ linked_bot_conference_account: linked_bot_conference_account,
1109
+ linked_bot_conference_account_platforms: linked_bot_conference_account_platforms,
1110
+ has_conference_account: has_conference_account,
1111
+ linked_hubspot: linked_hubspot,
1112
+ linked_salesloft: linked_salesloft,
1113
+ linked_crm_name: linked_crm_name,
1114
+ chrome_extension_enabled_features: chrome_extension_enabled_features,
1115
+ chrome_extension_exclude_from_websites: chrome_extension_exclude_from_websites,
1116
+ chrome_extension_everywhere_icon_horizontal_position: chrome_extension_everywhere_icon_horizontal_position,
1117
+ chrome_extension_everywhere_icon_vertical_position_in_vh: chrome_extension_everywhere_icon_vertical_position_in_vh,
1118
+ default_chrome_extension_log_email_send_to_salesforce: default_chrome_extension_log_email_send_to_salesforce,
1119
+ default_chrome_extension_log_email_send_to_hubspot: default_chrome_extension_log_email_send_to_hubspot,
1120
+ chrome_extension_auto_match_salesforce_opportunity: chrome_extension_auto_match_salesforce_opportunity,
1121
+ chrome_extension_gmail_enable_email_tools: chrome_extension_gmail_enable_email_tools,
1122
+ enable_desktop_notifications: enable_desktop_notifications,
1123
+ enable_gmail_desktop_notifications: enable_gmail_desktop_notifications,
1124
+ default_chrome_extension_enable_reminders: default_chrome_extension_enable_reminders,
1125
+ chrome_extension_gmail_enable_crm_sidebar: chrome_extension_gmail_enable_crm_sidebar,
1126
+ show_chrome_extension_buying_intent_promo: show_chrome_extension_buying_intent_promo,
1127
+ apollo_everywhere_search_count: apollo_everywhere_search_count,
1128
+ additional_properties: additional_properties)
1129
+ end
1130
+
1131
+ # Provides a human-readable string representation of the object.
1132
+ def to_s
1133
+ class_name = self.class.name.split('::').last
1134
+ "<#{class_name} id: #{@id}, team_id: #{@team_id}, first_name: #{@first_name}, last_name:"\
1135
+ " #{@last_name}, title: #{@title}, email: #{@email}, created_at: #{@created_at},"\
1136
+ " credit_limit: #{@credit_limit}, direct_dial_credit_limit: #{@direct_dial_credit_limit},"\
1137
+ " export_credit_limit: #{@export_credit_limit}, ai_credit_limit: #{@ai_credit_limit},"\
1138
+ " salesforce_account: #{@salesforce_account}, deleted: #{@deleted}, opt_out_html_template:"\
1139
+ " #{@opt_out_html_template}, name: #{@name}, referral_code: #{@referral_code},"\
1140
+ " password_needs_reset: #{@password_needs_reset}, salesforce_id: #{@salesforce_id},"\
1141
+ " default_cockpit_layout: #{@default_cockpit_layout}, default_account_overview_layout_id:"\
1142
+ " #{@default_account_overview_layout_id}, default_contact_overview_layout_id:"\
1143
+ " #{@default_contact_overview_layout_id}, default_person_overview_layout_id:"\
1144
+ " #{@default_person_overview_layout_id}, default_organization_overview_layout_id:"\
1145
+ " #{@default_organization_overview_layout_id}, default_opportunity_overview_layout_id:"\
1146
+ " #{@default_opportunity_overview_layout_id}, default_home_overview_layout_id:"\
1147
+ " #{@default_home_overview_layout_id}, bridge_calls: #{@bridge_calls}, bridge_phone_number:"\
1148
+ " #{@bridge_phone_number}, bridge_incoming_calls: #{@bridge_incoming_calls},"\
1149
+ " bridge_incoming_phone_number: #{@bridge_incoming_phone_number}, current_email_verified:"\
1150
+ " #{@current_email_verified}, record_calls: #{@record_calls}, salesforce_instance_url:"\
1151
+ " #{@salesforce_instance_url}, permission_set_id: #{@permission_set_id},"\
1152
+ " default_use_local_numbers: #{@default_use_local_numbers}, disable_email_linking:"\
1153
+ " #{@disable_email_linking}, sync_salesforce_id: #{@sync_salesforce_id}, sync_crm_id:"\
1154
+ " #{@sync_crm_id}, zp_contact_id: #{@zp_contact_id}, chrome_extension_downloaded:"\
1155
+ " #{@chrome_extension_downloaded}, zp_is_super_analytics_user:"\
1156
+ " #{@zp_is_super_analytics_user}, email_oauth_signin_only: #{@email_oauth_signin_only},"\
1157
+ " notification_last_created_at: #{@notification_last_created_at},"\
1158
+ " crm_requested_to_integrate: #{@crm_requested_to_integrate}, has_invited_user:"\
1159
+ " #{@has_invited_user}, has_used_enrichment: #{@has_used_enrichment}, has_uploaded_csv:"\
1160
+ " #{@has_uploaded_csv}, has_hidden_onboarding: #{@has_hidden_onboarding},"\
1161
+ " notification_last_read_at: #{@notification_last_read_at}, daily_data_request_email:"\
1162
+ " #{@daily_data_request_email}, data_request_emails: #{@data_request_emails},"\
1163
+ " daily_task_email: #{@daily_task_email}, free_data_credits_email:"\
1164
+ " #{@free_data_credits_email}, dismiss_new_team_suggestion: #{@dismiss_new_team_suggestion},"\
1165
+ " request_email_change_to: #{@request_email_change_to}, self_identified_persona:"\
1166
+ " #{@self_identified_persona}, territory_is_active: #{@territory_is_active},"\
1167
+ " conversation_is_private: #{@conversation_is_private},"\
1168
+ " show_deals_detail_page_updates_modal: #{@show_deals_detail_page_updates_modal},"\
1169
+ " assistant_setting: #{@assistant_setting}, fields_fully_loaded: #{@fields_fully_loaded},"\
1170
+ " typed_custom_fields: #{@typed_custom_fields}, connected_to_slack: #{@connected_to_slack},"\
1171
+ " crm_email: #{@crm_email}, triggered_referral_campaigns: #{@triggered_referral_campaigns},"\
1172
+ " enable_click_tracking: #{@enable_click_tracking}, enable_open_tracking:"\
1173
+ " #{@enable_open_tracking}, should_include_unsubscribe_link:"\
1174
+ " #{@should_include_unsubscribe_link}, enable_one_click_unsubscribe:"\
1175
+ " #{@enable_one_click_unsubscribe}, subteam_ids: #{@subteam_ids}, prospect_territory_ids:"\
1176
+ " #{@prospect_territory_ids}, toggled_on_territory_ids: #{@toggled_on_territory_ids},"\
1177
+ " linked_salesforce: #{@linked_salesforce}, linked_zoom_conference_account:"\
1178
+ " #{@linked_zoom_conference_account}, linked_bot_conference_account:"\
1179
+ " #{@linked_bot_conference_account}, linked_bot_conference_account_platforms:"\
1180
+ " #{@linked_bot_conference_account_platforms}, has_conference_account:"\
1181
+ " #{@has_conference_account}, linked_hubspot: #{@linked_hubspot}, linked_salesloft:"\
1182
+ " #{@linked_salesloft}, linked_crm_name: #{@linked_crm_name},"\
1183
+ " chrome_extension_enabled_features: #{@chrome_extension_enabled_features},"\
1184
+ " chrome_extension_exclude_from_websites: #{@chrome_extension_exclude_from_websites},"\
1185
+ ' chrome_extension_everywhere_icon_horizontal_position:'\
1186
+ " #{@chrome_extension_everywhere_icon_horizontal_position},"\
1187
+ ' chrome_extension_everywhere_icon_vertical_position_in_vh:'\
1188
+ " #{@chrome_extension_everywhere_icon_vertical_position_in_vh},"\
1189
+ ' default_chrome_extension_log_email_send_to_salesforce:'\
1190
+ " #{@default_chrome_extension_log_email_send_to_salesforce},"\
1191
+ ' default_chrome_extension_log_email_send_to_hubspot:'\
1192
+ " #{@default_chrome_extension_log_email_send_to_hubspot},"\
1193
+ ' chrome_extension_auto_match_salesforce_opportunity:'\
1194
+ " #{@chrome_extension_auto_match_salesforce_opportunity},"\
1195
+ " chrome_extension_gmail_enable_email_tools: #{@chrome_extension_gmail_enable_email_tools},"\
1196
+ " enable_desktop_notifications: #{@enable_desktop_notifications},"\
1197
+ " enable_gmail_desktop_notifications: #{@enable_gmail_desktop_notifications},"\
1198
+ " default_chrome_extension_enable_reminders: #{@default_chrome_extension_enable_reminders},"\
1199
+ " chrome_extension_gmail_enable_crm_sidebar: #{@chrome_extension_gmail_enable_crm_sidebar},"\
1200
+ " show_chrome_extension_buying_intent_promo: #{@show_chrome_extension_buying_intent_promo},"\
1201
+ " apollo_everywhere_search_count: #{@apollo_everywhere_search_count}, additional_properties:"\
1202
+ " #{@additional_properties}>"
1203
+ end
1204
+
1205
+ # Provides a debugging-friendly string with detailed object information.
1206
+ def inspect
1207
+ class_name = self.class.name.split('::').last
1208
+ "<#{class_name} id: #{@id.inspect}, team_id: #{@team_id.inspect}, first_name:"\
1209
+ " #{@first_name.inspect}, last_name: #{@last_name.inspect}, title: #{@title.inspect}, email:"\
1210
+ " #{@email.inspect}, created_at: #{@created_at.inspect}, credit_limit:"\
1211
+ " #{@credit_limit.inspect}, direct_dial_credit_limit: #{@direct_dial_credit_limit.inspect},"\
1212
+ " export_credit_limit: #{@export_credit_limit.inspect}, ai_credit_limit:"\
1213
+ " #{@ai_credit_limit.inspect}, salesforce_account: #{@salesforce_account.inspect}, deleted:"\
1214
+ " #{@deleted.inspect}, opt_out_html_template: #{@opt_out_html_template.inspect}, name:"\
1215
+ " #{@name.inspect}, referral_code: #{@referral_code.inspect}, password_needs_reset:"\
1216
+ " #{@password_needs_reset.inspect}, salesforce_id: #{@salesforce_id.inspect},"\
1217
+ " default_cockpit_layout: #{@default_cockpit_layout.inspect},"\
1218
+ " default_account_overview_layout_id: #{@default_account_overview_layout_id.inspect},"\
1219
+ " default_contact_overview_layout_id: #{@default_contact_overview_layout_id.inspect},"\
1220
+ " default_person_overview_layout_id: #{@default_person_overview_layout_id.inspect},"\
1221
+ ' default_organization_overview_layout_id:'\
1222
+ " #{@default_organization_overview_layout_id.inspect},"\
1223
+ ' default_opportunity_overview_layout_id:'\
1224
+ " #{@default_opportunity_overview_layout_id.inspect}, default_home_overview_layout_id:"\
1225
+ " #{@default_home_overview_layout_id.inspect}, bridge_calls: #{@bridge_calls.inspect},"\
1226
+ " bridge_phone_number: #{@bridge_phone_number.inspect}, bridge_incoming_calls:"\
1227
+ " #{@bridge_incoming_calls.inspect}, bridge_incoming_phone_number:"\
1228
+ " #{@bridge_incoming_phone_number.inspect}, current_email_verified:"\
1229
+ " #{@current_email_verified.inspect}, record_calls: #{@record_calls.inspect},"\
1230
+ " salesforce_instance_url: #{@salesforce_instance_url.inspect}, permission_set_id:"\
1231
+ " #{@permission_set_id.inspect}, default_use_local_numbers:"\
1232
+ " #{@default_use_local_numbers.inspect}, disable_email_linking:"\
1233
+ " #{@disable_email_linking.inspect}, sync_salesforce_id: #{@sync_salesforce_id.inspect},"\
1234
+ " sync_crm_id: #{@sync_crm_id.inspect}, zp_contact_id: #{@zp_contact_id.inspect},"\
1235
+ " chrome_extension_downloaded: #{@chrome_extension_downloaded.inspect},"\
1236
+ " zp_is_super_analytics_user: #{@zp_is_super_analytics_user.inspect},"\
1237
+ " email_oauth_signin_only: #{@email_oauth_signin_only.inspect},"\
1238
+ " notification_last_created_at: #{@notification_last_created_at.inspect},"\
1239
+ " crm_requested_to_integrate: #{@crm_requested_to_integrate.inspect}, has_invited_user:"\
1240
+ " #{@has_invited_user.inspect}, has_used_enrichment: #{@has_used_enrichment.inspect},"\
1241
+ " has_uploaded_csv: #{@has_uploaded_csv.inspect}, has_hidden_onboarding:"\
1242
+ " #{@has_hidden_onboarding.inspect}, notification_last_read_at:"\
1243
+ " #{@notification_last_read_at.inspect}, daily_data_request_email:"\
1244
+ " #{@daily_data_request_email.inspect}, data_request_emails:"\
1245
+ " #{@data_request_emails.inspect}, daily_task_email: #{@daily_task_email.inspect},"\
1246
+ " free_data_credits_email: #{@free_data_credits_email.inspect}, dismiss_new_team_suggestion:"\
1247
+ " #{@dismiss_new_team_suggestion.inspect}, request_email_change_to:"\
1248
+ " #{@request_email_change_to.inspect}, self_identified_persona:"\
1249
+ " #{@self_identified_persona.inspect}, territory_is_active: #{@territory_is_active.inspect},"\
1250
+ " conversation_is_private: #{@conversation_is_private.inspect},"\
1251
+ " show_deals_detail_page_updates_modal: #{@show_deals_detail_page_updates_modal.inspect},"\
1252
+ " assistant_setting: #{@assistant_setting.inspect}, fields_fully_loaded:"\
1253
+ " #{@fields_fully_loaded.inspect}, typed_custom_fields: #{@typed_custom_fields.inspect},"\
1254
+ " connected_to_slack: #{@connected_to_slack.inspect}, crm_email: #{@crm_email.inspect},"\
1255
+ " triggered_referral_campaigns: #{@triggered_referral_campaigns.inspect},"\
1256
+ " enable_click_tracking: #{@enable_click_tracking.inspect}, enable_open_tracking:"\
1257
+ " #{@enable_open_tracking.inspect}, should_include_unsubscribe_link:"\
1258
+ " #{@should_include_unsubscribe_link.inspect}, enable_one_click_unsubscribe:"\
1259
+ " #{@enable_one_click_unsubscribe.inspect}, subteam_ids: #{@subteam_ids.inspect},"\
1260
+ " prospect_territory_ids: #{@prospect_territory_ids.inspect}, toggled_on_territory_ids:"\
1261
+ " #{@toggled_on_territory_ids.inspect}, linked_salesforce: #{@linked_salesforce.inspect},"\
1262
+ " linked_zoom_conference_account: #{@linked_zoom_conference_account.inspect},"\
1263
+ " linked_bot_conference_account: #{@linked_bot_conference_account.inspect},"\
1264
+ ' linked_bot_conference_account_platforms:'\
1265
+ " #{@linked_bot_conference_account_platforms.inspect}, has_conference_account:"\
1266
+ " #{@has_conference_account.inspect}, linked_hubspot: #{@linked_hubspot.inspect},"\
1267
+ " linked_salesloft: #{@linked_salesloft.inspect}, linked_crm_name:"\
1268
+ " #{@linked_crm_name.inspect}, chrome_extension_enabled_features:"\
1269
+ " #{@chrome_extension_enabled_features.inspect}, chrome_extension_exclude_from_websites:"\
1270
+ " #{@chrome_extension_exclude_from_websites.inspect},"\
1271
+ ' chrome_extension_everywhere_icon_horizontal_position:'\
1272
+ " #{@chrome_extension_everywhere_icon_horizontal_position.inspect},"\
1273
+ ' chrome_extension_everywhere_icon_vertical_position_in_vh:'\
1274
+ " #{@chrome_extension_everywhere_icon_vertical_position_in_vh.inspect},"\
1275
+ ' default_chrome_extension_log_email_send_to_salesforce:'\
1276
+ " #{@default_chrome_extension_log_email_send_to_salesforce.inspect},"\
1277
+ ' default_chrome_extension_log_email_send_to_hubspot:'\
1278
+ " #{@default_chrome_extension_log_email_send_to_hubspot.inspect},"\
1279
+ ' chrome_extension_auto_match_salesforce_opportunity:'\
1280
+ " #{@chrome_extension_auto_match_salesforce_opportunity.inspect},"\
1281
+ ' chrome_extension_gmail_enable_email_tools:'\
1282
+ " #{@chrome_extension_gmail_enable_email_tools.inspect}, enable_desktop_notifications:"\
1283
+ " #{@enable_desktop_notifications.inspect}, enable_gmail_desktop_notifications:"\
1284
+ " #{@enable_gmail_desktop_notifications.inspect}, default_chrome_extension_enable_reminders:"\
1285
+ " #{@default_chrome_extension_enable_reminders.inspect},"\
1286
+ ' chrome_extension_gmail_enable_crm_sidebar:'\
1287
+ " #{@chrome_extension_gmail_enable_crm_sidebar.inspect},"\
1288
+ ' show_chrome_extension_buying_intent_promo:'\
1289
+ " #{@show_chrome_extension_buying_intent_promo.inspect}, apollo_everywhere_search_count:"\
1290
+ " #{@apollo_everywhere_search_count.inspect}, additional_properties:"\
1291
+ " #{@additional_properties}>"
1292
+ end
1293
+ end
1294
+ end