ZOHOCRMSDK5_0 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1086) hide show
  1. checksums.yaml +7 -0
  2. data/src/ZOHOCRMSDK5_0.rb +1082 -0
  3. data/src/com/zoho/api/authenticator/oauth_token.rb +425 -0
  4. data/src/com/zoho/api/authenticator/store/db_store.rb +279 -0
  5. data/src/com/zoho/api/authenticator/store/file_store.rb +280 -0
  6. data/src/com/zoho/api/authenticator/store/token_store.rb +31 -0
  7. data/src/com/zoho/api/authenticator/token.rb +14 -0
  8. data/src/com/zoho/api/logger/sdk_logger.rb +88 -0
  9. data/src/com/zoho/crm/api/appointment_preference/action_handler.rb +12 -0
  10. data/src/com/zoho/crm/api/appointment_preference/action_response.rb +12 -0
  11. data/src/com/zoho/crm/api/appointment_preference/action_wrapper.rb +65 -0
  12. data/src/com/zoho/crm/api/appointment_preference/api_exception.rb +127 -0
  13. data/src/com/zoho/crm/api/appointment_preference/appointment_preference.rb +159 -0
  14. data/src/com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb +65 -0
  15. data/src/com/zoho/crm/api/appointment_preference/body_wrapper.rb +63 -0
  16. data/src/com/zoho/crm/api/appointment_preference/field.rb +82 -0
  17. data/src/com/zoho/crm/api/appointment_preference/field_mappings.rb +102 -0
  18. data/src/com/zoho/crm/api/appointment_preference/layout.rb +82 -0
  19. data/src/com/zoho/crm/api/appointment_preference/response_handler.rb +12 -0
  20. data/src/com/zoho/crm/api/appointment_preference/response_wrapper.rb +65 -0
  21. data/src/com/zoho/crm/api/appointment_preference/success_response.rb +123 -0
  22. data/src/com/zoho/crm/api/assignment_rules/action_response.rb +12 -0
  23. data/src/com/zoho/crm/api/assignment_rules/action_wrapper.rb +63 -0
  24. data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +125 -0
  25. data/src/com/zoho/crm/api/assignment_rules/assignment_rules.rb +235 -0
  26. data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +75 -0
  27. data/src/com/zoho/crm/api/assignment_rules/created_by.rb +122 -0
  28. data/src/com/zoho/crm/api/assignment_rules/default_assignee.rb +82 -0
  29. data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +12 -0
  30. data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +65 -0
  31. data/src/com/zoho/crm/api/assignment_rules/success_response.rb +123 -0
  32. data/src/com/zoho/crm/api/associate_email/action_handler.rb +12 -0
  33. data/src/com/zoho/crm/api/associate_email/action_response.rb +12 -0
  34. data/src/com/zoho/crm/api/associate_email/action_wrapper.rb +65 -0
  35. data/src/com/zoho/crm/api/associate_email/api_exception.rb +125 -0
  36. data/src/com/zoho/crm/api/associate_email/associate_email.rb +273 -0
  37. data/src/com/zoho/crm/api/associate_email/associate_email_operations.rb +49 -0
  38. data/src/com/zoho/crm/api/associate_email/attachments.rb +63 -0
  39. data/src/com/zoho/crm/api/associate_email/available.rb +101 -0
  40. data/src/com/zoho/crm/api/associate_email/body_wrapper.rb +63 -0
  41. data/src/com/zoho/crm/api/associate_email/from.rb +82 -0
  42. data/src/com/zoho/crm/api/associate_email/linked_record.rb +82 -0
  43. data/src/com/zoho/crm/api/associate_email/module_map.rb +82 -0
  44. data/src/com/zoho/crm/api/associate_email/record.rb +101 -0
  45. data/src/com/zoho/crm/api/associate_email/success_response.rb +123 -0
  46. data/src/com/zoho/crm/api/associate_email/to.rb +82 -0
  47. data/src/com/zoho/crm/api/attachments/action_handler.rb +12 -0
  48. data/src/com/zoho/crm/api/attachments/action_response.rb +12 -0
  49. data/src/com/zoho/crm/api/attachments/action_wrapper.rb +65 -0
  50. data/src/com/zoho/crm/api/attachments/api_exception.rb +125 -0
  51. data/src/com/zoho/crm/api/attachments/attachment.rb +368 -0
  52. data/src/com/zoho/crm/api/attachments/attachments_operations.rb +243 -0
  53. data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
  54. data/src/com/zoho/crm/api/attachments/info.rb +120 -0
  55. data/src/com/zoho/crm/api/attachments/owner.rb +82 -0
  56. data/src/com/zoho/crm/api/attachments/parent_id.rb +82 -0
  57. data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
  58. data/src/com/zoho/crm/api/attachments/response_wrapper.rb +84 -0
  59. data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
  60. data/src/com/zoho/crm/api/available_currencies/api_exception.rb +123 -0
  61. data/src/com/zoho/crm/api/available_currencies/available_currencies_operations.rb +30 -0
  62. data/src/com/zoho/crm/api/available_currencies/currency.rb +177 -0
  63. data/src/com/zoho/crm/api/available_currencies/response_handler.rb +12 -0
  64. data/src/com/zoho/crm/api/available_currencies/response_wrapper.rb +65 -0
  65. data/src/com/zoho/crm/api/backup/action_handler.rb +12 -0
  66. data/src/com/zoho/crm/api/backup/action_response.rb +12 -0
  67. data/src/com/zoho/crm/api/backup/action_wrapper.rb +65 -0
  68. data/src/com/zoho/crm/api/backup/api_exception.rb +127 -0
  69. data/src/com/zoho/crm/api/backup/backup.rb +158 -0
  70. data/src/com/zoho/crm/api/backup/backup_operations.rb +136 -0
  71. data/src/com/zoho/crm/api/backup/body_wrapper.rb +65 -0
  72. data/src/com/zoho/crm/api/backup/file_body_wrapper.rb +66 -0
  73. data/src/com/zoho/crm/api/backup/history.rb +196 -0
  74. data/src/com/zoho/crm/api/backup/history_wrapper.rb +84 -0
  75. data/src/com/zoho/crm/api/backup/info.rb +120 -0
  76. data/src/com/zoho/crm/api/backup/requester.rb +101 -0
  77. data/src/com/zoho/crm/api/backup/response_handler.rb +12 -0
  78. data/src/com/zoho/crm/api/backup/success_response.rb +123 -0
  79. data/src/com/zoho/crm/api/backup/urls.rb +101 -0
  80. data/src/com/zoho/crm/api/backup/urls_wrapper.rb +65 -0
  81. data/src/com/zoho/crm/api/blueprint/action_handler.rb +12 -0
  82. data/src/com/zoho/crm/api/blueprint/api_exception.rb +125 -0
  83. data/src/com/zoho/crm/api/blueprint/association_details.rb +82 -0
  84. data/src/com/zoho/crm/api/blueprint/auto_number.rb +101 -0
  85. data/src/com/zoho/crm/api/blueprint/blue_print.rb +121 -0
  86. data/src/com/zoho/crm/api/blueprint/blueprint_operations.rb +69 -0
  87. data/src/com/zoho/crm/api/blueprint/body_wrapper.rb +63 -0
  88. data/src/com/zoho/crm/api/blueprint/convert_mapping.rb +101 -0
  89. data/src/com/zoho/crm/api/blueprint/crypt.rb +120 -0
  90. data/src/com/zoho/crm/api/blueprint/currency.rb +82 -0
  91. data/src/com/zoho/crm/api/blueprint/escalation.rb +82 -0
  92. data/src/com/zoho/crm/api/blueprint/field.rb +924 -0
  93. data/src/com/zoho/crm/api/blueprint/formula.rb +82 -0
  94. data/src/com/zoho/crm/api/blueprint/layout.rb +82 -0
  95. data/src/com/zoho/crm/api/blueprint/lookup_field.rb +82 -0
  96. data/src/com/zoho/crm/api/blueprint/module.rb +120 -0
  97. data/src/com/zoho/crm/api/blueprint/module_fields.rb +120 -0
  98. data/src/com/zoho/crm/api/blueprint/module_mapping.rb +101 -0
  99. data/src/com/zoho/crm/api/blueprint/multi_select_lookup.rb +158 -0
  100. data/src/com/zoho/crm/api/blueprint/next_transition.rb +120 -0
  101. data/src/com/zoho/crm/api/blueprint/process_info.rb +253 -0
  102. data/src/com/zoho/crm/api/blueprint/profile.rb +101 -0
  103. data/src/com/zoho/crm/api/blueprint/response_handler.rb +12 -0
  104. data/src/com/zoho/crm/api/blueprint/response_wrapper.rb +65 -0
  105. data/src/com/zoho/crm/api/blueprint/success_response.rb +123 -0
  106. data/src/com/zoho/crm/api/blueprint/tool_tip.rb +82 -0
  107. data/src/com/zoho/crm/api/blueprint/transition.rb +273 -0
  108. data/src/com/zoho/crm/api/blueprint/view_type.rb +120 -0
  109. data/src/com/zoho/crm/api/bulk_read/action_handler.rb +12 -0
  110. data/src/com/zoho/crm/api/bulk_read/action_response.rb +12 -0
  111. data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +84 -0
  112. data/src/com/zoho/crm/api/bulk_read/api_exception.rb +127 -0
  113. data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +76 -0
  114. data/src/com/zoho/crm/api/bulk_read/call_back.rb +83 -0
  115. data/src/com/zoho/crm/api/bulk_read/criteria.rb +157 -0
  116. data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
  117. data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
  118. data/src/com/zoho/crm/api/bulk_read/query.rb +160 -0
  119. data/src/com/zoho/crm/api/bulk_read/request_wrapper.rb +102 -0
  120. data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
  121. data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
  122. data/src/com/zoho/crm/api/bulk_read/result.rb +139 -0
  123. data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
  124. data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
  125. data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
  126. data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
  127. data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
  128. data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
  129. data/src/com/zoho/crm/api/bulk_write/default_value.rb +98 -0
  130. data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +158 -0
  131. data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
  132. data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
  133. data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +140 -0
  134. data/src/com/zoho/crm/api/bulk_write/resource.rb +217 -0
  135. data/src/com/zoho/crm/api/bulk_write/response_handler.rb +12 -0
  136. data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +12 -0
  137. data/src/com/zoho/crm/api/bulk_write/result.rb +63 -0
  138. data/src/com/zoho/crm/api/bulk_write/success_response.rb +123 -0
  139. data/src/com/zoho/crm/api/business_hours/action_handler.rb +12 -0
  140. data/src/com/zoho/crm/api/business_hours/action_response.rb +12 -0
  141. data/src/com/zoho/crm/api/business_hours/action_wrapper.rb +65 -0
  142. data/src/com/zoho/crm/api/business_hours/api_exception.rb +127 -0
  143. data/src/com/zoho/crm/api/business_hours/body_wrapper.rb +63 -0
  144. data/src/com/zoho/crm/api/business_hours/break_hours_custom_timing.rb +83 -0
  145. data/src/com/zoho/crm/api/business_hours/business_hours.rb +178 -0
  146. data/src/com/zoho/crm/api/business_hours/business_hours_created.rb +123 -0
  147. data/src/com/zoho/crm/api/business_hours/business_hours_operations.rb +90 -0
  148. data/src/com/zoho/crm/api/business_hours/response_handler.rb +12 -0
  149. data/src/com/zoho/crm/api/business_hours/response_wrapper.rb +65 -0
  150. data/src/com/zoho/crm/api/cancel_meetings/action_handler.rb +12 -0
  151. data/src/com/zoho/crm/api/cancel_meetings/action_response.rb +12 -0
  152. data/src/com/zoho/crm/api/cancel_meetings/action_wrapper.rb +65 -0
  153. data/src/com/zoho/crm/api/cancel_meetings/api_exception.rb +125 -0
  154. data/src/com/zoho/crm/api/cancel_meetings/body_wrapper.rb +63 -0
  155. data/src/com/zoho/crm/api/cancel_meetings/cancel_meetings_operations.rb +43 -0
  156. data/src/com/zoho/crm/api/cancel_meetings/notify.rb +63 -0
  157. data/src/com/zoho/crm/api/cancel_meetings/success_response.rb +123 -0
  158. data/src/com/zoho/crm/api/change_owner/action_handler.rb +12 -0
  159. data/src/com/zoho/crm/api/change_owner/action_response.rb +12 -0
  160. data/src/com/zoho/crm/api/change_owner/action_wrapper.rb +65 -0
  161. data/src/com/zoho/crm/api/change_owner/api_exception.rb +125 -0
  162. data/src/com/zoho/crm/api/change_owner/body_wrapper.rb +101 -0
  163. data/src/com/zoho/crm/api/change_owner/change_owner_operations.rb +71 -0
  164. data/src/com/zoho/crm/api/change_owner/error_details.rb +82 -0
  165. data/src/com/zoho/crm/api/change_owner/mass_wrapper.rb +122 -0
  166. data/src/com/zoho/crm/api/change_owner/owner.rb +63 -0
  167. data/src/com/zoho/crm/api/change_owner/related_modules.rb +82 -0
  168. data/src/com/zoho/crm/api/change_owner/success_response.rb +123 -0
  169. data/src/com/zoho/crm/api/contact_roles/action_handler.rb +12 -0
  170. data/src/com/zoho/crm/api/contact_roles/action_response.rb +12 -0
  171. data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +65 -0
  172. data/src/com/zoho/crm/api/contact_roles/api_exception.rb +127 -0
  173. data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +65 -0
  174. data/src/com/zoho/crm/api/contact_roles/contact_role.rb +101 -0
  175. data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +164 -0
  176. data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
  177. data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
  178. data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
  179. data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
  180. data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
  181. data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
  182. data/src/com/zoho/crm/api/currencies/base_currency.rb +196 -0
  183. data/src/com/zoho/crm/api/currencies/base_currency_action_response.rb +12 -0
  184. data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +65 -0
  185. data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +63 -0
  186. data/src/com/zoho/crm/api/currencies/body_wrapper.rb +65 -0
  187. data/src/com/zoho/crm/api/currencies/currencies_operations.rb +157 -0
  188. data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
  189. data/src/com/zoho/crm/api/currencies/currency_format.rb +102 -0
  190. data/src/com/zoho/crm/api/currencies/disable_success.rb +121 -0
  191. data/src/com/zoho/crm/api/currencies/error_details.rb +82 -0
  192. data/src/com/zoho/crm/api/currencies/format.rb +102 -0
  193. data/src/com/zoho/crm/api/currencies/response_handler.rb +12 -0
  194. data/src/com/zoho/crm/api/currencies/success_response.rb +125 -0
  195. data/src/com/zoho/crm/api/custom_views/action_handler.rb +12 -0
  196. data/src/com/zoho/crm/api/custom_views/action_response.rb +12 -0
  197. data/src/com/zoho/crm/api/custom_views/action_wrapper.rb +63 -0
  198. data/src/com/zoho/crm/api/custom_views/api_exception.rb +127 -0
  199. data/src/com/zoho/crm/api/custom_views/body_wrapper.rb +84 -0
  200. data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
  201. data/src/com/zoho/crm/api/custom_views/custom_view.rb +463 -0
  202. data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
  203. data/src/com/zoho/crm/api/custom_views/field.rb +82 -0
  204. data/src/com/zoho/crm/api/custom_views/fields.rb +101 -0
  205. data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
  206. data/src/com/zoho/crm/api/custom_views/owner.rb +101 -0
  207. data/src/com/zoho/crm/api/custom_views/pin_fields.rb +83 -0
  208. data/src/com/zoho/crm/api/custom_views/pin_unpin_fields.rb +63 -0
  209. data/src/com/zoho/crm/api/custom_views/response_handler.rb +12 -0
  210. data/src/com/zoho/crm/api/custom_views/shared_to.rb +121 -0
  211. data/src/com/zoho/crm/api/custom_views/sort_by.rb +82 -0
  212. data/src/com/zoho/crm/api/custom_views/success_response.rb +123 -0
  213. data/src/com/zoho/crm/api/custom_views/translation.rb +120 -0
  214. data/src/com/zoho/crm/api/dc/au_datacenter.rb +21 -0
  215. data/src/com/zoho/crm/api/dc/cn_datacenter.rb +21 -0
  216. data/src/com/zoho/crm/api/dc/datacenter.rb +70 -0
  217. data/src/com/zoho/crm/api/dc/eu_datacenter.rb +21 -0
  218. data/src/com/zoho/crm/api/dc/in_datacenter.rb +21 -0
  219. data/src/com/zoho/crm/api/dc/jp_datacenter.rb +21 -0
  220. data/src/com/zoho/crm/api/dc/us_datacenter.rb +21 -0
  221. data/src/com/zoho/crm/api/deal_contact_roles/action_handler.rb +12 -0
  222. data/src/com/zoho/crm/api/deal_contact_roles/action_response.rb +12 -0
  223. data/src/com/zoho/crm/api/deal_contact_roles/action_wrapper.rb +65 -0
  224. data/src/com/zoho/crm/api/deal_contact_roles/api_exception.rb +127 -0
  225. data/src/com/zoho/crm/api/deal_contact_roles/body_wrapper.rb +84 -0
  226. data/src/com/zoho/crm/api/deal_contact_roles/contact_role.rb +82 -0
  227. data/src/com/zoho/crm/api/deal_contact_roles/data.rb +154 -0
  228. data/src/com/zoho/crm/api/deal_contact_roles/deal_contact_roles_operations.rb +141 -0
  229. data/src/com/zoho/crm/api/deal_contact_roles/error_details.rb +82 -0
  230. data/src/com/zoho/crm/api/deal_contact_roles/info.rb +177 -0
  231. data/src/com/zoho/crm/api/deal_contact_roles/response_handler.rb +12 -0
  232. data/src/com/zoho/crm/api/deal_contact_roles/success_response.rb +123 -0
  233. data/src/com/zoho/crm/api/definition/api_exception.rb +121 -0
  234. data/src/com/zoho/crm/api/definition/definition.rb +101 -0
  235. data/src/com/zoho/crm/api/definition/minified_property.rb +158 -0
  236. data/src/com/zoho/crm/api/definition/minified_property1.rb +139 -0
  237. data/src/com/zoho/crm/api/definition/property.rb +272 -0
  238. data/src/com/zoho/crm/api/definition/response_wrapper.rb +63 -0
  239. data/src/com/zoho/crm/api/download_attachments/api_exception.rb +123 -0
  240. data/src/com/zoho/crm/api/download_attachments/download_attachments_operations.rb +60 -0
  241. data/src/com/zoho/crm/api/download_attachments/file_body_wrapper.rb +66 -0
  242. data/src/com/zoho/crm/api/download_attachments/response_handler.rb +12 -0
  243. data/src/com/zoho/crm/api/download_inline_images/api_exception.rb +123 -0
  244. data/src/com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb +64 -0
  245. data/src/com/zoho/crm/api/download_inline_images/file_body_wrapper.rb +66 -0
  246. data/src/com/zoho/crm/api/download_inline_images/response_handler.rb +12 -0
  247. data/src/com/zoho/crm/api/email_compose_meta/compose_settings.rb +120 -0
  248. data/src/com/zoho/crm/api/email_compose_meta/data.rb +63 -0
  249. data/src/com/zoho/crm/api/email_compose_meta/data_map.rb +158 -0
  250. data/src/com/zoho/crm/api/email_compose_meta/default_form.rb +120 -0
  251. data/src/com/zoho/crm/api/email_compose_meta/features_available.rb +349 -0
  252. data/src/com/zoho/crm/api/email_compose_meta/from_address.rb +140 -0
  253. data/src/com/zoho/crm/api/email_compose_meta/user.rb +139 -0
  254. data/src/com/zoho/crm/api/email_related_records/api_exception.rb +123 -0
  255. data/src/com/zoho/crm/api/email_related_records/attachments.rb +101 -0
  256. data/src/com/zoho/crm/api/email_related_records/email.rb +483 -0
  257. data/src/com/zoho/crm/api/email_related_records/email_related_records_operations.rb +89 -0
  258. data/src/com/zoho/crm/api/email_related_records/info.rb +139 -0
  259. data/src/com/zoho/crm/api/email_related_records/linked_record.rb +82 -0
  260. data/src/com/zoho/crm/api/email_related_records/module.rb +82 -0
  261. data/src/com/zoho/crm/api/email_related_records/response_handler.rb +12 -0
  262. data/src/com/zoho/crm/api/email_related_records/response_wrapper.rb +84 -0
  263. data/src/com/zoho/crm/api/email_related_records/status.rb +158 -0
  264. data/src/com/zoho/crm/api/email_related_records/user_details.rb +82 -0
  265. data/src/com/zoho/crm/api/email_sharing/api_exception.rb +123 -0
  266. data/src/com/zoho/crm/api/email_sharing/email_sharing_operations.rb +44 -0
  267. data/src/com/zoho/crm/api/email_sharing/get_email_sharing.rb +82 -0
  268. data/src/com/zoho/crm/api/email_sharing/response_handler.rb +12 -0
  269. data/src/com/zoho/crm/api/email_sharing/response_wrapper.rb +65 -0
  270. data/src/com/zoho/crm/api/email_sharing/share_from_user.rb +101 -0
  271. data/src/com/zoho/crm/api/email_templates/api_exception.rb +123 -0
  272. data/src/com/zoho/crm/api/email_templates/attachment.rb +120 -0
  273. data/src/com/zoho/crm/api/email_templates/email_template.rb +433 -0
  274. data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +63 -0
  275. data/src/com/zoho/crm/api/email_templates/info.rb +120 -0
  276. data/src/com/zoho/crm/api/email_templates/last_version_statistics.rb +158 -0
  277. data/src/com/zoho/crm/api/email_templates/response_handler.rb +12 -0
  278. data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +84 -0
  279. data/src/com/zoho/crm/api/entity_scores/api_exception.rb +123 -0
  280. data/src/com/zoho/crm/api/entity_scores/entity_scores.rb +253 -0
  281. data/src/com/zoho/crm/api/entity_scores/entity_scores_operations.rb +70 -0
  282. data/src/com/zoho/crm/api/entity_scores/entity_structure.rb +84 -0
  283. data/src/com/zoho/crm/api/entity_scores/entity_structure_group.rb +12 -0
  284. data/src/com/zoho/crm/api/entity_scores/entity_structure_with_module.rb +103 -0
  285. data/src/com/zoho/crm/api/entity_scores/info.rb +215 -0
  286. data/src/com/zoho/crm/api/entity_scores/module_structure.rb +82 -0
  287. data/src/com/zoho/crm/api/entity_scores/response_handler.rb +12 -0
  288. data/src/com/zoho/crm/api/entity_scores/response_wrapper.rb +84 -0
  289. data/src/com/zoho/crm/api/entity_scores/scoring_rule_structure.rb +82 -0
  290. data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
  291. data/src/com/zoho/crm/api/field_attachments/api_exception.rb +123 -0
  292. data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +54 -0
  293. data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +66 -0
  294. data/src/com/zoho/crm/api/field_attachments/response_handler.rb +12 -0
  295. data/src/com/zoho/crm/api/field_map_dependency/action_handler.rb +12 -0
  296. data/src/com/zoho/crm/api/field_map_dependency/action_response.rb +12 -0
  297. data/src/com/zoho/crm/api/field_map_dependency/action_wrapper.rb +65 -0
  298. data/src/com/zoho/crm/api/field_map_dependency/api_exception.rb +127 -0
  299. data/src/com/zoho/crm/api/field_map_dependency/body_wrapper.rb +84 -0
  300. data/src/com/zoho/crm/api/field_map_dependency/child.rb +82 -0
  301. data/src/com/zoho/crm/api/field_map_dependency/field_map_dependency_operations.rb +178 -0
  302. data/src/com/zoho/crm/api/field_map_dependency/info.rb +120 -0
  303. data/src/com/zoho/crm/api/field_map_dependency/map_dependency.rb +215 -0
  304. data/src/com/zoho/crm/api/field_map_dependency/parent.rb +82 -0
  305. data/src/com/zoho/crm/api/field_map_dependency/pick_list_mapping.rb +120 -0
  306. data/src/com/zoho/crm/api/field_map_dependency/picklist_map.rb +120 -0
  307. data/src/com/zoho/crm/api/field_map_dependency/response_handler.rb +12 -0
  308. data/src/com/zoho/crm/api/field_map_dependency/sub_module.rb +82 -0
  309. data/src/com/zoho/crm/api/field_map_dependency/success_response.rb +123 -0
  310. data/src/com/zoho/crm/api/fields/action_response.rb +12 -0
  311. data/src/com/zoho/crm/api/fields/action_wrapper.rb +63 -0
  312. data/src/com/zoho/crm/api/fields/api_exception.rb +125 -0
  313. data/src/com/zoho/crm/api/fields/association_details.rb +83 -0
  314. data/src/com/zoho/crm/api/fields/auto_number.rb +120 -0
  315. data/src/com/zoho/crm/api/fields/body_wrapper.rb +65 -0
  316. data/src/com/zoho/crm/api/fields/convert_mapping.rb +101 -0
  317. data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
  318. data/src/com/zoho/crm/api/fields/currency.rb +83 -0
  319. data/src/com/zoho/crm/api/fields/email_parser.rb +82 -0
  320. data/src/com/zoho/crm/api/fields/expression.rb +101 -0
  321. data/src/com/zoho/crm/api/fields/external.rb +102 -0
  322. data/src/com/zoho/crm/api/fields/fields.rb +1355 -0
  323. data/src/com/zoho/crm/api/fields/fields_operations.rb +103 -0
  324. data/src/com/zoho/crm/api/fields/file_upolad_option.rb +82 -0
  325. data/src/com/zoho/crm/api/fields/forecast_category.rb +82 -0
  326. data/src/com/zoho/crm/api/fields/formula.rb +83 -0
  327. data/src/com/zoho/crm/api/fields/function_parameter.rb +63 -0
  328. data/src/com/zoho/crm/api/fields/hipaa_compliance.rb +82 -0
  329. data/src/com/zoho/crm/api/fields/history_tracking.rb +83 -0
  330. data/src/com/zoho/crm/api/fields/history_tracking_module.rb +159 -0
  331. data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
  332. data/src/com/zoho/crm/api/fields/maps.rb +82 -0
  333. data/src/com/zoho/crm/api/fields/minified_field.rb +82 -0
  334. data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +102 -0
  335. data/src/com/zoho/crm/api/fields/multiselectlookup.rb +216 -0
  336. data/src/com/zoho/crm/api/fields/operation_type.rb +120 -0
  337. data/src/com/zoho/crm/api/fields/pick_list_value.rb +273 -0
  338. data/src/com/zoho/crm/api/fields/private.rb +101 -0
  339. data/src/com/zoho/crm/api/fields/profile.rb +101 -0
  340. data/src/com/zoho/crm/api/fields/query_details.rb +82 -0
  341. data/src/com/zoho/crm/api/fields/refer_from_field.rb +82 -0
  342. data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
  343. data/src/com/zoho/crm/api/fields/rollup_criteria.rb +98 -0
  344. data/src/com/zoho/crm/api/fields/rollup_summary.rb +139 -0
  345. data/src/com/zoho/crm/api/fields/show_fields.rb +82 -0
  346. data/src/com/zoho/crm/api/fields/success.rb +123 -0
  347. data/src/com/zoho/crm/api/fields/tooltip.rb +83 -0
  348. data/src/com/zoho/crm/api/fields/unique.rb +63 -0
  349. data/src/com/zoho/crm/api/fields/view_type.rb +120 -0
  350. data/src/com/zoho/crm/api/files/action_handler.rb +12 -0
  351. data/src/com/zoho/crm/api/files/action_response.rb +12 -0
  352. data/src/com/zoho/crm/api/files/action_wrapper.rb +65 -0
  353. data/src/com/zoho/crm/api/files/api_exception.rb +125 -0
  354. data/src/com/zoho/crm/api/files/body_wrapper.rb +64 -0
  355. data/src/com/zoho/crm/api/files/file_body_wrapper.rb +66 -0
  356. data/src/com/zoho/crm/api/files/files_operations.rb +77 -0
  357. data/src/com/zoho/crm/api/files/response_handler.rb +12 -0
  358. data/src/com/zoho/crm/api/files/success_response.rb +123 -0
  359. data/src/com/zoho/crm/api/fiscal_year/action_handler.rb +12 -0
  360. data/src/com/zoho/crm/api/fiscal_year/action_response.rb +12 -0
  361. data/src/com/zoho/crm/api/fiscal_year/action_wrapper.rb +65 -0
  362. data/src/com/zoho/crm/api/fiscal_year/api_exception.rb +127 -0
  363. data/src/com/zoho/crm/api/fiscal_year/body_wrapper.rb +63 -0
  364. data/src/com/zoho/crm/api/fiscal_year/fiscal_year_operations.rb +51 -0
  365. data/src/com/zoho/crm/api/fiscal_year/response_handler.rb +12 -0
  366. data/src/com/zoho/crm/api/fiscal_year/response_wrapper.rb +65 -0
  367. data/src/com/zoho/crm/api/fiscal_year/success_response.rb +123 -0
  368. data/src/com/zoho/crm/api/fiscal_year/year.rb +102 -0
  369. data/src/com/zoho/crm/api/from_addresses/address.rb +139 -0
  370. data/src/com/zoho/crm/api/from_addresses/api_exception.rb +123 -0
  371. data/src/com/zoho/crm/api/from_addresses/from_addresses_operations.rb +30 -0
  372. data/src/com/zoho/crm/api/from_addresses/response_handler.rb +12 -0
  373. data/src/com/zoho/crm/api/from_addresses/response_wrapper.rb +65 -0
  374. data/src/com/zoho/crm/api/header.rb +12 -0
  375. data/src/com/zoho/crm/api/header_map.rb +57 -0
  376. data/src/com/zoho/crm/api/hipaa_compliance/action_handler.rb +12 -0
  377. data/src/com/zoho/crm/api/hipaa_compliance/action_wrapper.rb +63 -0
  378. data/src/com/zoho/crm/api/hipaa_compliance/api_exception.rb +123 -0
  379. data/src/com/zoho/crm/api/hipaa_compliance/hipaa_compliance.rb +158 -0
  380. data/src/com/zoho/crm/api/hipaa_compliance/modules.rb +82 -0
  381. data/src/com/zoho/crm/api/hipaa_compliance/response_wrapper.rb +63 -0
  382. data/src/com/zoho/crm/api/hipaa_compliance/success_response.rb +123 -0
  383. data/src/com/zoho/crm/api/holidays/action_handler.rb +12 -0
  384. data/src/com/zoho/crm/api/holidays/action_response.rb +12 -0
  385. data/src/com/zoho/crm/api/holidays/action_wrapper.rb +65 -0
  386. data/src/com/zoho/crm/api/holidays/api_exception.rb +129 -0
  387. data/src/com/zoho/crm/api/holidays/body_wrapper.rb +12 -0
  388. data/src/com/zoho/crm/api/holidays/business_holiday.rb +102 -0
  389. data/src/com/zoho/crm/api/holidays/create_business_holiday.rb +65 -0
  390. data/src/com/zoho/crm/api/holidays/create_shift_holiday.rb +65 -0
  391. data/src/com/zoho/crm/api/holidays/holiday.rb +158 -0
  392. data/src/com/zoho/crm/api/holidays/holidays.rb +63 -0
  393. data/src/com/zoho/crm/api/holidays/holidays_operations.rb +188 -0
  394. data/src/com/zoho/crm/api/holidays/info.rb +120 -0
  395. data/src/com/zoho/crm/api/holidays/resonse_handler.rb +12 -0
  396. data/src/com/zoho/crm/api/holidays/response_handler.rb +12 -0
  397. data/src/com/zoho/crm/api/holidays/response_wrapper.rb +86 -0
  398. data/src/com/zoho/crm/api/holidays/shift_holiday.rb +121 -0
  399. data/src/com/zoho/crm/api/holidays/shift_hour.rb +82 -0
  400. data/src/com/zoho/crm/api/holidays/success_response.rb +123 -0
  401. data/src/com/zoho/crm/api/initializer.rb +232 -0
  402. data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +123 -0
  403. data/src/com/zoho/crm/api/inventory_templates/folder.rb +82 -0
  404. data/src/com/zoho/crm/api/inventory_templates/info.rb +120 -0
  405. data/src/com/zoho/crm/api/inventory_templates/inventory_template.rb +316 -0
  406. data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +75 -0
  407. data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +12 -0
  408. data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +84 -0
  409. data/src/com/zoho/crm/api/isc_signature/signature.rb +60 -0
  410. data/src/com/zoho/crm/api/layouts/actions_allowed.rb +177 -0
  411. data/src/com/zoho/crm/api/layouts/api_exception.rb +123 -0
  412. data/src/com/zoho/crm/api/layouts/convert_mapping.rb +139 -0
  413. data/src/com/zoho/crm/api/layouts/deal_field.rb +120 -0
  414. data/src/com/zoho/crm/api/layouts/deal_layout_mapping.rb +103 -0
  415. data/src/com/zoho/crm/api/layouts/default_assignment_view.rb +101 -0
  416. data/src/com/zoho/crm/api/layouts/default_view.rb +101 -0
  417. data/src/com/zoho/crm/api/layouts/layouts.rb +425 -0
  418. data/src/com/zoho/crm/api/layouts/layouts_operations.rb +75 -0
  419. data/src/com/zoho/crm/api/layouts/minified_layout.rb +82 -0
  420. data/src/com/zoho/crm/api/layouts/profiles.rb +139 -0
  421. data/src/com/zoho/crm/api/layouts/properties.rb +101 -0
  422. data/src/com/zoho/crm/api/layouts/response_handler.rb +12 -0
  423. data/src/com/zoho/crm/api/layouts/response_wrapper.rb +65 -0
  424. data/src/com/zoho/crm/api/layouts/section_field.rb +1456 -0
  425. data/src/com/zoho/crm/api/layouts/section_subform_field.rb +101 -0
  426. data/src/com/zoho/crm/api/layouts/sections.rb +272 -0
  427. data/src/com/zoho/crm/api/layouts/tooltip.rb +83 -0
  428. data/src/com/zoho/crm/api/mail_merge/action_response.rb +12 -0
  429. data/src/com/zoho/crm/api/mail_merge/action_wrapper.rb +63 -0
  430. data/src/com/zoho/crm/api/mail_merge/address.rb +63 -0
  431. data/src/com/zoho/crm/api/mail_merge/address_value_map.rb +63 -0
  432. data/src/com/zoho/crm/api/mail_merge/api_exception.rb +121 -0
  433. data/src/com/zoho/crm/api/mail_merge/download_mail_merge.rb +121 -0
  434. data/src/com/zoho/crm/api/mail_merge/download_mail_merge_wrapper.rb +63 -0
  435. data/src/com/zoho/crm/api/mail_merge/mail_merge.rb +216 -0
  436. data/src/com/zoho/crm/api/mail_merge/mail_merge_template.rb +82 -0
  437. data/src/com/zoho/crm/api/mail_merge/mail_merge_wrapper.rb +63 -0
  438. data/src/com/zoho/crm/api/mail_merge/sign_action_response.rb +12 -0
  439. data/src/com/zoho/crm/api/mail_merge/sign_action_wrapper.rb +63 -0
  440. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge.rb +120 -0
  441. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge_wrapper.rb +63 -0
  442. data/src/com/zoho/crm/api/mail_merge/signers.rb +102 -0
  443. data/src/com/zoho/crm/api/mail_merge/success_response.rb +125 -0
  444. data/src/com/zoho/crm/api/mass_change_owner/action_handler.rb +12 -0
  445. data/src/com/zoho/crm/api/mass_change_owner/action_response.rb +12 -0
  446. data/src/com/zoho/crm/api/mass_change_owner/action_wrapper.rb +65 -0
  447. data/src/com/zoho/crm/api/mass_change_owner/api_exception.rb +125 -0
  448. data/src/com/zoho/crm/api/mass_change_owner/body_wrapper.rb +101 -0
  449. data/src/com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb +76 -0
  450. data/src/com/zoho/crm/api/mass_change_owner/owner.rb +63 -0
  451. data/src/com/zoho/crm/api/mass_change_owner/response_handler.rb +12 -0
  452. data/src/com/zoho/crm/api/mass_change_owner/response_wrapper.rb +65 -0
  453. data/src/com/zoho/crm/api/mass_change_owner/status.rb +140 -0
  454. data/src/com/zoho/crm/api/mass_change_owner/success_response.rb +123 -0
  455. data/src/com/zoho/crm/api/mass_change_owner/territory.rb +82 -0
  456. data/src/com/zoho/crm/api/mass_convert/action_response.rb +12 -0
  457. data/src/com/zoho/crm/api/mass_convert/api_exception.rb +125 -0
  458. data/src/com/zoho/crm/api/mass_convert/assign_to.rb +63 -0
  459. data/src/com/zoho/crm/api/mass_convert/convert.rb +197 -0
  460. data/src/com/zoho/crm/api/mass_convert/error_details.rb +82 -0
  461. data/src/com/zoho/crm/api/mass_convert/mass_convert_operations.rb +68 -0
  462. data/src/com/zoho/crm/api/mass_convert/move_attachments_to.rb +82 -0
  463. data/src/com/zoho/crm/api/mass_convert/portal_user_type.rb +82 -0
  464. data/src/com/zoho/crm/api/mass_convert/related_module.rb +82 -0
  465. data/src/com/zoho/crm/api/mass_convert/response_handler.rb +12 -0
  466. data/src/com/zoho/crm/api/mass_convert/response_wrapper.rb +65 -0
  467. data/src/com/zoho/crm/api/mass_convert/status.rb +139 -0
  468. data/src/com/zoho/crm/api/mass_convert/success_response.rb +123 -0
  469. data/src/com/zoho/crm/api/mass_delete_cvid/action_handler.rb +12 -0
  470. data/src/com/zoho/crm/api/mass_delete_cvid/action_response.rb +12 -0
  471. data/src/com/zoho/crm/api/mass_delete_cvid/action_wrapper.rb +65 -0
  472. data/src/com/zoho/crm/api/mass_delete_cvid/api_exception.rb +127 -0
  473. data/src/com/zoho/crm/api/mass_delete_cvid/cvid_body_wrapper.rb +82 -0
  474. data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_cvid_operations.rb +95 -0
  475. data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_scheduled.rb +123 -0
  476. data/src/com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb +82 -0
  477. data/src/com/zoho/crm/api/mass_delete_cvid/response_handler.rb +12 -0
  478. data/src/com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb +65 -0
  479. data/src/com/zoho/crm/api/mass_delete_cvid/status.rb +121 -0
  480. data/src/com/zoho/crm/api/mass_delete_cvid/success_response.rb +123 -0
  481. data/src/com/zoho/crm/api/mass_delete_cvid/territory.rb +82 -0
  482. data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
  483. data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
  484. data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
  485. data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
  486. data/src/com/zoho/crm/api/modules/argument.rb +82 -0
  487. data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
  488. data/src/com/zoho/crm/api/modules/lookup_field.rb +103 -0
  489. data/src/com/zoho/crm/api/modules/lookup_field_properties.rb +63 -0
  490. data/src/com/zoho/crm/api/modules/minified_module.rb +101 -0
  491. data/src/com/zoho/crm/api/modules/module_field_lookup.rb +181 -0
  492. data/src/com/zoho/crm/api/modules/module_fields.rb +1377 -0
  493. data/src/com/zoho/crm/api/modules/modules.rb +1191 -0
  494. data/src/com/zoho/crm/api/modules/modules_operations.rb +133 -0
  495. data/src/com/zoho/crm/api/modules/related_list_properties.rb +102 -0
  496. data/src/com/zoho/crm/api/modules/response_handler.rb +12 -0
  497. data/src/com/zoho/crm/api/modules/response_wrapper.rb +65 -0
  498. data/src/com/zoho/crm/api/modules/sharing_properties.rb +102 -0
  499. data/src/com/zoho/crm/api/modules/success_response.rb +123 -0
  500. data/src/com/zoho/crm/api/modules/territory.rb +101 -0
  501. data/src/com/zoho/crm/api/notes/action_handler.rb +12 -0
  502. data/src/com/zoho/crm/api/notes/action_response.rb +12 -0
  503. data/src/com/zoho/crm/api/notes/action_wrapper.rb +65 -0
  504. data/src/com/zoho/crm/api/notes/api_exception.rb +127 -0
  505. data/src/com/zoho/crm/api/notes/body_wrapper.rb +63 -0
  506. data/src/com/zoho/crm/api/notes/info.rb +215 -0
  507. data/src/com/zoho/crm/api/notes/note.rb +370 -0
  508. data/src/com/zoho/crm/api/notes/notes_operations.rb +229 -0
  509. data/src/com/zoho/crm/api/notes/response_handler.rb +12 -0
  510. data/src/com/zoho/crm/api/notes/response_wrapper.rb +84 -0
  511. data/src/com/zoho/crm/api/notes/success_response.rb +123 -0
  512. data/src/com/zoho/crm/api/notifications/action_handler.rb +12 -0
  513. data/src/com/zoho/crm/api/notifications/action_response.rb +12 -0
  514. data/src/com/zoho/crm/api/notifications/action_wrapper.rb +65 -0
  515. data/src/com/zoho/crm/api/notifications/api_exception.rb +127 -0
  516. data/src/com/zoho/crm/api/notifications/body_wrapper.rb +63 -0
  517. data/src/com/zoho/crm/api/notifications/delete_details.rb +101 -0
  518. data/src/com/zoho/crm/api/notifications/event.rb +141 -0
  519. data/src/com/zoho/crm/api/notifications/info.rb +120 -0
  520. data/src/com/zoho/crm/api/notifications/notification.rb +275 -0
  521. data/src/com/zoho/crm/api/notifications/notifications_operations.rb +165 -0
  522. data/src/com/zoho/crm/api/notifications/response_handler.rb +12 -0
  523. data/src/com/zoho/crm/api/notifications/response_wrapper.rb +84 -0
  524. data/src/com/zoho/crm/api/notifications/success_response.rb +123 -0
  525. data/src/com/zoho/crm/api/org/action_handler.rb +12 -0
  526. data/src/com/zoho/crm/api/org/api_exception.rb +125 -0
  527. data/src/com/zoho/crm/api/org/checkin_preferences.rb +63 -0
  528. data/src/com/zoho/crm/api/org/feature.rb +82 -0
  529. data/src/com/zoho/crm/api/org/file_body_wrapper.rb +66 -0
  530. data/src/com/zoho/crm/api/org/hierarchy_preferences.rb +83 -0
  531. data/src/com/zoho/crm/api/org/license_details.rb +177 -0
  532. data/src/com/zoho/crm/api/org/org.rb +823 -0
  533. data/src/com/zoho/crm/api/org/org_operations.rb +79 -0
  534. data/src/com/zoho/crm/api/org/resource.rb +82 -0
  535. data/src/com/zoho/crm/api/org/response_handler.rb +12 -0
  536. data/src/com/zoho/crm/api/org/response_wrapper.rb +65 -0
  537. data/src/com/zoho/crm/api/org/success_response.rb +123 -0
  538. data/src/com/zoho/crm/api/param.rb +12 -0
  539. data/src/com/zoho/crm/api/parameter_map.rb +56 -0
  540. data/src/com/zoho/crm/api/pipeline/action_handler.rb +12 -0
  541. data/src/com/zoho/crm/api/pipeline/action_response.rb +12 -0
  542. data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +65 -0
  543. data/src/com/zoho/crm/api/pipeline/api_exception.rb +131 -0
  544. data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +65 -0
  545. data/src/com/zoho/crm/api/pipeline/d_pipeline.rb +63 -0
  546. data/src/com/zoho/crm/api/pipeline/d_pipeline_wrapper.rb +63 -0
  547. data/src/com/zoho/crm/api/pipeline/delete.rb +63 -0
  548. data/src/com/zoho/crm/api/pipeline/forecast_category.rb +82 -0
  549. data/src/com/zoho/crm/api/pipeline/mandatory_details.rb +82 -0
  550. data/src/com/zoho/crm/api/pipeline/maps.rb +196 -0
  551. data/src/com/zoho/crm/api/pipeline/pipeline.rb +177 -0
  552. data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +166 -0
  553. data/src/com/zoho/crm/api/pipeline/regex_details.rb +101 -0
  554. data/src/com/zoho/crm/api/pipeline/response_handler.rb +12 -0
  555. data/src/com/zoho/crm/api/pipeline/stages.rb +82 -0
  556. data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
  557. data/src/com/zoho/crm/api/pipeline/t_pipeline.rb +82 -0
  558. data/src/com/zoho/crm/api/pipeline/transfer_pipeline.rb +82 -0
  559. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_handler.rb +12 -0
  560. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_response.rb +12 -0
  561. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_wrapper.rb +67 -0
  562. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_success_response.rb +123 -0
  563. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_wrapper.rb +63 -0
  564. data/src/com/zoho/crm/api/portal_invite/action_handler.rb +12 -0
  565. data/src/com/zoho/crm/api/portal_invite/action_response.rb +12 -0
  566. data/src/com/zoho/crm/api/portal_invite/action_wrapper.rb +65 -0
  567. data/src/com/zoho/crm/api/portal_invite/api_exception.rb +127 -0
  568. data/src/com/zoho/crm/api/portal_invite/body_wrapper.rb +63 -0
  569. data/src/com/zoho/crm/api/portal_invite/data.rb +12 -0
  570. data/src/com/zoho/crm/api/portal_invite/job_response.rb +101 -0
  571. data/src/com/zoho/crm/api/portal_invite/portal.rb +121 -0
  572. data/src/com/zoho/crm/api/portal_invite/portal_invite.rb +63 -0
  573. data/src/com/zoho/crm/api/portal_invite/portal_invite_operations.rb +65 -0
  574. data/src/com/zoho/crm/api/portal_invite/response_wrapper.rb +63 -0
  575. data/src/com/zoho/crm/api/portal_invite/success_response.rb +125 -0
  576. data/src/com/zoho/crm/api/portal_user_type/api_exception.rb +123 -0
  577. data/src/com/zoho/crm/api/portal_user_type/fields.rb +101 -0
  578. data/src/com/zoho/crm/api/portal_user_type/filters.rb +101 -0
  579. data/src/com/zoho/crm/api/portal_user_type/layouts.rb +120 -0
  580. data/src/com/zoho/crm/api/portal_user_type/modules.rb +216 -0
  581. data/src/com/zoho/crm/api/portal_user_type/owner.rb +82 -0
  582. data/src/com/zoho/crm/api/portal_user_type/permissions.rb +178 -0
  583. data/src/com/zoho/crm/api/portal_user_type/personality_module.rb +101 -0
  584. data/src/com/zoho/crm/api/portal_user_type/portal_user_type_operations.rb +72 -0
  585. data/src/com/zoho/crm/api/portal_user_type/response_handler.rb +12 -0
  586. data/src/com/zoho/crm/api/portal_user_type/response_wrapper.rb +65 -0
  587. data/src/com/zoho/crm/api/portal_user_type/user_type.rb +253 -0
  588. data/src/com/zoho/crm/api/portal_user_type/views.rb +120 -0
  589. data/src/com/zoho/crm/api/portals/action_handler.rb +12 -0
  590. data/src/com/zoho/crm/api/portals/action_response.rb +12 -0
  591. data/src/com/zoho/crm/api/portals/action_wrapper.rb +65 -0
  592. data/src/com/zoho/crm/api/portals/api_exception.rb +127 -0
  593. data/src/com/zoho/crm/api/portals/body_wrapper.rb +63 -0
  594. data/src/com/zoho/crm/api/portals/owner.rb +82 -0
  595. data/src/com/zoho/crm/api/portals/portals.rb +177 -0
  596. data/src/com/zoho/crm/api/portals/portals_operations.rb +96 -0
  597. data/src/com/zoho/crm/api/portals/response_handler.rb +12 -0
  598. data/src/com/zoho/crm/api/portals/response_wrapper.rb +65 -0
  599. data/src/com/zoho/crm/api/portals/success_response.rb +123 -0
  600. data/src/com/zoho/crm/api/portals_meta/filters.rb +101 -0
  601. data/src/com/zoho/crm/api/portals_meta/layouts.rb +101 -0
  602. data/src/com/zoho/crm/api/portals_meta/modules.rb +177 -0
  603. data/src/com/zoho/crm/api/portals_meta/related_lists.rb +63 -0
  604. data/src/com/zoho/crm/api/portals_meta/views.rb +120 -0
  605. data/src/com/zoho/crm/api/portals_meta/wrapper.rb +63 -0
  606. data/src/com/zoho/crm/api/privacy_configurable_apps/apps.rb +63 -0
  607. data/src/com/zoho/crm/api/privacy_configurable_apps/wrapper.rb +63 -0
  608. data/src/com/zoho/crm/api/privacy_preference/config.rb +101 -0
  609. data/src/com/zoho/crm/api/privacy_preference/option.rb +120 -0
  610. data/src/com/zoho/crm/api/privacy_preference/preference.rb +462 -0
  611. data/src/com/zoho/crm/api/privacy_preference/privacy_preference.rb +82 -0
  612. data/src/com/zoho/crm/api/privacy_preference/section.rb +139 -0
  613. data/src/com/zoho/crm/api/privacy_preference/tpt.rb +101 -0
  614. data/src/com/zoho/crm/api/privacy_preference/wrapper.rb +63 -0
  615. data/src/com/zoho/crm/api/profiles/action_handler.rb +12 -0
  616. data/src/com/zoho/crm/api/profiles/action_response.rb +12 -0
  617. data/src/com/zoho/crm/api/profiles/action_wrapper.rb +65 -0
  618. data/src/com/zoho/crm/api/profiles/api_exception.rb +127 -0
  619. data/src/com/zoho/crm/api/profiles/category.rb +12 -0
  620. data/src/com/zoho/crm/api/profiles/category_module.rb +122 -0
  621. data/src/com/zoho/crm/api/profiles/category_others.rb +103 -0
  622. data/src/com/zoho/crm/api/profiles/default_view.rb +101 -0
  623. data/src/com/zoho/crm/api/profiles/info.rb +63 -0
  624. data/src/com/zoho/crm/api/profiles/minified_profile.rb +101 -0
  625. data/src/com/zoho/crm/api/profiles/permission_detail.rb +178 -0
  626. data/src/com/zoho/crm/api/profiles/profile.rb +350 -0
  627. data/src/com/zoho/crm/api/profiles/profile_wrapper.rb +84 -0
  628. data/src/com/zoho/crm/api/profiles/profiles_operations.rb +146 -0
  629. data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
  630. data/src/com/zoho/crm/api/profiles/section.rb +82 -0
  631. data/src/com/zoho/crm/api/profiles/success_response.rb +125 -0
  632. data/src/com/zoho/crm/api/query/api_exception.rb +123 -0
  633. data/src/com/zoho/crm/api/query/body_wrapper.rb +63 -0
  634. data/src/com/zoho/crm/api/query/query_operations.rb +37 -0
  635. data/src/com/zoho/crm/api/query/response_handler.rb +12 -0
  636. data/src/com/zoho/crm/api/query/response_wrapper.rb +86 -0
  637. data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
  638. data/src/com/zoho/crm/api/record/action_response.rb +12 -0
  639. data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
  640. data/src/com/zoho/crm/api/record/api_exception.rb +143 -0
  641. data/src/com/zoho/crm/api/record/body_wrapper.rb +158 -0
  642. data/src/com/zoho/crm/api/record/carry_over_tags.rb +101 -0
  643. data/src/com/zoho/crm/api/record/comment.rb +120 -0
  644. data/src/com/zoho/crm/api/record/consent.rb +307 -0
  645. data/src/com/zoho/crm/api/record/conversion_option.rb +159 -0
  646. data/src/com/zoho/crm/api/record/conversion_options_response_wrapper.rb +65 -0
  647. data/src/com/zoho/crm/api/record/convert_body_wrapper.rb +63 -0
  648. data/src/com/zoho/crm/api/record/count_handler.rb +12 -0
  649. data/src/com/zoho/crm/api/record/count_wrapper.rb +65 -0
  650. data/src/com/zoho/crm/api/record/criteria.rb +137 -0
  651. data/src/com/zoho/crm/api/record/deleted_record.rb +159 -0
  652. data/src/com/zoho/crm/api/record/deleted_records_handler.rb +12 -0
  653. data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +84 -0
  654. data/src/com/zoho/crm/api/record/download_handler.rb +12 -0
  655. data/src/com/zoho/crm/api/record/duplicate_record.rb +103 -0
  656. data/src/com/zoho/crm/api/record/field.rb +2479 -0
  657. data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
  658. data/src/com/zoho/crm/api/record/file_details.rb +139 -0
  659. data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
  660. data/src/com/zoho/crm/api/record/image_upload.rb +215 -0
  661. data/src/com/zoho/crm/api/record/info.rb +253 -0
  662. data/src/com/zoho/crm/api/record/lead_converter.rb +197 -0
  663. data/src/com/zoho/crm/api/record/line_item_product.rb +171 -0
  664. data/src/com/zoho/crm/api/record/line_tax.rb +139 -0
  665. data/src/com/zoho/crm/api/record/mass_update.rb +142 -0
  666. data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +12 -0
  667. data/src/com/zoho/crm/api/record/mass_update_action_response.rb +12 -0
  668. data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +65 -0
  669. data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +158 -0
  670. data/src/com/zoho/crm/api/record/mass_update_response.rb +12 -0
  671. data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +12 -0
  672. data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +65 -0
  673. data/src/com/zoho/crm/api/record/mass_update_success_response.rb +123 -0
  674. data/src/com/zoho/crm/api/record/mass_update_territory.rb +82 -0
  675. data/src/com/zoho/crm/api/record/multi_select_lookup.rb +101 -0
  676. data/src/com/zoho/crm/api/record/multi_select_picklist.rb +82 -0
  677. data/src/com/zoho/crm/api/record/options.rb +32 -0
  678. data/src/com/zoho/crm/api/record/participants.rb +222 -0
  679. data/src/com/zoho/crm/api/record/preference_field_matched_value.rb +101 -0
  680. data/src/com/zoho/crm/api/record/price_book.rb +137 -0
  681. data/src/com/zoho/crm/api/record/pricing_details.rb +188 -0
  682. data/src/com/zoho/crm/api/record/record.rb +211 -0
  683. data/src/com/zoho/crm/api/record/record_operations.rb +1182 -0
  684. data/src/com/zoho/crm/api/record/recurring_activity.rb +82 -0
  685. data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
  686. data/src/com/zoho/crm/api/record/reminder.rb +101 -0
  687. data/src/com/zoho/crm/api/record/response_handler.rb +12 -0
  688. data/src/com/zoho/crm/api/record/response_wrapper.rb +84 -0
  689. data/src/com/zoho/crm/api/record/success_response.rb +163 -0
  690. data/src/com/zoho/crm/api/record/tax.rb +82 -0
  691. data/src/com/zoho/crm/api/record/territory.rb +140 -0
  692. data/src/com/zoho/crm/api/record/widget.rb +82 -0
  693. data/src/com/zoho/crm/api/record/wizard.rb +82 -0
  694. data/src/com/zoho/crm/api/record_locking/action_handler.rb +12 -0
  695. data/src/com/zoho/crm/api/record_locking/action_response.rb +12 -0
  696. data/src/com/zoho/crm/api/record_locking/action_responses.rb +12 -0
  697. data/src/com/zoho/crm/api/record_locking/action_wrapper.rb +65 -0
  698. data/src/com/zoho/crm/api/record_locking/api_exception.rb +129 -0
  699. data/src/com/zoho/crm/api/record_locking/body_wrapper.rb +63 -0
  700. data/src/com/zoho/crm/api/record_locking/error_handler.rb +12 -0
  701. data/src/com/zoho/crm/api/record_locking/error_wrapper.rb +65 -0
  702. data/src/com/zoho/crm/api/record_locking/info.rb +253 -0
  703. data/src/com/zoho/crm/api/record_locking/lock_record.rb +63 -0
  704. data/src/com/zoho/crm/api/record_locking/locked_for_s.rb +101 -0
  705. data/src/com/zoho/crm/api/record_locking/record_action_locked.rb +63 -0
  706. data/src/com/zoho/crm/api/record_locking/record_action_locked_detail1.rb +101 -0
  707. data/src/com/zoho/crm/api/record_locking/record_action_locked_detail2.rb +82 -0
  708. data/src/com/zoho/crm/api/record_locking/record_lock.rb +257 -0
  709. data/src/com/zoho/crm/api/record_locking/record_locking_operations.rb +201 -0
  710. data/src/com/zoho/crm/api/record_locking/response_handler.rb +12 -0
  711. data/src/com/zoho/crm/api/record_locking/response_wrapper.rb +84 -0
  712. data/src/com/zoho/crm/api/record_locking/success_response.rb +161 -0
  713. data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
  714. data/src/com/zoho/crm/api/related_lists/field.rb +82 -0
  715. data/src/com/zoho/crm/api/related_lists/module_map.rb +82 -0
  716. data/src/com/zoho/crm/api/related_lists/related_list.rb +386 -0
  717. data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +82 -0
  718. data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
  719. data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
  720. data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
  721. data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
  722. data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
  723. data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
  724. data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
  725. data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
  726. data/src/com/zoho/crm/api/related_records/related_records_operations.rb +556 -0
  727. data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
  728. data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
  729. data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
  730. data/src/com/zoho/crm/api/request_proxy.rb +17 -0
  731. data/src/com/zoho/crm/api/reschedule_history/action_handler.rb +12 -0
  732. data/src/com/zoho/crm/api/reschedule_history/action_response.rb +12 -0
  733. data/src/com/zoho/crm/api/reschedule_history/action_wrapper.rb +65 -0
  734. data/src/com/zoho/crm/api/reschedule_history/api_exception.rb +127 -0
  735. data/src/com/zoho/crm/api/reschedule_history/appointment_name.rb +82 -0
  736. data/src/com/zoho/crm/api/reschedule_history/approval.rb +120 -0
  737. data/src/com/zoho/crm/api/reschedule_history/body_wrapper.rb +63 -0
  738. data/src/com/zoho/crm/api/reschedule_history/info.rb +177 -0
  739. data/src/com/zoho/crm/api/reschedule_history/reschedule_history.rb +557 -0
  740. data/src/com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb +177 -0
  741. data/src/com/zoho/crm/api/reschedule_history/response_handler.rb +12 -0
  742. data/src/com/zoho/crm/api/reschedule_history/response_wrapper.rb +84 -0
  743. data/src/com/zoho/crm/api/reschedule_history/success_response.rb +123 -0
  744. data/src/com/zoho/crm/api/reschedule_history/user.rb +101 -0
  745. data/src/com/zoho/crm/api/roles/action_handler.rb +12 -0
  746. data/src/com/zoho/crm/api/roles/action_response.rb +12 -0
  747. data/src/com/zoho/crm/api/roles/action_wrapper.rb +65 -0
  748. data/src/com/zoho/crm/api/roles/api_exception.rb +127 -0
  749. data/src/com/zoho/crm/api/roles/body_wrapper.rb +63 -0
  750. data/src/com/zoho/crm/api/roles/reporting_to.rb +82 -0
  751. data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
  752. data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
  753. data/src/com/zoho/crm/api/roles/role.rb +273 -0
  754. data/src/com/zoho/crm/api/roles/roles_operations.rb +150 -0
  755. data/src/com/zoho/crm/api/roles/success_response.rb +123 -0
  756. data/src/com/zoho/crm/api/scoring_rules/action_handler.rb +12 -0
  757. data/src/com/zoho/crm/api/scoring_rules/action_response.rb +12 -0
  758. data/src/com/zoho/crm/api/scoring_rules/action_wrapper.rb +65 -0
  759. data/src/com/zoho/crm/api/scoring_rules/api_exception.rb +127 -0
  760. data/src/com/zoho/crm/api/scoring_rules/body_wrapper.rb +63 -0
  761. data/src/com/zoho/crm/api/scoring_rules/criteria.rb +136 -0
  762. data/src/com/zoho/crm/api/scoring_rules/field.rb +82 -0
  763. data/src/com/zoho/crm/api/scoring_rules/field_rule.rb +101 -0
  764. data/src/com/zoho/crm/api/scoring_rules/info.rb +215 -0
  765. data/src/com/zoho/crm/api/scoring_rules/layout.rb +82 -0
  766. data/src/com/zoho/crm/api/scoring_rules/layout_request_wrapper.rb +63 -0
  767. data/src/com/zoho/crm/api/scoring_rules/response_handler.rb +12 -0
  768. data/src/com/zoho/crm/api/scoring_rules/response_wrapper.rb +84 -0
  769. data/src/com/zoho/crm/api/scoring_rules/role_request_wrapper.rb +63 -0
  770. data/src/com/zoho/crm/api/scoring_rules/scoring_rule.rb +274 -0
  771. data/src/com/zoho/crm/api/scoring_rules/scoring_rules_operations.rb +331 -0
  772. data/src/com/zoho/crm/api/scoring_rules/signal.rb +82 -0
  773. data/src/com/zoho/crm/api/scoring_rules/signal_rule.rb +101 -0
  774. data/src/com/zoho/crm/api/scoring_rules/success_response.rb +125 -0
  775. data/src/com/zoho/crm/api/sdk_config.rb +15 -0
  776. data/src/com/zoho/crm/api/send_mail/action_handler.rb +12 -0
  777. data/src/com/zoho/crm/api/send_mail/action_response.rb +12 -0
  778. data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +65 -0
  779. data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
  780. data/src/com/zoho/crm/api/send_mail/attachment.rb +63 -0
  781. data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +63 -0
  782. data/src/com/zoho/crm/api/send_mail/data.rb +349 -0
  783. data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +82 -0
  784. data/src/com/zoho/crm/api/send_mail/from.rb +82 -0
  785. data/src/com/zoho/crm/api/send_mail/invalid_details.rb +82 -0
  786. data/src/com/zoho/crm/api/send_mail/inventory_details.rb +63 -0
  787. data/src/com/zoho/crm/api/send_mail/inventory_template.rb +82 -0
  788. data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +51 -0
  789. data/src/com/zoho/crm/api/send_mail/success_response.rb +123 -0
  790. data/src/com/zoho/crm/api/send_mail/template.rb +12 -0
  791. data/src/com/zoho/crm/api/send_mail/to.rb +82 -0
  792. data/src/com/zoho/crm/api/service_preference/action_handler.rb +12 -0
  793. data/src/com/zoho/crm/api/service_preference/action_response.rb +12 -0
  794. data/src/com/zoho/crm/api/service_preference/action_wrapper.rb +65 -0
  795. data/src/com/zoho/crm/api/service_preference/api_exception.rb +127 -0
  796. data/src/com/zoho/crm/api/service_preference/body_wrapper.rb +63 -0
  797. data/src/com/zoho/crm/api/service_preference/response_handler.rb +12 -0
  798. data/src/com/zoho/crm/api/service_preference/response_wrapper.rb +65 -0
  799. data/src/com/zoho/crm/api/service_preference/service_preference.rb +63 -0
  800. data/src/com/zoho/crm/api/service_preference/service_preference_operations.rb +51 -0
  801. data/src/com/zoho/crm/api/service_preference/success_response.rb +123 -0
  802. data/src/com/zoho/crm/api/share_records/action_handler.rb +12 -0
  803. data/src/com/zoho/crm/api/share_records/action_response.rb +12 -0
  804. data/src/com/zoho/crm/api/share_records/action_wrapper.rb +65 -0
  805. data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
  806. data/src/com/zoho/crm/api/share_records/body_wrapper.rb +101 -0
  807. data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +12 -0
  808. data/src/com/zoho/crm/api/share_records/delete_action_response.rb +12 -0
  809. data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +65 -0
  810. data/src/com/zoho/crm/api/share_records/dependee.rb +82 -0
  811. data/src/com/zoho/crm/api/share_records/module.rb +101 -0
  812. data/src/com/zoho/crm/api/share_records/response_handler.rb +12 -0
  813. data/src/com/zoho/crm/api/share_records/response_wrapper.rb +85 -0
  814. data/src/com/zoho/crm/api/share_records/share_record.rb +198 -0
  815. data/src/com/zoho/crm/api/share_records/share_records_operations.rb +130 -0
  816. data/src/com/zoho/crm/api/share_records/shared_through.rb +120 -0
  817. data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
  818. data/src/com/zoho/crm/api/shift_hours/action_handler.rb +12 -0
  819. data/src/com/zoho/crm/api/shift_hours/action_response.rb +12 -0
  820. data/src/com/zoho/crm/api/shift_hours/action_wrapper.rb +65 -0
  821. data/src/com/zoho/crm/api/shift_hours/api_exception.rb +127 -0
  822. data/src/com/zoho/crm/api/shift_hours/body_wrapper.rb +63 -0
  823. data/src/com/zoho/crm/api/shift_hours/break_custom_timing.rb +82 -0
  824. data/src/com/zoho/crm/api/shift_hours/break_hours.rb +139 -0
  825. data/src/com/zoho/crm/api/shift_hours/holidays.rb +120 -0
  826. data/src/com/zoho/crm/api/shift_hours/mandatory_details.rb +82 -0
  827. data/src/com/zoho/crm/api/shift_hours/response_handler.rb +12 -0
  828. data/src/com/zoho/crm/api/shift_hours/response_wrapper.rb +84 -0
  829. data/src/com/zoho/crm/api/shift_hours/role.rb +82 -0
  830. data/src/com/zoho/crm/api/shift_hours/shift_count.rb +82 -0
  831. data/src/com/zoho/crm/api/shift_hours/shift_custom_timing.rb +82 -0
  832. data/src/com/zoho/crm/api/shift_hours/shift_hours.rb +253 -0
  833. data/src/com/zoho/crm/api/shift_hours/shift_hours_operations.rb +166 -0
  834. data/src/com/zoho/crm/api/shift_hours/success_response.rb +123 -0
  835. data/src/com/zoho/crm/api/shift_hours/users.rb +158 -0
  836. data/src/com/zoho/crm/api/tags/action_handler.rb +12 -0
  837. data/src/com/zoho/crm/api/tags/action_response.rb +12 -0
  838. data/src/com/zoho/crm/api/tags/action_wrapper.rb +65 -0
  839. data/src/com/zoho/crm/api/tags/api_exception.rb +131 -0
  840. data/src/com/zoho/crm/api/tags/associated_places.rb +82 -0
  841. data/src/com/zoho/crm/api/tags/body_wrapper.rb +63 -0
  842. data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +63 -0
  843. data/src/com/zoho/crm/api/tags/count_response_wrapper.rb +65 -0
  844. data/src/com/zoho/crm/api/tags/error_details.rb +82 -0
  845. data/src/com/zoho/crm/api/tags/existing_tag.rb +82 -0
  846. data/src/com/zoho/crm/api/tags/existing_tag_request_wrapper.rb +82 -0
  847. data/src/com/zoho/crm/api/tags/info.rb +82 -0
  848. data/src/com/zoho/crm/api/tags/merge_wrapper.rb +63 -0
  849. data/src/com/zoho/crm/api/tags/new_tag_request_wrapper.rb +101 -0
  850. data/src/com/zoho/crm/api/tags/record_action_handler.rb +12 -0
  851. data/src/com/zoho/crm/api/tags/record_action_response.rb +12 -0
  852. data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +122 -0
  853. data/src/com/zoho/crm/api/tags/record_detail_tag.rb +101 -0
  854. data/src/com/zoho/crm/api/tags/record_success_response.rb +123 -0
  855. data/src/com/zoho/crm/api/tags/response_handler.rb +12 -0
  856. data/src/com/zoho/crm/api/tags/response_wrapper.rb +84 -0
  857. data/src/com/zoho/crm/api/tags/success_response.rb +123 -0
  858. data/src/com/zoho/crm/api/tags/tag.rb +179 -0
  859. data/src/com/zoho/crm/api/tags/tags_operations.rb +385 -0
  860. data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
  861. data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
  862. data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
  863. data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
  864. data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
  865. data/src/com/zoho/crm/api/taxes/expected_field.rb +82 -0
  866. data/src/com/zoho/crm/api/taxes/org_tax.rb +82 -0
  867. data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
  868. data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
  869. data/src/com/zoho/crm/api/taxes/response_wrapper.rb +65 -0
  870. data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
  871. data/src/com/zoho/crm/api/taxes/tax.rb +158 -0
  872. data/src/com/zoho/crm/api/taxes/taxes_operations.rb +70 -0
  873. data/src/com/zoho/crm/api/templates/api_exception.rb +121 -0
  874. data/src/com/zoho/crm/api/templates/folder.rb +82 -0
  875. data/src/com/zoho/crm/api/templates/templates.rb +234 -0
  876. data/src/com/zoho/crm/api/templates/wrapper.rb +63 -0
  877. data/src/com/zoho/crm/api/territories/action_handler.rb +12 -0
  878. data/src/com/zoho/crm/api/territories/action_response.rb +12 -0
  879. data/src/com/zoho/crm/api/territories/action_wrapper.rb +65 -0
  880. data/src/com/zoho/crm/api/territories/api_exception.rb +127 -0
  881. data/src/com/zoho/crm/api/territories/associated_users_count.rb +82 -0
  882. data/src/com/zoho/crm/api/territories/associated_users_count_wrapper.rb +84 -0
  883. data/src/com/zoho/crm/api/territories/body_wrapper.rb +63 -0
  884. data/src/com/zoho/crm/api/territories/criteria.rb +136 -0
  885. data/src/com/zoho/crm/api/territories/deleted_associated_territories.rb +121 -0
  886. data/src/com/zoho/crm/api/territories/deleted_associated_wrapper.rb +82 -0
  887. data/src/com/zoho/crm/api/territories/field.rb +82 -0
  888. data/src/com/zoho/crm/api/territories/info.rb +120 -0
  889. data/src/com/zoho/crm/api/territories/manager.rb +82 -0
  890. data/src/com/zoho/crm/api/territories/minified_territory.rb +101 -0
  891. data/src/com/zoho/crm/api/territories/reporting_to.rb +82 -0
  892. data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
  893. data/src/com/zoho/crm/api/territories/response_wrapper.rb +84 -0
  894. data/src/com/zoho/crm/api/territories/success_response.rb +123 -0
  895. data/src/com/zoho/crm/api/territories/territories.rb +293 -0
  896. data/src/com/zoho/crm/api/territories/territories_operations.rb +283 -0
  897. data/src/com/zoho/crm/api/territories/transfer_body_wrapper.rb +63 -0
  898. data/src/com/zoho/crm/api/territories/transfer_territory.rb +101 -0
  899. data/src/com/zoho/crm/api/territory_users/action_handler.rb +12 -0
  900. data/src/com/zoho/crm/api/territory_users/action_response.rb +12 -0
  901. data/src/com/zoho/crm/api/territory_users/action_wrapper.rb +65 -0
  902. data/src/com/zoho/crm/api/territory_users/api_exception.rb +127 -0
  903. data/src/com/zoho/crm/api/territory_users/body_wrapper.rb +64 -0
  904. data/src/com/zoho/crm/api/territory_users/info.rb +120 -0
  905. data/src/com/zoho/crm/api/territory_users/response_handler.rb +12 -0
  906. data/src/com/zoho/crm/api/territory_users/response_wrapper.rb +85 -0
  907. data/src/com/zoho/crm/api/territory_users/success_response.rb +123 -0
  908. data/src/com/zoho/crm/api/territory_users/territory_users_operations.rb +172 -0
  909. data/src/com/zoho/crm/api/timelines/api_exception.rb +123 -0
  910. data/src/com/zoho/crm/api/timelines/automation_detail.rb +101 -0
  911. data/src/com/zoho/crm/api/timelines/field_history.rb +177 -0
  912. data/src/com/zoho/crm/api/timelines/field_history_value.rb +82 -0
  913. data/src/com/zoho/crm/api/timelines/info.rb +158 -0
  914. data/src/com/zoho/crm/api/timelines/module.rb +82 -0
  915. data/src/com/zoho/crm/api/timelines/name_id_structure.rb +82 -0
  916. data/src/com/zoho/crm/api/timelines/path_finder.rb +101 -0
  917. data/src/com/zoho/crm/api/timelines/picklist_detail.rb +158 -0
  918. data/src/com/zoho/crm/api/timelines/record.rb +101 -0
  919. data/src/com/zoho/crm/api/timelines/related_record.rb +101 -0
  920. data/src/com/zoho/crm/api/timelines/response_handler.rb +12 -0
  921. data/src/com/zoho/crm/api/timelines/response_wrapper.rb +84 -0
  922. data/src/com/zoho/crm/api/timelines/state.rb +120 -0
  923. data/src/com/zoho/crm/api/timelines/timeline.rb +253 -0
  924. data/src/com/zoho/crm/api/timelines/timelines_operations.rb +88 -0
  925. data/src/com/zoho/crm/api/user_groups/action_handler.rb +12 -0
  926. data/src/com/zoho/crm/api/user_groups/action_response.rb +12 -0
  927. data/src/com/zoho/crm/api/user_groups/action_wrapper.rb +65 -0
  928. data/src/com/zoho/crm/api/user_groups/api_exception.rb +127 -0
  929. data/src/com/zoho/crm/api/user_groups/associated_user.rb +82 -0
  930. data/src/com/zoho/crm/api/user_groups/associated_user_count.rb +84 -0
  931. data/src/com/zoho/crm/api/user_groups/association_module.rb +64 -0
  932. data/src/com/zoho/crm/api/user_groups/association_response.rb +101 -0
  933. data/src/com/zoho/crm/api/user_groups/association_wrapper.rb +65 -0
  934. data/src/com/zoho/crm/api/user_groups/body_wrapper.rb +63 -0
  935. data/src/com/zoho/crm/api/user_groups/groups.rb +196 -0
  936. data/src/com/zoho/crm/api/user_groups/info.rb +120 -0
  937. data/src/com/zoho/crm/api/user_groups/jobs.rb +63 -0
  938. data/src/com/zoho/crm/api/user_groups/jobs_wrapper.rb +63 -0
  939. data/src/com/zoho/crm/api/user_groups/owner.rb +82 -0
  940. data/src/com/zoho/crm/api/user_groups/resource.rb +82 -0
  941. data/src/com/zoho/crm/api/user_groups/response_handler.rb +12 -0
  942. data/src/com/zoho/crm/api/user_groups/response_wrapper.rb +84 -0
  943. data/src/com/zoho/crm/api/user_groups/source.rb +82 -0
  944. data/src/com/zoho/crm/api/user_groups/sources.rb +121 -0
  945. data/src/com/zoho/crm/api/user_groups/sources_count.rb +120 -0
  946. data/src/com/zoho/crm/api/user_groups/sources_count_wrapper.rb +65 -0
  947. data/src/com/zoho/crm/api/user_groups/sources_wrapper.rb +84 -0
  948. data/src/com/zoho/crm/api/user_groups/success_response.rb +123 -0
  949. data/src/com/zoho/crm/api/user_groups/user_group.rb +82 -0
  950. data/src/com/zoho/crm/api/user_groups/user_groups_operations.rb +260 -0
  951. data/src/com/zoho/crm/api/user_groups/users.rb +101 -0
  952. data/src/com/zoho/crm/api/user_signature.rb +15 -0
  953. data/src/com/zoho/crm/api/user_type_users/api_exception.rb +123 -0
  954. data/src/com/zoho/crm/api/user_type_users/info.rb +139 -0
  955. data/src/com/zoho/crm/api/user_type_users/response_handler.rb +12 -0
  956. data/src/com/zoho/crm/api/user_type_users/response_wrapper.rb +84 -0
  957. data/src/com/zoho/crm/api/user_type_users/user_type_users_operations.rb +60 -0
  958. data/src/com/zoho/crm/api/user_type_users/users.rb +196 -0
  959. data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
  960. data/src/com/zoho/crm/api/users/action_response.rb +12 -0
  961. data/src/com/zoho/crm/api/users/action_wrapper.rb +65 -0
  962. data/src/com/zoho/crm/api/users/api_exception.rb +127 -0
  963. data/src/com/zoho/crm/api/users/associated_group.rb +177 -0
  964. data/src/com/zoho/crm/api/users/associated_groups_wrapper.rb +84 -0
  965. data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
  966. data/src/com/zoho/crm/api/users/customize_info.rb +146 -0
  967. data/src/com/zoho/crm/api/users/error_details.rb +82 -0
  968. data/src/com/zoho/crm/api/users/info.rb +120 -0
  969. data/src/com/zoho/crm/api/users/minified_user.rb +101 -0
  970. data/src/com/zoho/crm/api/users/owner.rb +120 -0
  971. data/src/com/zoho/crm/api/users/profile.rb +82 -0
  972. data/src/com/zoho/crm/api/users/response_handler.rb +12 -0
  973. data/src/com/zoho/crm/api/users/response_wrapper.rb +84 -0
  974. data/src/com/zoho/crm/api/users/role.rb +82 -0
  975. data/src/com/zoho/crm/api/users/shift.rb +82 -0
  976. data/src/com/zoho/crm/api/users/success_response.rb +123 -0
  977. data/src/com/zoho/crm/api/users/tab.rb +83 -0
  978. data/src/com/zoho/crm/api/users/theme.rb +159 -0
  979. data/src/com/zoho/crm/api/users/users.rb +1086 -0
  980. data/src/com/zoho/crm/api/users/users_operations.rb +208 -0
  981. data/src/com/zoho/crm/api/users_territories/action_handler.rb +12 -0
  982. data/src/com/zoho/crm/api/users_territories/action_response.rb +12 -0
  983. data/src/com/zoho/crm/api/users_territories/action_wrapper.rb +67 -0
  984. data/src/com/zoho/crm/api/users_territories/api_exception.rb +131 -0
  985. data/src/com/zoho/crm/api/users_territories/body_wrapper.rb +63 -0
  986. data/src/com/zoho/crm/api/users_territories/bulk_validation.rb +141 -0
  987. data/src/com/zoho/crm/api/users_territories/info.rb +120 -0
  988. data/src/com/zoho/crm/api/users_territories/manager.rb +82 -0
  989. data/src/com/zoho/crm/api/users_territories/response_handler.rb +12 -0
  990. data/src/com/zoho/crm/api/users_territories/response_wrapper.rb +84 -0
  991. data/src/com/zoho/crm/api/users_territories/success_response.rb +125 -0
  992. data/src/com/zoho/crm/api/users_territories/territory.rb +120 -0
  993. data/src/com/zoho/crm/api/users_territories/transfer_action_handler.rb +12 -0
  994. data/src/com/zoho/crm/api/users_territories/transfer_action_response.rb +12 -0
  995. data/src/com/zoho/crm/api/users_territories/transfer_action_wrapper.rb +65 -0
  996. data/src/com/zoho/crm/api/users_territories/transfer_and_delink.rb +82 -0
  997. data/src/com/zoho/crm/api/users_territories/transfer_to_user.rb +63 -0
  998. data/src/com/zoho/crm/api/users_territories/transfer_wrapper.rb +63 -0
  999. data/src/com/zoho/crm/api/users_territories/users_territories_operations.rb +192 -0
  1000. data/src/com/zoho/crm/api/users_territories/validation.rb +103 -0
  1001. data/src/com/zoho/crm/api/users_territories/validation_group.rb +12 -0
  1002. data/src/com/zoho/crm/api/users_territories/validation_handler.rb +12 -0
  1003. data/src/com/zoho/crm/api/users_territories/validation_wrapper.rb +65 -0
  1004. data/src/com/zoho/crm/api/users_transfer_delete/action_handler.rb +12 -0
  1005. data/src/com/zoho/crm/api/users_transfer_delete/action_response.rb +12 -0
  1006. data/src/com/zoho/crm/api/users_transfer_delete/action_wrapper.rb +65 -0
  1007. data/src/com/zoho/crm/api/users_transfer_delete/api_exception.rb +127 -0
  1008. data/src/com/zoho/crm/api/users_transfer_delete/body_wrapper.rb +63 -0
  1009. data/src/com/zoho/crm/api/users_transfer_delete/move_subordinate.rb +63 -0
  1010. data/src/com/zoho/crm/api/users_transfer_delete/response_handler.rb +12 -0
  1011. data/src/com/zoho/crm/api/users_transfer_delete/response_wrapper.rb +65 -0
  1012. data/src/com/zoho/crm/api/users_transfer_delete/status.rb +63 -0
  1013. data/src/com/zoho/crm/api/users_transfer_delete/success_response.rb +123 -0
  1014. data/src/com/zoho/crm/api/users_transfer_delete/transfer.rb +120 -0
  1015. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete.rb +101 -0
  1016. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete_by_i_d.rb +82 -0
  1017. data/src/com/zoho/crm/api/users_transfer_delete/users_transfer_delete_operations.rb +92 -0
  1018. data/src/com/zoho/crm/api/users_unavailability/action_handler.rb +12 -0
  1019. data/src/com/zoho/crm/api/users_unavailability/action_response.rb +12 -0
  1020. data/src/com/zoho/crm/api/users_unavailability/action_wrapper.rb +65 -0
  1021. data/src/com/zoho/crm/api/users_unavailability/api_exception.rb +127 -0
  1022. data/src/com/zoho/crm/api/users_unavailability/body_wrapper.rb +63 -0
  1023. data/src/com/zoho/crm/api/users_unavailability/info.rb +120 -0
  1024. data/src/com/zoho/crm/api/users_unavailability/response_handler.rb +12 -0
  1025. data/src/com/zoho/crm/api/users_unavailability/response_wrapper.rb +84 -0
  1026. data/src/com/zoho/crm/api/users_unavailability/success_response.rb +123 -0
  1027. data/src/com/zoho/crm/api/users_unavailability/user.rb +101 -0
  1028. data/src/com/zoho/crm/api/users_unavailability/users_unavailability.rb +234 -0
  1029. data/src/com/zoho/crm/api/users_unavailability/users_unavailability_operations.rb +181 -0
  1030. data/src/com/zoho/crm/api/util/api_http_connector.rb +125 -0
  1031. data/src/com/zoho/crm/api/util/api_response.rb +18 -0
  1032. data/src/com/zoho/crm/api/util/choice.rb +11 -0
  1033. data/src/com/zoho/crm/api/util/common_api_handler.rb +240 -0
  1034. data/src/com/zoho/crm/api/util/constants.rb +754 -0
  1035. data/src/com/zoho/crm/api/util/converter.rb +280 -0
  1036. data/src/com/zoho/crm/api/util/data_type_converter.rb +179 -0
  1037. data/src/com/zoho/crm/api/util/downloader.rb +86 -0
  1038. data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
  1039. data/src/com/zoho/crm/api/util/header_param_validator.rb +57 -0
  1040. data/src/com/zoho/crm/api/util/json_converter.rb +774 -0
  1041. data/src/com/zoho/crm/api/util/model.rb +7 -0
  1042. data/src/com/zoho/crm/api/util/module_fields_handler.rb +91 -0
  1043. data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
  1044. data/src/com/zoho/crm/api/util/utility.rb +1007 -0
  1045. data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
  1046. data/src/com/zoho/crm/api/variable_groups/minified_variable_group.rb +82 -0
  1047. data/src/com/zoho/crm/api/variable_groups/response_handler.rb +12 -0
  1048. data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +65 -0
  1049. data/src/com/zoho/crm/api/variable_groups/variable_group.rb +158 -0
  1050. data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +68 -0
  1051. data/src/com/zoho/crm/api/variables/action_handler.rb +12 -0
  1052. data/src/com/zoho/crm/api/variables/action_response.rb +12 -0
  1053. data/src/com/zoho/crm/api/variables/action_wrapper.rb +65 -0
  1054. data/src/com/zoho/crm/api/variables/api_exception.rb +127 -0
  1055. data/src/com/zoho/crm/api/variables/body_wrapper.rb +63 -0
  1056. data/src/com/zoho/crm/api/variables/error_details.rb +82 -0
  1057. data/src/com/zoho/crm/api/variables/response_handler.rb +12 -0
  1058. data/src/com/zoho/crm/api/variables/response_wrapper.rb +65 -0
  1059. data/src/com/zoho/crm/api/variables/success_response.rb +123 -0
  1060. data/src/com/zoho/crm/api/variables/variable.rb +213 -0
  1061. data/src/com/zoho/crm/api/variables/variable_group.rb +101 -0
  1062. data/src/com/zoho/crm/api/variables/variables_operations.rb +255 -0
  1063. data/src/com/zoho/crm/api/wizards/actions.rb +157 -0
  1064. data/src/com/zoho/crm/api/wizards/api_exception.rb +123 -0
  1065. data/src/com/zoho/crm/api/wizards/button.rb +288 -0
  1066. data/src/com/zoho/crm/api/wizards/button_background.rb +63 -0
  1067. data/src/com/zoho/crm/api/wizards/chart_data.rb +139 -0
  1068. data/src/com/zoho/crm/api/wizards/conditional_rules.rb +121 -0
  1069. data/src/com/zoho/crm/api/wizards/connection.rb +82 -0
  1070. data/src/com/zoho/crm/api/wizards/container.rb +121 -0
  1071. data/src/com/zoho/crm/api/wizards/criteria.rb +136 -0
  1072. data/src/com/zoho/crm/api/wizards/exempted_portal_user_type.rb +63 -0
  1073. data/src/com/zoho/crm/api/wizards/field.rb +82 -0
  1074. data/src/com/zoho/crm/api/wizards/node.rb +120 -0
  1075. data/src/com/zoho/crm/api/wizards/portal_user_type.rb +121 -0
  1076. data/src/com/zoho/crm/api/wizards/resource.rb +82 -0
  1077. data/src/com/zoho/crm/api/wizards/response_handler.rb +12 -0
  1078. data/src/com/zoho/crm/api/wizards/response_wrapper.rb +65 -0
  1079. data/src/com/zoho/crm/api/wizards/screen.rb +120 -0
  1080. data/src/com/zoho/crm/api/wizards/segment.rb +197 -0
  1081. data/src/com/zoho/crm/api/wizards/transition.rb +82 -0
  1082. data/src/com/zoho/crm/api/wizards/wizard.rb +313 -0
  1083. data/src/com/zoho/crm/api/wizards/wizards_operations.rb +63 -0
  1084. data/src/resources/json_details.json +1 -0
  1085. data/src/version.rb +3 -0
  1086. metadata +1241 -0
@@ -0,0 +1 @@
1
+ {"com.zoho.crm.api.mass_change_owner.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"values":["cvid"],"name":"api_name","type":"com.zoho.crm.api.util.Choice"},{"name":"expected_data_type","type":"String"},{"name":"json_path","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the cvid given seems to be invalid","required field not found"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_write.BulkWriteResponse":{"result":{"structure_name":"com.zoho.crm.api.bulk_write.Result","name":"result","type":"com.zoho.crm.api.bulk_write.Result"},"created_time":{"name":"created_time","type":"DateTime"},"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List"},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"id":{"name":"id","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"operation":{"name":"operation","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.portals_meta.Wrapper":{"related_lists":{"structure_name":"com.zoho.crm.api.portals_meta.RelatedLists","name":"related_lists","type":"List"}},"com.zoho.crm.api.profiles.ResponseHandler":{"classes":["com.zoho.crm.api.profiles.ProfileWrapper","com.zoho.crm.api.profiles.APIException"],"interface":true},"com.zoho.crm.api.variables.GetVariablesParam":{"group":{"name":"group","type":"String"}},"com.zoho.crm.api.service_preference.ServicePreference":{"job_sheet_enabled":{"name":"job_sheet_enabled","type":"Boolean"}},"com.zoho.crm.api.backup.HistoryParam":{"per_page":{"name":"per_page","type":"String"},"page":{"name":"page","type":"String"}},"com.zoho.crm.api.blueprint.Transition":{"next_transitions":{"structure_name":"com.zoho.crm.api.blueprint.NextTransition","name":"next_transitions","type":"List"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"com.zoho.crm.api.record.Record"},"next_field_value":{"name":"next_field_value","type":"String"},"name":{"name":"name","type":"String"},"criteria_matched":{"name":"criteria_matched","type":"Boolean"},"parent_transition":{"structure_name":"com.zoho.crm.api.blueprint.Transition","name":"parent_transition","type":"com.zoho.crm.api.blueprint.Transition"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.blueprint.Field","name":"fields","type":"List"},"criteria_message":{"name":"criteria_message","type":"String"},"percent_partial_save":{"name":"percent_partial_save","type":"Integer"},"execution_time":{"name":"execution_time","type":"DateTime"}},"com.zoho.crm.api.bulk_write.File":{"skipped_count":{"name":"skipped_count","type":"Integer"},"updated_count":{"name":"updated_count","type":"Integer"},"total_count":{"name":"total_count","type":"Integer"},"name":{"name":"name","type":"String"},"added_count":{"name":"added_count","type":"Integer"},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.blueprint.Currency":{"rounding_option":{"name":"rounding_option","type":"String"},"precision":{"name":"precision","type":"Integer"}},"com.zoho.crm.api.reschedule_history.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.reschedule_history.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.email_related_records.UserDetails":{"user_name":{"name":"user_name","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.user_groups.Jobs":{"status":{"name":"Status","type":"String"}},"com.zoho.crm.api.tags.UpdateTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.appointment_preference.Field":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.notes.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","REQUIRED_PARAM_MISSING","NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","NOT_SUPPORTED","REQUIRED_PARAM_MISSING","INTERNAL_SERVER_ERROR","INVALID_MODULE","BAD_REQUEST","OAUTH_SCOPE_MISMATCH","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"String"},{"name":"api_name","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"permissions","sub-type":"String","type":"List"},{"name":"param","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"param_name","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["record not deleted","required field not found","invalid data","One of the expected parameter is missing","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the id given seems to be invalid","One of the expected parameter is missing","Internal server error occurred.","the module name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.assignment_rules.AssignmentRules":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"default_assignee":{"structure_name":"com.zoho.crm.api.assignment_rules.DefaultAssignee","name":"default_assignee","type":"com.zoho.crm.api.assignment_rules.DefaultAssignee"},"api_name":{"name":"api_name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.assignment_rules.CreatedBy","name":"modified_by","type":"com.zoho.crm.api.assignment_rules.CreatedBy"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.assignment_rules.CreatedBy","name":"created_by","type":"com.zoho.crm.api.assignment_rules.CreatedBy"}},"com.zoho.crm.api.entity_scores.GetModuleParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.mail_merge.MailMerge":{"bcc_email":{"structure_name":"com.zoho.crm.api.mail_merge.Address","name":"bcc_email","type":"List"},"mail_merge_template":{"structure_name":"com.zoho.crm.api.mail_merge.MailMergeTemplate","name":"mail_merge_template","type":"com.zoho.crm.api.mail_merge.MailMergeTemplate"},"cc_email":{"structure_name":"com.zoho.crm.api.mail_merge.Address","name":"cc_email","type":"List"},"subject":{"name":"subject","type":"String"},"attachment_name":{"name":"attachment_name","type":"String"},"to_address":{"structure_name":"com.zoho.crm.api.mail_merge.Address","name":"to_address","type":"List"},"message":{"name":"message","type":"String"},"type":{"values":["inline","attachment"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"from_address":{"structure_name":"com.zoho.crm.api.mail_merge.Address","name":"from_address","type":"com.zoho.crm.api.mail_merge.Address"}},"com.zoho.crm.api.territories.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.change_owner.APIException":{"code":{"values":["NO_PERMISSION","INVALID_DATA","MANDATORY_NOT_FOUND","EXPECTED_FIELD_MISSING","NOT_SUPPORTED","AMBIGUITY_DURING_PROCESSING","INTERNAL_SERVER_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","sub-type":"String","type":"List"},{"name":"resource_path_index","type":"Integer"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"structure_name":"com.zoho.crm.api.change_owner.ErrorDetails","name":"expected_fields","type":"List"},{"structure_name":"com.zoho.crm.api.change_owner.ErrorDetails","name":"ambiguity_due_to","type":"List"},{"name":"expected_data_type","type":"String"},{"name":"regex","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.TransferPipeline":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.TPipeline","name":"pipeline","type":"com.zoho.crm.api.pipeline.TPipeline"},"stages":{"structure_name":"com.zoho.crm.api.pipeline.Stages","name":"stages","type":"List"}},"com.zoho.crm.api.fields.EmailParser":{"fields_update_supported":{"name":"fields_update_supported","type":"Boolean"},"record_operations_supported":{"name":"record_operations_supported","type":"Boolean"}},"com.zoho.crm.api.profiles.Category":{"classes":["com.zoho.crm.api.profiles.CategoryModule","com.zoho.crm.api.profiles.CategoryOthers"],"interface":true},"com.zoho.crm.api.mass_convert.RelatedModule":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.email_templates.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.field_map_dependency.BodyWrapper":{"map_dependency":{"structure_name":"com.zoho.crm.api.field_map_dependency.MapDependency","name":"map_dependency","type":"List"},"info":{"structure_name":"com.zoho.crm.api.field_map_dependency.Info","name":"info","type":"com.zoho.crm.api.field_map_dependency.Info"}},"com.zoho.crm.api.mass_delete_cvid.Status":{"total_count":{"name":"Total_Count","type":"Integer"},"failed_count":{"name":"Failed_Count","type":"Integer"},"deleted_count":{"name":"Deleted_Count","type":"Integer"},"status":{"values":["COMPLETED","RUNNING","FAILED"],"name":"Status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notifications.ActionHandler":{"classes":["com.zoho.crm.api.notifications.APIException","com.zoho.crm.api.notifications.ActionWrapper"],"interface":true},"com.zoho.crm.api.notifications.ActionResponse":{"classes":["com.zoho.crm.api.notifications.APIException","com.zoho.crm.api.notifications.SuccessResponse"],"interface":true},"com.zoho.crm.api.user_groups.ActionWrapper":{"user_groups":{"structure_name":"com.zoho.crm.api.user_groups.ActionResponse","name":"user_groups","type":"List"}},"com.zoho.crm.api.download_attachments.ResponseHandler":{"classes":["com.zoho.crm.api.download_attachments.FileBodyWrapper","com.zoho.crm.api.download_attachments.APIException"],"interface":true},"com.zoho.crm.api.holidays.CreateShiftHoliday":{"holidays":{"structure_name":"com.zoho.crm.api.holidays.ShiftHoliday","name":"holidays","type":"List"}},"com.zoho.crm.api.cancel_meetings.ActionHandler":{"classes":["com.zoho.crm.api.cancel_meetings.ActionWrapper","com.zoho.crm.api.cancel_meetings.APIException"],"interface":true},"com.zoho.crm.api.mass_convert.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.mass_convert.Status","name":"data","type":"List"}},"com.zoho.crm.api.definition.ResponseWrapper":{"definition":{"structure_name":"com.zoho.crm.api.definition.Definition","name":"definition","type":"com.zoho.crm.api.definition.Definition"}},"com.zoho.crm.api.mass_delete_cvid.Territory":{"include_child":{"name":"include_child","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.holidays.DeleteHolidayHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.record.LineItemProduct":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"currency":{"name":"Currency","type":"String"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"product_code":{"name":"Product_Code","type":"String"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"}},"com.zoho.crm.api.shift_hours.ShiftCount":{"total_shift_with_user":{"name":"total_shift_with_user","type":"Integer"},"total_shift":{"name":"total_shift","type":"Integer"}},"com.zoho.crm.api.users_transfer_delete.BodyWrapper":{"transfer_and_delete":{"structure_name":"com.zoho.crm.api.users_transfer_delete.TransferAndDelete","name":"transfer_and_delete","max-length":1,"type":"List"}},"com.zoho.crm.api.record.MassUpdateTerritory":{"include_child":{"name":"include_child","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.mail_merge.DownloadMailMergeWrapper":{"download_mail_merge":{"structure_name":"com.zoho.crm.api.mail_merge.DownloadMailMerge","name":"download_mail_merge","type":"List"}},"com.zoho.crm.api.custom_views.PinUnpinFields":{"fields":{"structure_name":"com.zoho.crm.api.custom_views.PinFields","name":"fields","type":"List"}},"com.zoho.crm.api.scoring_rules.ResponseWrapper":{"scoring_rules":{"structure_name":"com.zoho.crm.api.scoring_rules.ScoringRule","name":"scoring_rules","type":"List"},"info":{"structure_name":"com.zoho.crm.api.scoring_rules.Info","name":"info","type":"com.zoho.crm.api.scoring_rules.Info"}},"com.zoho.crm.api.scoring_rules.LayoutRequestWrapper":{"layout":{"structure_name":"com.zoho.crm.api.scoring_rules.Layout","name":"layout","type":"com.zoho.crm.api.scoring_rules.Layout"}},"com.zoho.crm.api.territory_users.ActionResponse":{"classes":["com.zoho.crm.api.territory_users.APIException","com.zoho.crm.api.territory_users.SuccessResponse"],"interface":true},"com.zoho.crm.api.tags.ResponseHandler":{"classes":["com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.CountResponseWrapper"],"interface":true},"com.zoho.crm.api.timelines.Timeline":{"extension":{"name":"extension","type":"String"},"done_by":{"structure_name":"com.zoho.crm.api.timelines.NameIdStructure","name":"done_by","type":"com.zoho.crm.api.timelines.NameIdStructure"},"related_record":{"structure_name":"com.zoho.crm.api.timelines.RelatedRecord","name":"related_record","type":"com.zoho.crm.api.timelines.RelatedRecord"},"automation_details":{"structure_name":"com.zoho.crm.api.timelines.AutomationDetail","name":"automation_details","type":"com.zoho.crm.api.timelines.AutomationDetail"},"record":{"structure_name":"com.zoho.crm.api.timelines.Record","name":"record","type":"com.zoho.crm.api.timelines.Record"},"audited_time":{"name":"audited_time","type":"DateTime"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long"},"source":{"name":"source","type":"String"},"type":{"name":"type","type":"String"},"field_history":{"structure_name":"com.zoho.crm.api.timelines.FieldHistory","name":"field_history","type":"List"}},"com.zoho.crm.api.inventory_templates.InventoryTemplate":{"created_time":{"name":"created_time","type":"DateTime"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"content":{"name":"content","type":"String"},"modified_time":{"name":"modified_time","type":"DateTime"},"folder":{"structure_name":"com.zoho.crm.api.inventory_templates.Folder","name":"folder","type":"com.zoho.crm.api.inventory_templates.Folder"},"last_usage_time":{"name":"last_usage_time","type":"DateTime"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"editor_mode":{"name":"editor_mode","type":"String"},"category":{"name":"category","type":"String"},"favorite":{"name":"favorite","type":"Boolean"}},"com.zoho.crm.api.templates.APIException":{"code":{"values":["REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.Button":{"color":{"name":"color","type":"String"},"shape":{"name":"shape","type":"String"},"visibility":{"name":"visibility","type":"String"},"resource":{"name":"resource","type":"Object"},"criteria":{"structure_name":"com.zoho.crm.api.wizards.Criteria","name":"criteria","type":"com.zoho.crm.api.wizards.Criteria"},"target_screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"target_screen","type":"com.zoho.crm.api.wizards.Screen"},"type":{"name":"type","type":"String"},"transition":{"structure_name":"com.zoho.crm.api.wizards.Transition","name":"transition","type":"com.zoho.crm.api.wizards.Transition"},"sequence_number":{"name":"sequence_number","type":"Integer"},"display_label":{"name":"display_label","type":"String"},"background_color":{"name":"background_color","type":"String"},"id":{"name":"id","type":"Long"},"category":{"name":"category","type":"String"}},"com.zoho.crm.api.taxes.ActionResponse":{"classes":["com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.reschedule_history.GetAppointmentRescheduledHistoryParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.tags.Tag":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"color_code":{"values":["#F17574","#F48435","#E7A826","#A8C026","#63C57E","#1DB9B4","#57B1FD","#879BFC","#D297EE","#FD87BD","#969696","#658BA8","#B88562"],"name":"color_code","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.ConversionOptionsResponseWrapper":{"conversionoptions":{"structure_name":"com.zoho.crm.api.record.ConversionOption","name":"__conversion_options","type":"com.zoho.crm.api.record.ConversionOption"}},"com.zoho.crm.api.related_records.GetRelatedRecordsUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.email_compose_meta.DefaultForm":{"default":{"name":"default","type":"Boolean"},"user_name":{"name":"user_name","type":"String"},"type":{"name":"type","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.mass_change_owner.BodyWrapper":{"cvid":{"name":"cvid","type":"Long"},"owner":{"structure_name":"com.zoho.crm.api.mass_change_owner.Owner","name":"owner","type":"com.zoho.crm.api.mass_change_owner.Owner"},"territory":{"structure_name":"com.zoho.crm.api.mass_change_owner.Territory","name":"territory","type":"com.zoho.crm.api.mass_change_owner.Territory"}},"com.zoho.crm.api.cancel_meetings.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.profiles.DeleteProfileParam":{"transfer_to":{"name":"transfer_to","type":"Long","required":true}},"com.zoho.crm.api.taxes.OrgTax":{"preference":{"structure_name":"com.zoho.crm.api.taxes.Preference","name":"preference","type":"com.zoho.crm.api.taxes.Preference"},"taxes":{"structure_name":"com.zoho.crm.api.taxes.Tax","name":"taxes","type":"List"}},"com.zoho.crm.api.bulk_write.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.privacy_preference.PrivacyPreference":{"preference":{"structure_name":"com.zoho.crm.api.privacy_preference.Preference","name":"preference","type":"com.zoho.crm.api.privacy_preference.Preference"},"config":{"structure_name":"com.zoho.crm.api.privacy_preference.Config","name":"config","type":"com.zoho.crm.api.privacy_preference.Config"}},"com.zoho.crm.api.modules.Modules":{"global_search_supported":{"name":"global_search_supported","type":"Boolean"},"activity_badge":{"values":["Enabled","Disabled"],"name":"activity_badge","type":"com.zoho.crm.api.util.Choice"},"zia_view":{"name":"zia_view","type":"Boolean"},"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layouts","name":"layouts","type":"List"},"email_parser_supported":{"name":"email_parser_supported","type":"Boolean"},"business_card_fields":{"name":"business_card_fields","sub-type":"String","type":"List"},"inventory_template_supported":{"name":"inventory_template_supported","type":"Boolean"},"track_current_data":{"name":"track_current_data","type":"Boolean"},"plural_label":{"name":"plural_label","type":"String"},"presence_sub_menu":{"name":"presence_sub_menu","type":"Boolean"},"arguments_32":{"structure_name":"com.zoho.crm.api.modules.Argument","name":"arguments","type":"List"},"triggers_supported":{"name":"triggers_supported","type":"Boolean"},"id":{"name":"id","type":"Long"},"per_page":{"name":"per_page","type":"Integer"},"visible":{"name":"visible","type":"Boolean"},"sub_menu_available":{"name":"sub_menu_available","type":"Boolean"},"visibility":{"name":"visibility","type":"Integer"},"profiles":{"structure_name":"com.zoho.crm.api.profiles.MinifiedProfile","name":"profiles","type":"List"},"filter_supported":{"name":"filter_supported","type":"Boolean"},"kanban_view_supported":{"name":"kanban_view_supported","type":"Boolean"},"web_link":{"name":"web_link","type":"String"},"lookup_field_properties":{"structure_name":"com.zoho.crm.api.modules.LookupFieldProperties","name":"lookup_field_properties","type":"com.zoho.crm.api.modules.LookupFieldProperties"},"viewable":{"name":"viewable","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"emailtemplate_support":{"name":"emailTemplate_support","type":"Boolean"},"module_name":{"name":"module_name","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.modules.ModuleFields","name":"fields","type":"List"},"parent_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"parent_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"custom_view":{"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_view","type":"com.zoho.crm.api.custom_views.CustomView"},"status":{"name":"status","type":"String"},"kanban_view":{"name":"kanban_view","type":"Boolean"},"field_states":{"name":"$field_states","sub-type":"String","type":"List"},"related_lists":{"structure_name":"com.zoho.crm.api.related_lists.RelatedList","name":"related_lists","type":"List"},"deletable":{"name":"deletable","type":"Boolean"},"description":{"name":"description","max-length":255,"type":"String"},"creatable":{"name":"creatable","type":"Boolean"},"filter_status":{"name":"filter_status","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"related_list_properties":{"structure_name":"com.zoho.crm.api.modules.RelatedListProperties","name":"related_list_properties","type":"com.zoho.crm.api.modules.RelatedListProperties"},"isblueprintsupported":{"name":"isBlueprintSupported","type":"Boolean"},"default_mapping_fields":{"structure_name":"com.zoho.crm.api.fields.MinifiedField","name":"default_mapping_fields","type":"List"},"convertable":{"name":"convertable","type":"Boolean"},"editable":{"name":"editable","type":"Boolean"},"display_field":{"name":"display_field","type":"String"},"show_as_tab":{"name":"show_as_tab","type":"Boolean"},"search_layout_fields":{"name":"search_layout_fields","sub-type":"String","type":"List"},"sequence_number":{"name":"sequence_number","type":"Integer"},"singular_label":{"name":"singular_label","type":"String"},"api_supported":{"name":"api_supported","type":"Boolean"},"quick_create":{"name":"quick_create","type":"Boolean"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"on_demand_properties":{"name":"$on_demand_properties","sub-type":"String","type":"List"},"generated_type":{"values":["default","web","custom","linking"],"name":"generated_type","type":"com.zoho.crm.api.util.Choice"},"feeds_required":{"name":"feeds_required","type":"Boolean"},"scoring_supported":{"name":"scoring_supported","type":"Boolean"},"webform_supported":{"name":"webform_supported","type":"Boolean"},"arguments":{"structure_name":"com.zoho.crm.api.modules.Argument","name":"arguments","type":"List"},"business_card_field_limit":{"name":"business_card_field_limit","type":"Integer"},"properties":{"name":"$properties","sub-type":"String","type":"List"},"territory":{"structure_name":"com.zoho.crm.api.modules.Territory","name":"territory","type":"com.zoho.crm.api.modules.Territory"}},"com.zoho.crm.api.user_groups.BodyWrapper":{"user_groups":{"structure_name":"com.zoho.crm.api.user_groups.Groups","name":"user_groups","type":"List"}},"com.zoho.crm.api.pipeline.ForecastCategory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variables.UpdateVariableByAPINameParam":{"group":{"name":"group","type":"String"}},"com.zoho.crm.api.layouts.Properties":{"reorder_rows":{"name":"reorder_rows","type":"Boolean"},"tooltip":{"structure_name":"com.zoho.crm.api.layouts.Tooltip","name":"tooltip","type":"com.zoho.crm.api.layouts.Tooltip"},"maximum_rows":{"name":"maximum_rows","type":"Integer"}},"com.zoho.crm.api.wizards.PortalUserType":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layouts","name":"layout","type":"com.zoho.crm.api.layouts.Layouts"},"chart_data":{"structure_name":"com.zoho.crm.api.wizards.ChartData","name":"chart_data","type":"com.zoho.crm.api.wizards.ChartData"},"screens":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"screens","type":"List"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.HistoryTrackingModule":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layouts","name":"layout","type":"com.zoho.crm.api.layouts.Layouts"},"display_label":{"name":"display_label","type":"String"},"module_1":{"structure_name":"com.zoho.crm.api.fields.HistoryTrackingModule","name":"module","type":"com.zoho.crm.api.fields.HistoryTrackingModule"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"module_name":{"name":"module_name","type":"String"}},"com.zoho.crm.api.cancel_meetings.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.cancel_meetings.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.blueprint.ActionHandler":{"classes":["com.zoho.crm.api.blueprint.SuccessResponse","com.zoho.crm.api.blueprint.APIException"],"interface":true},"com.zoho.crm.api.email_templates.EmailTemplate":{"created_time":{"name":"created_time","type":"DateTime"},"attachments":{"structure_name":"com.zoho.crm.api.email_templates.Attachment","name":"attachments","type":"List"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"subject":{"name":"subject","type":"String"},"description":{"name":"description","type":"String"},"type":{"name":"type","type":"String"},"last_version_statistics":{"structure_name":"com.zoho.crm.api.email_templates.LastVersionStatistics","name":"last_version_statistics","type":"com.zoho.crm.api.email_templates.LastVersionStatistics"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"content":{"name":"content","type":"String"},"modified_time":{"name":"modified_time","type":"DateTime"},"folder":{"structure_name":"com.zoho.crm.api.inventory_templates.Folder","name":"folder","type":"com.zoho.crm.api.inventory_templates.Folder"},"last_usage_time":{"name":"last_usage_time","type":"DateTime"},"associated":{"name":"associated","type":"Boolean"},"consent_linked":{"name":"consent_linked","type":"Boolean"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"editor_mode":{"name":"editor_mode","type":"String"},"category":{"name":"category","type":"String"},"favorite":{"name":"favorite","type":"Boolean"}},"com.zoho.crm.api.tags.GetTagsParam":{"module_1":{"name":"module","type":"String","required":true},"my_tags":{"values":["true","false"],"name":"my_tags","type":"String"}},"com.zoho.crm.api.fields.Formula":{"return_type":{"values":["double"],"name":"return_type","type":"com.zoho.crm.api.util.Choice"},"expression":{"values":["Dayofmonth(${Created_Time})"],"name":"expression","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.portal_invite.ActionResponse":{"classes":["com.zoho.crm.api.portal_invite.SuccessResponse","com.zoho.crm.api.portal_invite.APIException"],"interface":true},"com.zoho.crm.api.territories.ActionWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.ActionResponse","name":"territories","type":"List"}},"com.zoho.crm.api.portal_user_type.Fields":{"read_only":{"name":"read_only","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.send_mail.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.send_mail.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.attachments.ResponseHandler":{"classes":["com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.attachments.FileBodyWrapper","com.zoho.crm.api.attachments.APIException"],"interface":true},"com.zoho.crm.api.change_owner.RelatedModules":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.roles.ActionWrapper":{"roles":{"structure_name":"com.zoho.crm.api.roles.ActionResponse","name":"roles","type":"List"}},"com.zoho.crm.api.pipeline.UpdatePipelineParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.blueprint.Formula":{"return_type":{"name":"return_type","type":"String"},"expression":{"name":"expression","type":"Integer"}},"com.zoho.crm.api.territories.BodyWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.Territories","name":"territories","type":"List"}},"com.zoho.crm.api.user_type_users.Users":{"personality_id":{"name":"personality_id","type":"Long"},"confirm":{"name":"confirm","type":"Boolean"},"status_reason__s":{"name":"status_reason__s","type":"String"},"invited_time":{"name":"invited_time","type":"DateTime"},"module_1":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"active":{"name":"active","type":"Boolean"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.wizards.Connection":{"source_button":{"structure_name":"com.zoho.crm.api.wizards.Button","name":"source_button","type":"com.zoho.crm.api.wizards.Button"},"target_screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"target_screen","type":"com.zoho.crm.api.wizards.Screen"}},"com.zoho.crm.api.field_map_dependency.Child":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.portals_meta.Layouts":{"display_label":{"name":"display_label","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.email_related_records.ResponseWrapper":{"emails":{"structure_name":"com.zoho.crm.api.email_related_records.Email","name":"Emails","type":"List"},"info":{"structure_name":"com.zoho.crm.api.email_related_records.Info","name":"info","type":"com.zoho.crm.api.email_related_records.Info"}},"com.zoho.crm.api.holidays.GetHolidaysHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.blueprint.Module":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.reschedule_history.ActionHandler":{"classes":["com.zoho.crm.api.reschedule_history.APIException","com.zoho.crm.api.reschedule_history.ActionWrapper"],"interface":true},"com.zoho.crm.api.tags.ResponseWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"},"info":{"structure_name":"com.zoho.crm.api.tags.Info","name":"info","type":"com.zoho.crm.api.tags.Info"}},"com.zoho.crm.api.layouts.SectionSubformField":{"layout":{"structure_name":"com.zoho.crm.api.layouts.MinifiedLayout","name":"layout","type":"com.zoho.crm.api.layouts.MinifiedLayout"},"module_1":{"name":"module","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.users_territories.ActionResponse":{"classes":["com.zoho.crm.api.users_territories.APIException","com.zoho.crm.api.users_territories.SuccessResponse"],"interface":true},"com.zoho.crm.api.users_unavailability.ResponseHandler":{"classes":["com.zoho.crm.api.users_unavailability.ResponseWrapper","com.zoho.crm.api.users_unavailability.APIException"],"interface":true},"com.zoho.crm.api.portal_user_type.Filters":{"display_label":{"name":"display_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variable_groups.APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","BAD_REQUEST","NO_PERMISSION","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.AssociatedPlaces":{"resources":{"name":"resources","sub-type":"String","type":"List"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.UpdateRecordUsingExternalIDHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.field_map_dependency.MapDependency":{"parent":{"structure_name":"com.zoho.crm.api.field_map_dependency.Parent","name":"parent","type":"com.zoho.crm.api.field_map_dependency.Parent"},"internal":{"name":"internal","type":"Boolean"},"sub_module":{"structure_name":"com.zoho.crm.api.field_map_dependency.SubModule","name":"sub_module","type":"com.zoho.crm.api.field_map_dependency.SubModule"},"active":{"name":"active","type":"Boolean"},"id":{"name":"id","type":"Long"},"source":{"name":"source","type":"Integer"},"category":{"name":"category","type":"Integer"},"pick_list_values":{"structure_name":"com.zoho.crm.api.field_map_dependency.PickListMapping","name":"pick_list_values","type":"List"},"child":{"structure_name":"com.zoho.crm.api.field_map_dependency.Child","name":"child","type":"com.zoho.crm.api.field_map_dependency.Child"}},"com.zoho.crm.api.record.DuplicateRecord":{"owner":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Owner","type":"com.zoho.crm.api.users.MinifiedUser"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.user_groups.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.record.ResponseHandler":{"classes":["com.zoho.crm.api.record.ConversionOptionsResponseWrapper","com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.field_map_dependency.UpdateMapDependencyParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.layouts.Profiles":{"defaultassignmentview":{"structure_name":"com.zoho.crm.api.layouts.DefaultAssignmentView","name":"_default_assignment_view","type":"com.zoho.crm.api.layouts.DefaultAssignmentView"},"default":{"name":"default","type":"Boolean"},"defaultview":{"structure_name":"com.zoho.crm.api.layouts.DefaultView","name":"_default_view","type":"com.zoho.crm.api.layouts.DefaultView"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.BodyWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"pipeline","type":"List"}},"com.zoho.crm.api.roles.ActionResponse":{"classes":["com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.SuccessResponse"],"interface":true},"com.zoho.crm.api.territory_users.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record_locking.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record_locking.RecordLock","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record_locking.Info","name":"info","type":"com.zoho.crm.api.record_locking.Info"}},"com.zoho.crm.api.fields.PickListValue":{"display_value":{"name":"display_value","type":"String"},"expected_data_type":{"name":"expected_data_type","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"maps":{"structure_name":"com.zoho.crm.api.fields.Maps","name":"maps","type":"List"},"colour_code":{"name":"colour_code","type":"String"},"probability":{"name":"probability","type":"Integer"},"forecast_category":{"structure_name":"com.zoho.crm.api.fields.ForecastCategory","name":"forecast_category","type":"com.zoho.crm.api.fields.ForecastCategory"},"sys_ref_name":{"name":"sys_ref_name","type":"String"},"actual_value":{"name":"actual_value","type":"String"},"forecast_type":{"name":"forecast_type","type":"String"},"id":{"name":"id","type":"Long"},"type":{"values":["used","unused"],"name":"type","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.ActionWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.ActionResponse","name":"currencies","type":"List"}},"com.zoho.crm.api.appointment_preference.BodyWrapper":{"appointment_preferences":{"structure_name":"com.zoho.crm.api.appointment_preference.AppointmentPreference","name":"appointment_preferences","type":"com.zoho.crm.api.appointment_preference.AppointmentPreference"}},"com.zoho.crm.api.org.Feature":{"name":{"name":"name","type":"String"},"resources":{"structure_name":"com.zoho.crm.api.org.Resource","name":"resources","type":"List"}},"com.zoho.crm.api.shift_hours.GetShiftHoursHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.layouts.DealLayoutMapping":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"fields":{"structure_name":"com.zoho.crm.api.layouts.DealField","name":"fields","type":"List"}},"com.zoho.crm.api.portals.ActionHandler":{"classes":["com.zoho.crm.api.portals.APIException","com.zoho.crm.api.portals.ActionWrapper"],"interface":true},"com.zoho.crm.api.portal_invite.SuccessResponse":{"code":{"values":["SUCCESS","SCHEDULED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"record_id","type":"Long"},{"name":"job_id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variables.APIException":{"code":{"values":["DUPLICATE_DATA","REQUIRED_PARAM_MISSING","JSON_PARSE_ERROR","PATTERN_NOT_MATCHED","INVALID_DATA","MANDATORY_NOT_FOUND","EXPECTED_FIELD_MISSING","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"param_name","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"},{"name":"regex","type":"String"},{"name":"maximum_length","type":"Integer"},{"structure_name":"com.zoho.crm.api.variables.ErrorDetails","name":"expected_fields","type":"List"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.profiles.CategoryModule":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"permissions_details":{"name":"permissions_details","sub-type":"String","type":"List"},"name":{"name":"name","type":"String"}},"com.zoho.crm.api.business_hours.UpdateBusinessHoursHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.appointment_preference.FieldMappings":{"field":{"structure_name":"com.zoho.crm.api.appointment_preference.Field","name":"field","type":"com.zoho.crm.api.appointment_preference.Field"},"type":{"values":["static","merge_field"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.notes.GetNotesParam":{"per_page":{"name":"per_page","type":"String"},"page":{"name":"page","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"fields":{"name":"fields","type":"String","required":true},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.users_unavailability.ActionHandler":{"classes":["com.zoho.crm.api.users_unavailability.ActionWrapper","com.zoho.crm.api.users_unavailability.APIException"],"interface":true},"com.zoho.crm.api.blueprint.BodyWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blueprint.BluePrint","name":"blueprint","type":"List"}},"com.zoho.crm.api.user_groups.AssociationModule":{"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"}},"com.zoho.crm.api.custom_views.SharedTo":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"values":["users","roles","groups","territories"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.timelines.APIException":{"code":{"values":["INVALID_DATA","INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the related id given seems to be invalid","the module name given seems to be invalid","the relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.portal_user_type.ResponseHandler":{"classes":["com.zoho.crm.api.portal_user_type.ResponseWrapper","com.zoho.crm.api.portal_user_type.APIException"],"interface":true},"com.zoho.crm.api.custom_views.Fields":{"pin":{"name":"_pin","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.blueprint.Layout":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.associate_email.Available":{"linked_record":{"structure_name":"com.zoho.crm.api.associate_email.LinkedRecord","name":"linked_record","type":"com.zoho.crm.api.associate_email.LinkedRecord"},"record":{"structure_name":"com.zoho.crm.api.associate_email.Record","name":"record","type":"com.zoho.crm.api.associate_email.Record"},"available":{"name":"available","type":"Boolean"}},"com.zoho.crm.api.tags.GetRecordCountForTagParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.inventory_templates.Folder":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.business_hours.BusinessHoursCreated":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Business Hours saved successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.contact_roles.ActionHandler":{"classes":["com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.ActionWrapper"],"interface":true},"com.zoho.crm.api.custom_views.SortBy":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.MandatoryDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.wizards.GetWizardbyIDParam":{"layout_id":{"name":"layout_id","type":"String","required":true}},"com.zoho.crm.api.record.FileDetails":{"size__s":{"name":"Size__s","type":"String"},"file_name__s":{"name":"File_Name__s","type":"String"},"id":{"name":"id","type":"Long"},"delete":{"name":"_delete","type":"String"},"file_id__s":{"name":"File_Id__s","type":"String"}},"com.zoho.crm.api.notifications.GetNotificationsParam":{"per_page":{"name":"per_page","type":"Integer"},"module_1":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"},"channel_id":{"name":"channel_id","type":"Long"}},"com.zoho.crm.api.mass_change_owner.Territory":{"include_child":{"name":"include_child","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.files.APIException":{"code":{"values":["INVALID_DATA","INVALID_MODULE","VIRUS_DETECTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","failure_in_attachment_handling","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.change_owner.BodyWrapper":{"owner":{"structure_name":"com.zoho.crm.api.change_owner.Owner","name":"owner","type":"com.zoho.crm.api.change_owner.Owner"},"related_modules":{"structure_name":"com.zoho.crm.api.change_owner.RelatedModules","name":"related_modules","type":"List"},"notify":{"name":"notify","type":"Boolean"}},"com.zoho.crm.api.portals_meta.Views":{"display_label":{"name":"display_label","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.layouts.ResponseHandler":{"classes":["com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.layouts.APIException"],"interface":true},"com.zoho.crm.api.holidays.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Holidays created successfully","Holidays updated successfully","Holidays deleted successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.holidays.ActionWrapper":{"holidays":{"structure_name":"com.zoho.crm.api.holidays.ActionResponse","name":"holidays","type":"List"}},"com.zoho.crm.api.roles.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.holidays.APIException":{"code":{"values":["DEPENDENT_FIELD_MISSING","PATTERN_NOT_MATCHED","MANDATORY_NOT_FOUND","DUPLICATE_DATA","INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"}],"name":"dependee","type":"Map"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"regex","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Shift id is required for shift holidays","Please check whether the input values are correct","required field not found","duplicate data","Invalid ID","invalid data"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.roles.ActionHandler":{"classes":["com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ActionWrapper"],"interface":true},"com.zoho.crm.api.portal_user_type.Modules":{"plural_label":{"name":"plural_label","type":"String"},"shared_type":{"values":["private"],"name":"shared_type","type":"com.zoho.crm.api.util.Choice"},"api_name":{"name":"api_name","type":"String"},"permissions":{"structure_name":"com.zoho.crm.api.portal_user_type.Permissions","name":"permissions","type":"com.zoho.crm.api.portal_user_type.Permissions"},"id":{"name":"id","type":"Long"},"filters":{"structure_name":"com.zoho.crm.api.portal_user_type.Filters","name":"filters","type":"List"},"fields":{"structure_name":"com.zoho.crm.api.portal_user_type.Fields","name":"fields","type":"List"},"layouts":{"structure_name":"com.zoho.crm.api.portal_user_type.Layouts","name":"layouts","type":"List"},"views":{"structure_name":"com.zoho.crm.api.portal_user_type.Views","name":"views","type":"com.zoho.crm.api.portal_user_type.Views"}},"com.zoho.crm.api.timelines.ResponseHandler":{"classes":["com.zoho.crm.api.timelines.APIException","com.zoho.crm.api.timelines.ResponseWrapper"],"interface":true},"com.zoho.crm.api.taxes.BodyWrapper":{"org_taxes":{"structure_name":"com.zoho.crm.api.taxes.OrgTax","name":"org_taxes","type":"com.zoho.crm.api.taxes.OrgTax"}},"com.zoho.crm.api.mass_delete_cvid.MassDeleteScheduled":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"job_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["mass delete scheduled successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.BaseCurrencyActionResponse":{"classes":["com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.SuccessResponse"],"interface":true},"com.zoho.crm.api.notes.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notes.Info","name":"info","type":"com.zoho.crm.api.notes.Info"}},"com.zoho.crm.api.portal_user_type.ResponseWrapper":{"user_type":{"structure_name":"com.zoho.crm.api.portal_user_type.UserType","name":"user_type","type":"List"}},"com.zoho.crm.api.shift_hours.ShiftCustomTiming":{"days":{"name":"days","type":"String"},"shift_timing":{"name":"shift_timing","sub-type":"LocalTime","type":"List"}},"com.zoho.crm.api.inventory_templates.ResponseWrapper":{"inventory_templates":{"structure_name":"com.zoho.crm.api.inventory_templates.InventoryTemplate","name":"inventory_templates","type":"List"},"info":{"structure_name":"com.zoho.crm.api.inventory_templates.Info","name":"info","type":"com.zoho.crm.api.inventory_templates.Info"}},"com.zoho.crm.api.territory_users.ResponseWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.Users","name":"users","type":"List"},"info":{"structure_name":"com.zoho.crm.api.territory_users.Info","name":"info","type":"com.zoho.crm.api.territory_users.Info"}},"com.zoho.crm.api.mail_merge.ActionResponse":{"classes":["com.zoho.crm.api.mail_merge.SuccessResponse"],"interface":true},"com.zoho.crm.api.related_lists.GetRelatedListParam":{"layout_id":{"name":"layout_id","type":"Long"},"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.users_unavailability.ResponseWrapper":{"users_unavailability":{"structure_name":"com.zoho.crm.api.users_unavailability.UsersUnavailability","name":"users_unavailability","type":"List"},"info":{"structure_name":"com.zoho.crm.api.users_unavailability.Info","name":"info","type":"com.zoho.crm.api.users_unavailability.Info"}},"com.zoho.crm.api.territories.GetChildTerritoryParam":{"filters":{"name":"filters","type":"String"}},"com.zoho.crm.api.variables.BodyWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","type":"List"}},"com.zoho.crm.api.users_territories.ValidationHandler":{"classes":["com.zoho.crm.api.users_territories.APIException","com.zoho.crm.api.users_territories.ValidationWrapper"],"interface":true},"com.zoho.crm.api.related_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"External_Deal_ID","type":"String"}],"name":"details","type":"Map"},"message":{"values":["relation added","relation removed"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.send_mail.ActionHandler":{"classes":["com.zoho.crm.api.send_mail.ActionWrapper","com.zoho.crm.api.send_mail.APIException"],"interface":true},"com.zoho.crm.api.user_type_users.APIException":{"code":{"values":["INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.MinifiedField":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.mass_convert.AssignTo":{"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.users_unavailability.GetUserUnavailabilityParam":{"include_inner_details":{"values":["user.zuid"],"name":"include_inner_details","type":"String"},"filters":{"name":"filters","type":"String"}},"com.zoho.crm.api.blueprint.ModuleFields":{"api_name":{"name":"api_name","type":"String"},"field_label":{"name":"field_label","type":"String"},"id":{"name":"id","type":"Long"},"required":{"name":"required","type":"Boolean"}},"com.zoho.crm.api.mass_delete_cvid.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["record is deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record_locking.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record_locking.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.record.Record":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"}},"com.zoho.crm.api.variable_groups.ResponseHandler":{"classes":["com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.variable_groups.APIException"],"interface":true},"com.zoho.crm.api.bulk_write.ResponseWrapper":{"classes":["com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.bulk_write.BulkWriteResponse"],"interface":true},"com.zoho.crm.api.notifications.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.users.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","EXPECTED_FIELD_MISSING","INTERNAL_SERVER_ERROR","DUPLICATE_DATA","MAPPING_MISMATCH","PATTERN_NOT_MATCHED","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"expected_data_type","type":"String"},{"name":"regex","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"structure_name":"com.zoho.crm.api.users.ErrorDetails","name":"expected_fields","type":"List"},{"name":"maximum_length","type":"Integer"},{"name":"resource_path_index","type":"Integer"},{"structure_name":"com.zoho.crm.api.users.ErrorDetails","name":"mapped_field","type":"com.zoho.crm.api.users.ErrorDetails"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notifications.DeleteDetails":{"resource_uri":{"name":"resource_uri","type":"String"},"resource_id":{"name":"resource_id","type":"Long"},"channel_id":{"name":"channel_id","type":"String"}},"com.zoho.crm.api.org.CheckinPreferences":{"restricted_event_types":{"name":"restricted_event_types","type":"String"}},"com.zoho.crm.api.attachments.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.attachments.Info","name":"info","type":"com.zoho.crm.api.attachments.Info"}},"com.zoho.crm.api.modules.ModuleFields":{"associated_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"associated_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"webhook":{"name":"webhook","type":"Boolean"},"operation_type":{"structure_name":"com.zoho.crm.api.fields.OperationType","name":"operation_type","type":"com.zoho.crm.api.fields.OperationType"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.Tooltip","name":"tooltip","type":"com.zoho.crm.api.fields.Tooltip"},"type":{"name":"type","type":"String"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"sharing_properties":{"structure_name":"com.zoho.crm.api.modules.SharingProperties","name":"sharing_properties","type":"com.zoho.crm.api.modules.SharingProperties"},"id":{"name":"id","type":"Long"},"filterable":{"name":"filterable","type":"Boolean"},"created_time":{"name":"created_time","type":"DateTime"},"visible":{"name":"visible","type":"Boolean"},"refer_from_field":{"structure_name":"com.zoho.crm.api.fields.ReferFromField","name":"refer_from_field","type":"com.zoho.crm.api.fields.ReferFromField"},"profiles":{"structure_name":"com.zoho.crm.api.fields.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"separator":{"name":"separator","type":"Boolean"},"searchable":{"name":"searchable","type":"Boolean"},"show_type":{"name":"show_type","type":"Integer"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"enable_colour_code":{"name":"enable_colour_code","type":"Boolean"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"virtual_field":{"name":"virtual_field","type":"Boolean"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"created_source":{"name":"created_source","type":"String"},"available_in_user_layout":{"name":"available_in_user_layout","type":"Boolean"},"allowed_modules":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"allowed_modules","type":"List"},"display_type":{"name":"display_type","type":"Integer"},"ui_type":{"name":"ui_type","type":"Integer"},"modified_time":{"name":"modified_time","type":"DateTime"},"file_upolad_optionlist":{"structure_name":"com.zoho.crm.api.fields.FileUpoladOption","name":"file_upolad_optionlist","type":"List"},"quick_sequence_number":{"name":"quick_sequence_number","type":"String"},"email_parser":{"structure_name":"com.zoho.crm.api.fields.EmailParser","name":"email_parser","type":"com.zoho.crm.api.fields.EmailParser"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"multiuserlookup":{"structure_name":"com.zoho.crm.api.fields.Multiselectlookup","name":"multiuserlookup","type":"com.zoho.crm.api.fields.Multiselectlookup"},"lookup":{"structure_name":"com.zoho.crm.api.modules.ModuleFieldLookup","name":"lookup","type":"com.zoho.crm.api.modules.ModuleFieldLookup"},"hipaa_compliance":{"structure_name":"com.zoho.crm.api.fields.HipaaCompliance","name":"hipaa_compliance","type":"com.zoho.crm.api.fields.HipaaCompliance"},"custom_field":{"name":"custom_field","type":"Boolean"},"convert_mapping":{"structure_name":"com.zoho.crm.api.fields.ConvertMapping","name":"convert_mapping","type":"com.zoho.crm.api.fields.ConvertMapping"},"rollup_summary":{"structure_name":"com.zoho.crm.api.fields.RollupSummary","name":"rollup_summary","type":"com.zoho.crm.api.fields.RollupSummary"},"length":{"values":[120],"name":"length","type":"com.zoho.crm.api.util.Choice"},"column_name":{"name":"column_name","type":"String"},"default_value":{"name":"default_value","type":"String"},"display_field":{"name":"display_field","type":"Boolean"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"sortable":{"name":"sortable","type":"Boolean"},"sequence_number":{"name":"sequence_number","type":"Integer"},"global_picklist":{"name":"global_picklist","type":"Object"},"history_tracking":{"structure_name":"com.zoho.crm.api.fields.HistoryTracking","name":"history_tracking","type":"com.zoho.crm.api.fields.HistoryTracking"},"data_type":{"values":["formula","text","boolean","picklist","datetime","website","autonumber","textarea","email","phone","integer","double","date","formula","text","boolean","picklist","datetime","website","autonumber","textarea","lookup","email","userlookup","phone","integer","double","date"],"name":"data_type","type":"com.zoho.crm.api.util.Choice"},"sub_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"sub_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"additional_column":{"name":"additional_column","type":"String"},"hipaa_compliance_enabled":{"name":"hipaa_compliance_enabled","type":"Boolean"},"category":{"name":"category","type":"Integer"},"decimal_place":{"name":"decimal_place","type":"Integer"},"mass_update":{"name":"mass_update","type":"Boolean"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.Multiselectlookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.Multiselectlookup"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.deal_contact_roles.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.holidays.GetHolidaysParam":{"year":{"name":"year","type":"Integer"},"shift_id":{"name":"shift_id","type":"Long"},"type":{"values":["business_holiday","shift_holiday"],"name":"type","type":"String"}},"com.zoho.crm.api.fields.ShowFields":{"field":{"structure_name":"com.zoho.crm.api.fields.MinifiedField","name":"field","type":"com.zoho.crm.api.fields.MinifiedField"},"show_data":{"name":"show_data","type":"Boolean"}},"com.zoho.crm.api.notifications.ActionWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notifications.ActionResponse","name":"watch","type":"List"}},"com.zoho.crm.api.territory_users.BodyWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.Users","name":"users","type":"List"}},"com.zoho.crm.api.email_related_records.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.GetRelatedRecordsUsingExternalIDParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.org.ActionHandler":{"classes":["com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.privacy_configurable_apps.Wrapper":{"privacy_configurable_apps":{"structure_name":"com.zoho.crm.api.privacy_configurable_apps.Apps","name":"privacy_configurable_apps","type":"List"}},"com.zoho.crm.api.bulk_read.RequestWrapper":{"file_type":{"values":["ics","csv"],"name":"file_type","type":"com.zoho.crm.api.util.Choice"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query"},"callback":{"structure_name":"com.zoho.crm.api.bulk_read.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_read.CallBack"}},"com.zoho.crm.api.download_inline_images.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.send_mail.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"message_id","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record_locking.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"duplicate_field":{"name":"duplicate_field","type":"String"},"action":{"values":["insert","update"],"name":"action","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"String"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"}],"name":"details","type":"Map"},"message":{"values":["The record has been converted successfully","record updated","record deleted","record added","photo uploaded successfully","Photo deleted","the territories data updated successfully","the territories are removed successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.mail_merge.MailMergeTemplate":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.MassUpdateResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdate"],"interface":true},"com.zoho.crm.api.share_records.ActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ActionResponse","name":"share","type":"List"}},"com.zoho.crm.api.territory_users.APIException":{"code":{"values":["INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"owner_status","type":"String"},{"name":"id","type":"Long"},{"name":"resource_path_index","type":"Integer"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.ResponseHandler":{"classes":["com.zoho.crm.api.modules.ResponseWrapper","com.zoho.crm.api.modules.APIException"],"interface":true},"com.zoho.crm.api.org.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.org.Org":{"country":{"name":"country","type":"String"},"hierarchy_preferences":{"structure_name":"com.zoho.crm.api.org.HierarchyPreferences","name":"hierarchy_preferences","type":"com.zoho.crm.api.org.HierarchyPreferences"},"max_per_page":{"name":"max_per_page","type":"Integer"},"photo_id":{"name":"photo_id","type":"String"},"city":{"name":"city","type":"String"},"description":{"name":"description","type":"String"},"mc_status":{"name":"mc_status","type":"Boolean"},"gapps_enabled":{"name":"gapps_enabled","type":"Boolean"},"lite_users_enabled":{"name":"lite_users_enabled","type":"Boolean"},"domain_name":{"name":"domain_name","type":"String"},"translation_enabled":{"name":"translation_enabled","type":"Boolean"},"street":{"name":"street","type":"String"},"currency":{"name":"currency","type":"String"},"deletable_org_account":{"name":"deletable_org_account","type":"Boolean"},"id":{"name":"id","type":"String"},"state":{"name":"state","type":"String"},"call_icon":{"name":"call_icon","type":"String"},"fax":{"name":"fax","type":"String"},"zip":{"name":"zip","type":"String"},"employee_count":{"regex":"[0-9]+","name":"employee_count","max-length":18,"type":"String"},"website":{"regex":"www[.][a-z0-9]+[.][a-z]{3}","name":"website","type":"String"},"zia_zgid":{"name":"zia_zgid","type":"Integer"},"currency_symbol":{"name":"currency_symbol","type":"String"},"ezgid":{"name":"ezgid","type":"String"},"oauth_presence":{"name":"oauth_presence","type":"Boolean"},"mobile":{"name":"mobile","type":"String"},"currency_locale":{"name":"currency_locale","type":"String"},"primary_zuid":{"name":"primary_zuid","type":"String"},"zia_portal_id":{"name":"zia_portal_id","type":"String"},"time_zone":{"name":"time_zone","type":"TimeZone"},"checkin_preferences":{"structure_name":"com.zoho.crm.api.org.CheckinPreferences","name":"checkin_preferences","type":"com.zoho.crm.api.org.CheckinPreferences"},"zgid":{"name":"zgid","type":"String"},"country_code":{"name":"country_code","type":"String"},"license_details":{"structure_name":"com.zoho.crm.api.org.LicenseDetails","name":"license_details","type":"com.zoho.crm.api.org.LicenseDetails"},"phone":{"name":"phone","type":"String"},"company_name":{"name":"company_name","type":"String"},"privacy_settings":{"name":"privacy_settings","type":"Boolean"},"primary_email":{"name":"primary_email","type":"String"},"iso_code":{"name":"iso_code","type":"String"},"hipaa_compliance_enabled":{"name":"hipaa_compliance_enabled","type":"Boolean"},"alias_1":{"name":"alias","type":"String"}},"com.zoho.crm.api.pipeline.Delete":{"permanent":{"name":"permanent","type":"Boolean"}},"com.zoho.crm.api.files.ActionResponse":{"classes":["com.zoho.crm.api.files.SuccessResponse"],"interface":true},"com.zoho.crm.api.portal_invite.Portal":{"user_type_id":{"name":"user_type_id","type":"Long"},"language":{"values":["en_US","en_GB","bg_BG","zh_CN","zh_TW","hr_HR","ar_EG","in_ID","cs_CZ","da_DK","nl_NL","fr_FR","de_DE","hu_HU","","hi_IN","it_IT","ja_JP","pl_PL","pt_BR","pt_PT","ru_RU","es_ES","sv_SE","th_TH","tr_TR","vi_VN","ko_KR","iw_IL"],"name":"language","type":"com.zoho.crm.api.util.Choice"},"id":{"name":"id","type":"Long"},"type":{"values":["invite","reinvite"],"name":"type","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.Module":{"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.appointment_preference.ActionResponse":{"classes":["com.zoho.crm.api.appointment_preference.APIException","com.zoho.crm.api.appointment_preference.SuccessResponse"],"interface":true},"com.zoho.crm.api.associate_email.ActionResponse":{"classes":["com.zoho.crm.api.associate_email.SuccessResponse","com.zoho.crm.api.associate_email.APIException"],"interface":true},"com.zoho.crm.api.field_map_dependency.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.shift_hours.DeleteShiftHourHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.org.Resource":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.wizards.Node":{"pos_y":{"name":"pos_y","type":"Integer"},"pos_x":{"name":"pos_x","type":"Integer"},"start_node":{"name":"start_node","type":"Boolean"},"screen":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"screen","type":"com.zoho.crm.api.wizards.Screen"}},"com.zoho.crm.api.users.BodyWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.Users","name":"users","type":"List"}},"com.zoho.crm.api.attachments.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.attachments.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.territories.DeletedAssociatedWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.DeletedAssociatedTerritories","name":"territories","type":"List"},"info":{"structure_name":"com.zoho.crm.api.territories.Info","name":"info","type":"com.zoho.crm.api.territories.Info"}},"com.zoho.crm.api.change_owner.MassWrapper":{"owner":{"structure_name":"com.zoho.crm.api.change_owner.Owner","name":"owner","type":"com.zoho.crm.api.change_owner.Owner"},"related_modules":{"structure_name":"com.zoho.crm.api.change_owner.RelatedModules","name":"related_modules","type":"List"},"ids":{"name":"ids","sub-type":"Integer","type":"List"},"notify":{"name":"notify","type":"Boolean"}},"com.zoho.crm.api.layouts.ResponseWrapper":{"layouts":{"structure_name":"com.zoho.crm.api.layouts.Layouts","name":"layouts","type":"List"}},"com.zoho.crm.api.layouts.DefaultAssignmentView":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.shift_hours.ResponseWrapper":{"shift_count":{"structure_name":"com.zoho.crm.api.shift_hours.ShiftCount","name":"shift_count","type":"com.zoho.crm.api.shift_hours.ShiftCount"},"shift_hours":{"structure_name":"com.zoho.crm.api.shift_hours.ShiftHours","name":"shift_hours","type":"List"}},"com.zoho.crm.api.shift_hours.ResponseHandler":{"classes":["com.zoho.crm.api.shift_hours.APIException","com.zoho.crm.api.shift_hours.ResponseWrapper"],"interface":true},"com.zoho.crm.api.bulk_read.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice"},"url":{"name":"url","type":"String"}},"com.zoho.crm.api.mass_change_owner.CheckStatusParam":{"job_id":{"name":"job_id","type":"Long","required":true}},"com.zoho.crm.api.change_owner.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.change_owner.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.modules.Argument":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.deal_contact_roles.ResponseHandler":{"classes":["com.zoho.crm.api.deal_contact_roles.BodyWrapper","com.zoho.crm.api.deal_contact_roles.APIException"],"interface":true},"com.zoho.crm.api.custom_views.APIException":{"code":{"values":["INVALID_DATA","REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","EXPECTED_FIELD_MISSING","DUPLICATE_DATA","INVALID_MODULE","INTERNAL_SERVER_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"name":"id","type":"Long"},{"name":"expected_data_type","type":"String"},{"name":"regex","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"param_name","type":"String"},{"structure_name":"com.zoho.crm.api.custom_views.ErrorDetails","name":"expected_fields","type":"List"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.GetRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.tags.CountResponseWrapper":{"count":{"name":"count","type":"String"}},"com.zoho.crm.api.bulk_write.FieldMapping":{"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"format":{"name":"format","type":"String"},"find_by":{"name":"find_by","type":"String"},"index":{"name":"index","type":"Integer"},"default_value":{"structure_name":"com.zoho.crm.api.bulk_write.DefaultValue","name":"default_value","type":"com.zoho.crm.api.bulk_write.DefaultValue"}},"com.zoho.crm.api.users.Users":{"country":{"name":"country","type":"String"},"name_format__s":{"values":["Salutation,First Name,Last Name","Saluation,Last Name,First Name","First Name,Last Name,Saluation"],"name":"name_format__s","type":"com.zoho.crm.api.util.Choice"},"language":{"name":"language","type":"String"},"reporting_to":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Reporting_To","type":"com.zoho.crm.api.users.MinifiedUser"},"created_time_9":{"name":"Created_Time","type":"DateTime"},"microsoft":{"name":"microsoft","type":"Boolean"},"sandboxdeveloper":{"name":"sandboxDeveloper","type":"Boolean"},"isonline":{"name":"Isonline","type":"Boolean"},"id":{"name":"id","type":"Long"},"state":{"name":"state","type":"String"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"fax":{"name":"fax","type":"String"},"country_locale":{"name":"country_locale","type":"String"},"imap_status":{"name":"imap_status","type":"Boolean"},"zip":{"name":"zip","type":"String"},"decimal_separator":{"values":["Comma","Period"],"name":"decimal_separator","type":"com.zoho.crm.api.util.Choice"},"created_by_17":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"created_time":{"name":"created_time","type":"DateTime"},"current_shift":{"structure_name":"com.zoho.crm.api.users.Shift","name":"$current_shift","type":"com.zoho.crm.api.users.Shift"},"time_format":{"values":["HH:mm","hh:mm a"],"name":"time_format","type":"com.zoho.crm.api.util.Choice"},"image_link":{"name":"image_link","type":"String"},"offset":{"name":"offset","type":"Integer"},"next_shift":{"structure_name":"com.zoho.crm.api.users.Shift","name":"$next_shift","type":"com.zoho.crm.api.users.Shift"},"profile":{"structure_name":"com.zoho.crm.api.users.Profile","name":"profile","type":"com.zoho.crm.api.users.Profile"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"zuid":{"name":"zuid","type":"String"},"ezuid":{"name":"ezuid","type":"String"},"full_name":{"name":"full_name","type":"String"},"phone":{"name":"phone","type":"String"},"dob":{"name":"dob","type":"Date"},"name":{"name":"name","type":"String"},"sort_order_preference__s":{"name":"sort_order_preference__s","type":"String"},"status":{"name":"status","type":"String"},"role":{"structure_name":"com.zoho.crm.api.users.Role","name":"role","type":"com.zoho.crm.api.users.Role"},"customize_info":{"structure_name":"com.zoho.crm.api.users.CustomizeInfo","name":"customize_info","type":"com.zoho.crm.api.users.CustomizeInfo"},"city":{"name":"city","type":"String"},"signature":{"name":"signature","type":"String"},"sort_order_preference":{"name":"sort_order_preference","type":"String"},"shift_effective_from":{"name":"$shift_effective_from","type":"Object"},"locale":{"name":"locale","type":"String"},"personal_account":{"name":"personal_account","type":"Boolean"},"ntc_notification_type":{"name":"ntc_notification_type","sub-type":"Integer","type":"List"},"default_tab_group":{"name":"default_tab_group","type":"String"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"street":{"name":"street","type":"String"},"currency":{"name":"Currency","type":"String"},"theme":{"structure_name":"com.zoho.crm.api.users.Theme","name":"theme","type":"com.zoho.crm.api.users.Theme"},"first_name":{"regex":"[A-Za-z0-9]","name":"first_name","max-length":50,"type":"String"},"email":{"regex":"[a-z0-9]{9}[@][a-z0-9]{5}[.]com","name":"email","type":"String"},"telephony_enabled":{"name":"telephony_enabled","type":"Boolean"},"status_reason__s":{"name":"status_reason__s","type":"String"},"website":{"regex":"[a-z0-9]{5}[.]com","name":"website","type":"String"},"mobile":{"name":"mobile","type":"String"},"last_name":{"regex":"[A-Za-z0-9]","name":"last_name","max-length":50,"type":"String"},"number_separator":{"values":["Space"],"name":"number_separator","type":"com.zoho.crm.api.util.Choice"},"time_zone":{"name":"time_zone","type":"TimeZone"},"confirm":{"name":"confirm","type":"Boolean"},"rtl_enabled":{"name":"rtl_enabled","type":"Boolean"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"date_format":{"values":["MMM d, yyyy"],"name":"date_format","type":"com.zoho.crm.api.util.Choice"},"category":{"name":"category","type":"String"},"ntc_enabled":{"name":"ntc_enabled","type":"Boolean"},"alias_1":{"name":"alias","type":"String"}},"com.zoho.crm.api.contact_roles.ActionWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ActionResponse","name":"contact_roles","type":"List"}},"com.zoho.crm.api.record.ConversionOption":{"module_preference":{"structure_name":"com.zoho.crm.api.modules.Modules","name":"module_preference","type":"com.zoho.crm.api.modules.Modules"},"deals":{"structure_name":"com.zoho.crm.api.record.Record","name":"Deals","type":"List"},"accounts":{"structure_name":"com.zoho.crm.api.record.Record","name":"Accounts","type":"List"},"preference_field_matched_value":{"structure_name":"com.zoho.crm.api.record.PreferenceFieldMatchedValue","name":"preference_field_matched_value","type":"com.zoho.crm.api.record.PreferenceFieldMatchedValue"},"contacts":{"structure_name":"com.zoho.crm.api.record.Record","name":"Contacts","type":"List"},"modules_with_multiple_layouts":{"structure_name":"com.zoho.crm.api.modules.Modules","name":"modules_with_multiple_layouts","type":"List"}},"com.zoho.crm.api.users_transfer_delete.GetStatusParam":{"job_id":{"name":"job_id","type":"Long","required":true}},"com.zoho.crm.api.modules.BodyWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Modules","name":"modules","type":"List"}},"com.zoho.crm.api.users_territories.BulkValidation":{"alert":{"name":"alert","type":"Boolean"},"assignment":{"name":"assignment","type":"Boolean"},"criteria":{"name":"criteria","type":"Boolean"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.timelines.State":{"trigger_type":{"name":"trigger_type","type":"String"},"name":{"name":"name","type":"String"},"is_last_state":{"name":"is_last_state","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.wizards.Actions":{"exempted_profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"exempted_profiles","type":"List"},"segment":{"structure_name":"com.zoho.crm.api.wizards.Segment","name":"segment","type":"com.zoho.crm.api.wizards.Segment"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Fields","name":"fields","type":"com.zoho.crm.api.fields.Fields"},"value":{"name":"value","type":"Object"}},"com.zoho.crm.api.blueprint.ResponseHandler":{"classes":["com.zoho.crm.api.blueprint.ResponseWrapper","com.zoho.crm.api.blueprint.APIException"],"interface":true},"com.zoho.crm.api.portal_user_type.Owner":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.ConvertMapping":{"deals":{"name":"Deals","type":"String"},"accounts":{"name":"Accounts","type":"String"},"contacts":{"name":"Contacts","type":"String"}},"com.zoho.crm.api.timelines.ResponseWrapper":{"timeline":{"structure_name":"com.zoho.crm.api.timelines.Timeline","name":"__timeline","type":"List"},"info":{"structure_name":"com.zoho.crm.api.timelines.Info","name":"info","type":"com.zoho.crm.api.timelines.Info"}},"com.zoho.crm.api.notifications.APIException":{"code":{"values":["NOT_SUBSCRIBED","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.user_groups.ActionHandler":{"classes":["com.zoho.crm.api.user_groups.ActionWrapper","com.zoho.crm.api.user_groups.APIException"],"interface":true},"com.zoho.crm.api.users_unavailability.ActionWrapper":{"users_unavailability":{"structure_name":"com.zoho.crm.api.users_unavailability.ActionResponse","name":"users_unavailability","type":"List"}},"com.zoho.crm.api.record.MassUpdateResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateResponse","name":"data","type":"List"}},"com.zoho.crm.api.user_groups.GetGroupsParam":{"include":{"name":"include","type":"String"},"per_page":{"name":"per_page","type":"String"},"name":{"name":"name","type":"String"},"page":{"name":"page","type":"String"}},"com.zoho.crm.api.privacy_preference.Tpt":{"name":{"name":"name","type":"String"},"issupported":{"name":"isSupported","type":"String"},"isenabled":{"name":"isEnabled","type":"String"}},"com.zoho.crm.api.inventory_templates.ResponseHandler":{"classes":["com.zoho.crm.api.inventory_templates.APIException","com.zoho.crm.api.inventory_templates.ResponseWrapper"],"interface":true},"com.zoho.crm.api.modules.ResponseWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.Modules","name":"modules","type":"List"}},"com.zoho.crm.api.record_locking.RecordLock":{"locked_reason__s":{"name":"locked_reason__s","type":"String"},"created_time":{"name":"Created_Time","type":"DateTime"},"record_locking_rule_id__s":{"name":"record_locking_rule_id__s","type":"Long"},"lock_source__s":{"values":["Manual","Automatic"],"name":"lock_source__s","type":"com.zoho.crm.api.util.Choice"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"locked_time__s":{"name":"Locked_time__s","type":"String"},"record_locking_configuration_id__s":{"name":"record_locking_configuration_id__s","type":"Long"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"locked_for_s":{"structure_name":"com.zoho.crm.api.record_locking.LockedForS","name":"locked_for_s","type":"com.zoho.crm.api.record_locking.LockedForS"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"locked_by__s":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"locked_by__s","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"}},"com.zoho.crm.api.share_records.ActionHandler":{"classes":["com.zoho.crm.api.share_records.ActionWrapper","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.privacy_configurable_apps.Apps":{"name":{"name":"name","type":"String"}},"com.zoho.crm.api.wizards.Container":{"layout":{"structure_name":"com.zoho.crm.api.layouts.Layouts","name":"layout","type":"com.zoho.crm.api.layouts.Layouts"},"chart_data":{"structure_name":"com.zoho.crm.api.wizards.ChartData","name":"chart_data","type":"com.zoho.crm.api.wizards.ChartData"},"screens":{"structure_name":"com.zoho.crm.api.wizards.Screen","name":"screens","type":"List"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.GetRecordParam":{"cvid":{"name":"cvid","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"on_demand_properties":{"name":"on_demand_properties","type":"String"},"fields":{"name":"fields","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.scoring_rules.ResponseHandler":{"classes":["com.zoho.crm.api.scoring_rules.APIException","com.zoho.crm.api.scoring_rules.ResponseWrapper"],"interface":true},"com.zoho.crm.api.attachments.ActionResponse":{"classes":["com.zoho.crm.api.attachments.SuccessResponse"],"interface":true},"com.zoho.crm.api.email_related_records.Attachments":{"size":{"name":"size","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.record.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.territory_users.ResponseHandler":{"classes":["com.zoho.crm.api.territory_users.APIException","com.zoho.crm.api.territory_users.ResponseWrapper"],"interface":true},"com.zoho.crm.api.field_map_dependency.GetMapDependenciesParam":{"per_page":{"values":[-1,0,1,2],"name":"per_page","type":"Integer"},"layout_id":{"name":"layout_id","type":"Long"},"module_1":{"name":"module","type":"String"},"page":{"values":[-1,0,1],"name":"page","type":"Integer"},"filters":{"values":["Leads"],"name":"filters","type":"String"}},"com.zoho.crm.api.related_lists.ResponseWrapper":{"related_lists":{"structure_name":"com.zoho.crm.api.related_lists.RelatedList","name":"related_lists","type":"List"}},"com.zoho.crm.api.users_territories.Validation":{"records":{"name":"records","type":"Boolean"},"name":{"name":"Name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.bulk_read.Query":{"cvid":{"name":"cvid","type":"Long"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"criteria":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"criteria","type":"com.zoho.crm.api.bulk_read.Criteria"},"file_type":{"values":["ics"],"name":"file_type","type":"com.zoho.crm.api.util.Choice"},"page":{"regex":"[0-9]|[1-4][0-9]|50","name":"page","type":"Integer"},"fields":{"name":"fields","sub-type":"String","type":"List"}},"com.zoho.crm.api.email_compose_meta.DataMap":{"mergefieldsdata":{"name":"mergeFieldsData","type":"String"},"features_available":{"structure_name":"com.zoho.crm.api.email_compose_meta.FeaturesAvailable","name":"features_available","type":"com.zoho.crm.api.email_compose_meta.FeaturesAvailable"},"relay_domains":{"name":"relay_domains","sub-type":"Object","type":"List"},"user":{"structure_name":"com.zoho.crm.api.email_compose_meta.User","name":"user","type":"com.zoho.crm.api.email_compose_meta.User"},"from_address":{"structure_name":"com.zoho.crm.api.email_compose_meta.FromAddress","name":"from_address","type":"List"},"default_from":{"structure_name":"com.zoho.crm.api.email_compose_meta.DefaultForm","name":"default_from","type":"com.zoho.crm.api.email_compose_meta.DefaultForm"}},"com.zoho.crm.api.mass_convert.ActionResponse":{"classes":["com.zoho.crm.api.mass_convert.APIException","com.zoho.crm.api.mass_convert.SuccessResponse"],"interface":true},"com.zoho.crm.api.fields.ResponseHandler":{"classes":["com.zoho.crm.api.fields.APIException","com.zoho.crm.api.fields.BodyWrapper"],"interface":true},"com.zoho.crm.api.appointment_preference.GetAppointmentPreferenceParam":{"include":{"values":["deal_record_configuration"],"name":"include","type":"String"}},"com.zoho.crm.api.field_map_dependency.DeleteMapDependencyParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.users_transfer_delete.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"jobId","type":"String"}],"name":"details","type":"Map"},"message":{"values":["User added","User updated","User deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record_locking.ResponseHandler":{"classes":["com.zoho.crm.api.record_locking.APIException","com.zoho.crm.api.record_locking.ResponseWrapper"],"interface":true},"com.zoho.crm.api.custom_views.ActionResponse":{"classes":["com.zoho.crm.api.custom_views.APIException","com.zoho.crm.api.custom_views.SuccessResponse"],"interface":true},"com.zoho.crm.api.portal_invite.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","REQUIRED_PARAM_MISSING","INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"regex","type":"String"},{"name":"param","type":"String"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.mail_merge.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","INVALID_DATA"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"supported_values","sub-type":"String","type":"List"},{"name":"regex","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Theme":{"normal_tab":{"structure_name":"com.zoho.crm.api.users.Tab","name":"normal_tab","type":"com.zoho.crm.api.users.Tab"},"selected_tab":{"structure_name":"com.zoho.crm.api.users.Tab","name":"selected_tab","type":"com.zoho.crm.api.users.Tab"},"new_background":{"name":"new_background","type":"String"},"background":{"values":["#F3F0EB"],"name":"background","type":"com.zoho.crm.api.util.Choice"},"screen":{"values":["fixed"],"name":"screen","type":"com.zoho.crm.api.util.Choice"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.ActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.SuccessResponse"],"interface":true},"com.zoho.crm.api.privacy_preference.Wrapper":{"privacypreference":{"structure_name":"com.zoho.crm.api.privacy_preference.PrivacyPreference","name":"privacyPreference","type":"List"}},"com.zoho.crm.api.appointment_preference.ResponseWrapper":{"appointment_preferences":{"structure_name":"com.zoho.crm.api.appointment_preference.AppointmentPreference","name":"appointment_preferences","type":"com.zoho.crm.api.appointment_preference.AppointmentPreference"}},"com.zoho.crm.api.record_locking.ActionHandler":{"classes":["com.zoho.crm.api.record_locking.ActionWrapper","com.zoho.crm.api.record_locking.APIException"],"interface":true},"com.zoho.crm.api.currencies.ErrorDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.portal_user_type.UserType":{"created_time":{"name":"created_time","type":"DateTime"},"default":{"name":"default","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"personality_module":{"structure_name":"com.zoho.crm.api.portal_user_type.PersonalityModule","name":"personality_module","type":"com.zoho.crm.api.portal_user_type.PersonalityModule"},"modified_by":{"structure_name":"com.zoho.crm.api.portal_user_type.Owner","name":"modified_by","type":"com.zoho.crm.api.portal_user_type.Owner"},"name":{"name":"name","type":"String"},"active":{"name":"active","type":"Boolean"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.portal_user_type.Owner","name":"created_by","type":"com.zoho.crm.api.portal_user_type.Owner"},"no_of_users":{"name":"no_of_users","type":"Integer"},"modules":{"structure_name":"com.zoho.crm.api.portal_user_type.Modules","name":"modules","type":"List"}},"com.zoho.crm.api.pipeline.Pipeline":{"display_value":{"name":"display_value","max-length":120,"type":"String"},"parent":{"structure_name":"com.zoho.crm.api.pipeline.Pipeline","name":"parent","type":"com.zoho.crm.api.pipeline.Pipeline"},"default":{"name":"default","type":"Boolean"},"maps":{"structure_name":"com.zoho.crm.api.pipeline.Maps","name":"maps","type":"List"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long"},"child_available":{"name":"child_available","type":"Boolean"}},"com.zoho.crm.api.related_records.APIException":{"code":{"values":["NO_PERMISSION","CANNOT_BE_UPDATED","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR","BAD_REQUEST","OAUTH_SCOPE_MISMATCH","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","sub-type":"String","type":"List"},{"name":"id","type":"Long"},{"name":"param_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid data","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.user_groups.GetSourcesParam":{"per_page":{"name":"per_page","type":"String"},"user_type":{"name":"user_type","type":"String"},"page":{"name":"page","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.service_preference.ActionWrapper":{"service_preferences":{"structure_name":"com.zoho.crm.api.service_preference.ActionResponse","name":"service_preferences","interface":true,"type":"com.zoho.crm.api.service_preference.ActionResponse"}},"com.zoho.crm.api.holidays.UpdateHolidayHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.email_compose_meta.FromAddress":{"default":{"values":[true],"name":"default","type":"com.zoho.crm.api.util.Choice"},"user_name":{"name":"user_name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.portal_user_type.Views":{"display_label":{"name":"display_label","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.DeletedRecord":{"deleted_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"deleted_by","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"Long"},"display_name":{"name":"display_name","type":"String"},"type":{"name":"type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"deleted_time":{"name":"deleted_time","type":"DateTime"}},"com.zoho.crm.api.cancel_meetings.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"expected_data_type","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"id","type":"Long"},{"name":"reason","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_write.DefaultValue":{"module_1":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"value":{"name":"value","type":"Object"}},"com.zoho.crm.api.users.GetUsersParam":{"per_page":{"name":"per_page","type":"Integer"},"ids":{"name":"ids","type":"String"},"page":{"name":"page","type":"Integer"},"type":{"values":["ActiveUsers","DeactiveUsers","NotConfirmedUsers","ConfirmedUsers","CurrentUser","ActiveConfirmedUsers"],"name":"type","type":"String"}},"com.zoho.crm.api.taxes.ResponseHandler":{"classes":["com.zoho.crm.api.taxes.ResponseWrapper","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.holidays.UpdateHolidaysHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.modules.SharingProperties":{"scheduler_status":{"name":"scheduler_status","type":"String"},"share_permission":{"values":["full-access","read-write","read-only"],"name":"share_permission","type":"com.zoho.crm.api.util.Choice"},"share_preference_enabled":{"name":"share_preference_enabled","type":"Boolean"}},"com.zoho.crm.api.email_compose_meta.Data":{"data":{"structure_name":"com.zoho.crm.api.email_compose_meta.DataMap","name":"data","type":"List"}},"com.zoho.crm.api.blueprint.NextTransition":{"name":{"name":"name","type":"String"},"criteria_matched":{"name":"criteria_matched","type":"Boolean"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.portals.ActionWrapper":{"portals":{"structure_name":"com.zoho.crm.api.portals.ActionResponse","name":"portals","type":"List"}},"com.zoho.crm.api.users_territories.TransferActionResponse":{"classes":["com.zoho.crm.api.users_territories.SuccessResponse"],"interface":true},"com.zoho.crm.api.attachments.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"name":"Created_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.attachments.Owner","name":"Modified_By","type":"com.zoho.crm.api.attachments.Owner"},{"structure_name":"com.zoho.crm.api.attachments.Owner","name":"Created_By","type":"com.zoho.crm.api.attachments.Owner"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variables.ResponseHandler":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.ResponseWrapper"],"interface":true},"com.zoho.crm.api.email_sharing.GetEmailSharing":{"share_from_users":{"structure_name":"com.zoho.crm.api.email_sharing.ShareFromUser","name":"share_from_users","type":"List"},"available_types":{"name":"available_types","sub-type":"String","type":"List"}},"com.zoho.crm.api.attachments.DeleteAttachmentsParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.fields.GetFieldParam":{"include":{"values":["allowed_permissions_to_update"],"name":"include","type":"String"},"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.mass_delete_cvid.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.mass_delete_cvid.Status","name":"data","type":"List"}},"com.zoho.crm.api.variables.ErrorDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.bulk_read.JobDetail":{"result":{"structure_name":"com.zoho.crm.api.bulk_read.Result","name":"result","type":"com.zoho.crm.api.bulk_read.Result"},"created_time":{"name":"created_time","type":"DateTime"},"file_type":{"values":["csv"],"name":"file_type","type":"com.zoho.crm.api.util.Choice"},"query":{"structure_name":"com.zoho.crm.api.bulk_read.Query","name":"query","type":"com.zoho.crm.api.bulk_read.Query"},"id":{"name":"id","type":"String"},"state":{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},"operation":{"name":"operation","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"}},"com.zoho.crm.api.profiles.DefaultView":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.shift_hours.ShiftHours":{"custom_timing":{"structure_name":"com.zoho.crm.api.shift_hours.ShiftCustomTiming","name":"custom_timing","type":"List"},"users_count":{"name":"users_count","type":"Integer"},"holidays":{"structure_name":"com.zoho.crm.api.shift_hours.Holidays","name":"holidays","type":"List"},"daily_timing":{"name":"daily_timing","sub-type":"String","type":"List"},"timezone":{"name":"timezone","type":"TimeZone"},"break_hours":{"structure_name":"com.zoho.crm.api.shift_hours.BreakHours","name":"break_hours","type":"List"},"name":{"name":"name","type":"String"},"shift_days":{"name":"shift_days","sub-type":"String","type":"List"},"same_as_everyday":{"name":"same_as_everyday","type":"Boolean"},"id":{"name":"id","type":"Long"},"users":{"structure_name":"com.zoho.crm.api.shift_hours.Users","name":"users","type":"List"}},"com.zoho.crm.api.reschedule_history.User":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.roles.ResponseWrapper":{"roles":{"structure_name":"com.zoho.crm.api.roles.Role","name":"roles","type":"List"}},"com.zoho.crm.api.related_records.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.territory_users.DeassociateTerritoryUsersParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.territories.TransferTerritory":{"transfer_to_id":{"name":"transfer_to_id","type":"Long"},"delete_previous_forecasts":{"name":"delete_previous_forecasts","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.field_map_dependency.SubModule":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"name":"field","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"lookup":true,"structure_name":"com.zoho.crm.api.record.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.share_records.DeleteActionHandler":{"classes":["com.zoho.crm.api.share_records.DeleteActionWrapper","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.record.Participants":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"name":{"name":"name","type":"String"},"invited":{"name":"invited","type":"Boolean"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"type":{"name":"type","type":"String"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"email":{"name":"Email","type":"String"},"participant":{"name":"participant","type":"String"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.portal_user_type.PersonalityModule":{"plural_label":{"name":"plural_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variables.DeleteVariablesParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.service_preference.BodyWrapper":{"service_preferences":{"structure_name":"com.zoho.crm.api.service_preference.ServicePreference","name":"service_preferences","type":"com.zoho.crm.api.service_preference.ServicePreference"}},"com.zoho.crm.api.fields.OperationType":{"web_update":{"name":"web_update","type":"Boolean"},"api_create":{"name":"api_create","type":"Boolean"},"web_create":{"name":"web_create","type":"Boolean"},"api_update":{"name":"api_update","type":"Boolean"}},"com.zoho.crm.api.assignment_rules.ResponseWrapper":{"assignment_rules":{"structure_name":"com.zoho.crm.api.assignment_rules.AssignmentRules","name":"assignment_rules","type":"List"}},"com.zoho.crm.api.users_transfer_delete.TransferAndDelete":{"move_subordinate":{"structure_name":"com.zoho.crm.api.users_transfer_delete.MoveSubordinate","name":"move_subordinate","type":"com.zoho.crm.api.users_transfer_delete.MoveSubordinate"},"transfer":{"structure_name":"com.zoho.crm.api.users_transfer_delete.Transfer","name":"transfer","type":"com.zoho.crm.api.users_transfer_delete.Transfer"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.territories.ResponseHandler":{"classes":["com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ResponseWrapper","com.zoho.crm.api.territories.AssociatedUsersCountWrapper"],"interface":true},"com.zoho.crm.api.record.GetDeletedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.blueprint.BluePrint":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"com.zoho.crm.api.record.Record"},"process_info":{"structure_name":"com.zoho.crm.api.blueprint.ProcessInfo","name":"process_info","type":"com.zoho.crm.api.blueprint.ProcessInfo"},"transition_id":{"name":"transition_id","type":"String"},"transitions":{"structure_name":"com.zoho.crm.api.blueprint.Transition","name":"transitions","type":"List"}},"com.zoho.crm.api.send_mail.InventoryTemplate":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.tags.RecordActionResponse":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordSuccessResponse"],"interface":true},"com.zoho.crm.api.record.RemindAt":{"alarm":{"name":"ALARM","type":"String"}},"com.zoho.crm.api.scoring_rules.Signal":{"namespace":{"name":"namespace","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.scoring_rules.Info":{"call":{"name":"call","type":"Boolean"},"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"page_token_expiry":{"name":"page_token_expiry","type":"DateTime"},"email":{"name":"email","type":"Boolean"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.timelines.FieldHistory":{"api_name":{"name":"api_name","type":"String"},"enable_colour_code":{"name":"enable_colour_code","type":"Boolean"},"field_label":{"name":"field_label","type":"String"},"data_type":{"name":"data_type","type":"String"},"id":{"name":"id","type":"Long"},"value":{"structure_name":"com.zoho.crm.api.timelines.FieldHistoryValue","name":"_value","type":"com.zoho.crm.api.timelines.FieldHistoryValue"},"pick_list_values":{"structure_name":"com.zoho.crm.api.timelines.PicklistDetail","name":"pick_list_values","type":"List"}},"com.zoho.crm.api.users_transfer_delete.TransferAndDeleteByID":{"move_subordinate":{"structure_name":"com.zoho.crm.api.users_transfer_delete.MoveSubordinate","name":"move_subordinate","type":"com.zoho.crm.api.users_transfer_delete.MoveSubordinate"},"transfer":{"structure_name":"com.zoho.crm.api.users_transfer_delete.Transfer","name":"transfer","type":"com.zoho.crm.api.users_transfer_delete.Transfer"}},"com.zoho.crm.api.share_records.DeleteActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.notifications.Notification":{"notify_on_related_action":{"name":"notify_on_related_action","type":"Boolean"},"deleteevents":{"values":[true],"name":"_delete_events","type":"com.zoho.crm.api.util.Choice"},"return_affected_field_values":{"name":"return_affected_field_values","type":"Boolean"},"channel_expiry":{"name":"channel_expiry","type":"DateTime"},"resource_uri":{"name":"resource_uri","type":"String"},"resource_id":{"name":"resource_id","type":"Long"},"notify_url":{"regex":"www[.][a-z]{5}zoho[.]com","name":"notify_url","type":"String"},"fields":{"name":"fields","type":"Map"},"resource_name":{"name":"resource_name","type":"String"},"channel_id":{"name":"channel_id","type":"String"},"events":{"name":"events","sub-type":"String","type":"List"},"token":{"name":"token","type":"String"}},"com.zoho.crm.api.territories.ActionResponse":{"classes":["com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.SuccessResponse"],"interface":true},"com.zoho.crm.api.org.ResponseHandler":{"classes":["com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.org.FileBodyWrapper","com.zoho.crm.api.org.APIException"],"interface":true},"com.zoho.crm.api.wizards.ConditionalRules":{"query_id":{"name":"query_id","type":"Long"},"criteria":{"structure_name":"com.zoho.crm.api.wizards.Criteria","name":"criteria","type":"com.zoho.crm.api.wizards.Criteria"},"actions":{"structure_name":"com.zoho.crm.api.wizards.Actions","name":"actions","type":"List"},"execute_on":{"values":["create","edit","create_edit"],"name":"execute_on","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notifications.Event":{"channel_expiry":{"name":"channel_expiry","type":"DateTime"},"resource_uri":{"name":"resource_uri","type":"String"},"resource_id":{"name":"resource_id","type":"Long"},"resource_name":{"name":"resource_name","type":"String"},"channel_id":{"name":"channel_id","type":"String"}},"com.zoho.crm.api.fiscal_year.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"allowed_values","sub-type":"Object","type":"List"}],"name":"details","type":"Map"},"message":{"values":["required field not found","Please give a valid month","Please give a valid value"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.scoring_rules.DeleteScoringRulesParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.related_lists.ResponseHandler":{"classes":["com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.related_lists.APIException"],"interface":true},"com.zoho.crm.api.share_records.ResponseWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","type":"List"},"shareable_user":{"structure_name":"com.zoho.crm.api.users.Users","name":"shareable_user","type":"List"}},"com.zoho.crm.api.backup.Backup":{"requester":{"structure_name":"com.zoho.crm.api.backup.Requester","name":"requester","type":"com.zoho.crm.api.backup.Requester"},"rrule":{"name":"rrule","type":"String"},"id":{"name":"id","type":"Long"},"scheduled_date":{"name":"scheduled_date","type":"DateTime"},"start_date":{"name":"start_date","type":"DateTime"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.attachments.Attachment":{"owner":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Owner","type":"com.zoho.crm.api.users.MinifiedUser"},"created_time":{"name":"Created_Time","type":"DateTime"},"file_name":{"name":"File_Name","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String"},"type":{"name":"$type","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"Size","type":"String"},"sharing_permission":{"name":"$sharing_permission","type":"String"},"attachment_type":{"name":"$attachment_type","type":"Integer"},"parent_id":{"structure_name":"com.zoho.crm.api.attachments.ParentId","name":"Parent_Id","type":"com.zoho.crm.api.attachments.ParentId"},"file_id":{"name":"$file_id","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"link_url":{"name":"$link_url","type":"String"},"id":{"name":"id","type":"Long"},"state":{"name":"$state","type":"String"}},"com.zoho.crm.api.bulk_write.Result":{"download_url":{"name":"download_url","type":"String"}},"com.zoho.crm.api.record_locking.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record_locking.LockRecord","name":"data","type":"List"}},"com.zoho.crm.api.files.GetFileParam":{"id":{"name":"id","type":"String"}},"com.zoho.crm.api.appointment_preference.ActionHandler":{"classes":["com.zoho.crm.api.appointment_preference.APIException","com.zoho.crm.api.appointment_preference.ActionWrapper"],"interface":true},"com.zoho.crm.api.email_templates.APIException":{"code":{"values":["INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.ActionHandler":{"classes":["com.zoho.crm.api.attachments.ActionWrapper","com.zoho.crm.api.attachments.APIException"],"interface":true},"com.zoho.crm.api.roles.DeleteRoleParam":{"transfer_to_id":{"name":"transfer_to_id","type":"Long","required":true}},"com.zoho.crm.api.assignment_rules.DefaultAssignee":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.hipaa_compliance.Modules":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.entity_scores.ResponseHandler":{"classes":["com.zoho.crm.api.entity_scores.APIException","com.zoho.crm.api.entity_scores.ResponseWrapper"],"interface":true},"com.zoho.crm.api.files.BodyWrapper":{"file":{"name":"file","max-length":10,"sub-type":"Util::StreamWrapper","type":"List","min-length":1}},"com.zoho.crm.api.email_related_records.Info":{"per_page":{"name":"per_page","type":"Integer"},"next_index":{"name":"next_index","type":"String"},"count":{"name":"count","type":"Integer"},"prev_index":{"name":"prev_index","type":"String"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.hipaa_compliance.ResponseWrapper":{"hipaa_compliance":{"structure_name":"com.zoho.crm.api.hipaa_compliance.HipaaCompliance","name":"hipaa_compliance","type":"com.zoho.crm.api.hipaa_compliance.HipaaCompliance"}},"com.zoho.crm.api.users_unavailability.GetUsersUnavailabilityParam":{"include_inner_details":{"values":["user.zuid"],"name":"include_inner_details","type":"String"},"group_ids":{"name":"group_ids","type":"String"},"filters":{"name":"filters","type":"String"},"role_ids":{"name":"role_ids","type":"String"},"territory_ids":{"name":"territory_ids","type":"String"}},"com.zoho.crm.api.fields.Fields":{"associated_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"associated_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"webhook":{"name":"webhook","type":"Boolean"},"operation_type":{"structure_name":"com.zoho.crm.api.fields.OperationType","name":"operation_type","type":"com.zoho.crm.api.fields.OperationType"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.Tooltip","name":"tooltip","type":"com.zoho.crm.api.fields.Tooltip"},"type":{"name":"type","type":"String"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"sharing_properties":{"structure_name":"com.zoho.crm.api.modules.SharingProperties","name":"sharing_properties","type":"com.zoho.crm.api.modules.SharingProperties"},"id":{"name":"id","type":"Long"},"filterable":{"name":"filterable","type":"Boolean"},"created_time":{"name":"created_time","type":"DateTime"},"visible":{"name":"visible","type":"Boolean"},"refer_from_field":{"structure_name":"com.zoho.crm.api.fields.ReferFromField","name":"refer_from_field","type":"com.zoho.crm.api.fields.ReferFromField"},"profiles":{"structure_name":"com.zoho.crm.api.fields.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"separator":{"name":"separator","type":"Boolean"},"searchable":{"name":"searchable","type":"Boolean"},"show_type":{"name":"show_type","type":"Integer"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"enable_colour_code":{"name":"enable_colour_code","type":"Boolean"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"virtual_field":{"name":"virtual_field","type":"Boolean"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"created_source":{"name":"created_source","type":"String"},"available_in_user_layout":{"name":"available_in_user_layout","type":"Boolean"},"allowed_modules":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"allowed_modules","type":"List"},"display_type":{"name":"display_type","type":"Integer"},"ui_type":{"name":"ui_type","type":"Integer"},"modified_time":{"name":"modified_time","type":"DateTime"},"file_upolad_optionlist":{"structure_name":"com.zoho.crm.api.fields.FileUpoladOption","name":"file_upolad_optionlist","type":"List"},"quick_sequence_number":{"name":"quick_sequence_number","type":"String"},"email_parser":{"structure_name":"com.zoho.crm.api.fields.EmailParser","name":"email_parser","type":"com.zoho.crm.api.fields.EmailParser"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"multiuserlookup":{"structure_name":"com.zoho.crm.api.fields.Multiselectlookup","name":"multiuserlookup","type":"com.zoho.crm.api.fields.Multiselectlookup"},"custom_field":{"name":"custom_field","type":"Boolean"},"lookup":{"structure_name":"com.zoho.crm.api.fields.Lookup","name":"lookup","type":"com.zoho.crm.api.fields.Lookup"},"hipaa_compliance":{"structure_name":"com.zoho.crm.api.fields.HipaaCompliance","name":"hipaa_compliance","type":"com.zoho.crm.api.fields.HipaaCompliance"},"convert_mapping":{"structure_name":"com.zoho.crm.api.fields.ConvertMapping","name":"convert_mapping","type":"com.zoho.crm.api.fields.ConvertMapping"},"rollup_summary":{"structure_name":"com.zoho.crm.api.fields.RollupSummary","name":"rollup_summary","type":"com.zoho.crm.api.fields.RollupSummary"},"column_name":{"name":"column_name","type":"String"},"length":{"values":[16,120,255,2000,32000,100,50,20],"name":"length","type":"com.zoho.crm.api.util.Choice"},"default_value":{"name":"default_value","type":"String"},"display_field":{"name":"display_field","type":"Boolean"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"sortable":{"name":"sortable","type":"Boolean"},"sequence_number":{"name":"sequence_number","type":"Integer"},"global_picklist":{"name":"global_picklist","type":"Object"},"history_tracking":{"structure_name":"com.zoho.crm.api.fields.HistoryTracking","name":"history_tracking","type":"com.zoho.crm.api.fields.HistoryTracking"},"data_type":{"values":["formula","text","boolean","picklist","datetime","website","autonumber","textarea","email","phone","integer","double","date","formula","text","boolean","picklist","datetime","website","autonumber","textarea","lookup","email","userlookup","phone","integer","double","date"],"name":"data_type","type":"com.zoho.crm.api.util.Choice"},"sub_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"sub_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"additional_column":{"name":"additional_column","type":"String"},"category":{"name":"category","type":"Integer"},"hipaa_compliance_enabled":{"name":"hipaa_compliance_enabled","type":"Boolean"},"mass_update":{"name":"mass_update","type":"Boolean"},"decimal_place":{"name":"decimal_place","type":"Integer"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.Multiselectlookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.Multiselectlookup"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.profiles.Profile":{"created_time":{"name":"created_time","type":"DateTime"},"defaultview":{"structure_name":"com.zoho.crm.api.profiles.DefaultView","name":"_default_view","type":"com.zoho.crm.api.profiles.DefaultView"},"custom":{"name":"custom","type":"Boolean"},"description":{"name":"description","max-length":250,"type":"String"},"type":{"values":["normal_profile","lite_profile"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"delete":{"name":"_delete","type":"Boolean"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"sections":{"structure_name":"com.zoho.crm.api.profiles.Section","name":"sections","type":"List"},"display_label":{"name":"display_label","type":"String"},"default":{"name":"default","type":"Boolean"},"permission_type":{"name":"permission_type","type":"String"},"modified_time":{"name":"modified_time","type":"DateTime"},"permissions_details":{"structure_name":"com.zoho.crm.api.profiles.PermissionDetail","name":"permissions_details","type":"List"},"name":{"name":"name","max-length":50,"type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.blueprint.ViewType":{"view":{"name":"view","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"quick_create":{"name":"quick_create","type":"Boolean"},"create":{"name":"create","type":"Boolean"}},"com.zoho.crm.api.mass_change_owner.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"job_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["owner is successfully updated"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.send_mail.From":{"user_name":{"name":"user_name","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.send_mail.Data":{"cc":{"structure_name":"com.zoho.crm.api.send_mail.To","name":"cc","type":"List"},"template":{"structure_name":"com.zoho.crm.api.send_mail.Template","name":"template","interface":true,"type":"com.zoho.crm.api.send_mail.Template"},"data_subject_request":{"structure_name":"com.zoho.crm.api.send_mail.DataSubjectRequest","name":"data_subject_request","type":"com.zoho.crm.api.send_mail.DataSubjectRequest"},"bcc":{"structure_name":"com.zoho.crm.api.send_mail.To","name":"bcc","type":"List"},"attachments":{"structure_name":"com.zoho.crm.api.send_mail.Attachment","name":"attachments","type":"List"},"subject":{"name":"subject","type":"String"},"mail_format":{"values":["html","text"],"name":"mail_format","type":"com.zoho.crm.api.util.Choice"},"scheduled_time":{"name":"scheduled_time","type":"DateTime"},"content":{"name":"content","type":"String"},"in_reply_to":{"name":"in_reply_to","type":"String"},"consent_email":{"name":"consent_email","type":"Boolean"},"org_email":{"name":"org_email","type":"Boolean"},"reply_to":{"structure_name":"com.zoho.crm.api.send_mail.To","name":"reply_to","type":"com.zoho.crm.api.send_mail.To"},"inventory_details":{"structure_name":"com.zoho.crm.api.send_mail.InventoryDetails","name":"inventory_details","type":"com.zoho.crm.api.send_mail.InventoryDetails"},"from":{"structure_name":"com.zoho.crm.api.send_mail.From","name":"from","type":"com.zoho.crm.api.send_mail.From"},"to":{"structure_name":"com.zoho.crm.api.send_mail.To","name":"to","type":"List"}},"com.zoho.crm.api.field_map_dependency.ResponseHandler":{"classes":["com.zoho.crm.api.field_map_dependency.BodyWrapper","com.zoho.crm.api.field_map_dependency.APIException"],"interface":true},"com.zoho.crm.api.business_hours.CreateBusinessHoursHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.fields.Lookup":{"display_label":{"name":"display_label","type":"String"},"show_fields":{"structure_name":"com.zoho.crm.api.fields.ShowFields","name":"show_fields","type":"List"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"revalidate_filter_during_edit":{"name":"revalidate_filter_during_edit","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"query_details":{"structure_name":"com.zoho.crm.api.fields.QueryDetails","name":"query_details","type":"com.zoho.crm.api.fields.QueryDetails"}},"com.zoho.crm.api.taxes.ResponseWrapper":{"org_taxes":{"structure_name":"com.zoho.crm.api.taxes.OrgTax","name":"org_taxes","type":"com.zoho.crm.api.taxes.OrgTax"}},"com.zoho.crm.api.holidays.BusinessHoliday":{"date":{"name":"date","type":"Date"},"name":{"name":"name","max-length":80,"type":"String"},"type":{"values":["business_holiday"],"name":"type","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.holidays.Holiday":{"date":{"name":"date","type":"Date"},"year":{"name":"year","type":"Integer"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"shift_hour":{"structure_name":"com.zoho.crm.api.holidays.ShiftHour","name":"shift_hour","type":"com.zoho.crm.api.holidays.ShiftHour"}},"com.zoho.crm.api.user_groups.ResponseHandler":{"classes":["com.zoho.crm.api.user_groups.ResponseWrapper","com.zoho.crm.api.user_groups.AssociatedUserCount","com.zoho.crm.api.user_groups.AssociationWrapper","com.zoho.crm.api.user_groups.APIException","com.zoho.crm.api.user_groups.SourcesWrapper","com.zoho.crm.api.user_groups.SourcesCountWrapper"],"interface":true},"com.zoho.crm.api.fields.RollupCriteria":{"comparator":{"name":"comparator","type":"String"},"field":{"structure_name":"com.zoho.crm.api.fields.MinifiedField","name":"field","type":"com.zoho.crm.api.fields.MinifiedField"},"value":{"name":"value","type":"Object"}},"com.zoho.crm.api.backup.ActionWrapper":{"backup":{"structure_name":"com.zoho.crm.api.backup.ActionResponse","name":"backup","interface":true,"type":"com.zoho.crm.api.backup.ActionResponse"}},"com.zoho.crm.api.users.GetUserHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.pipeline.TransferPipelineWrapper":{"transfer_pipeline":{"structure_name":"com.zoho.crm.api.pipeline.TransferPipeline","name":"transfer_pipeline","type":"List"}},"com.zoho.crm.api.record.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.currencies.BodyWrapper":{"currencies":{"structure_name":"com.zoho.crm.api.currencies.Currency","name":"currencies","type":"List"}},"com.zoho.crm.api.bulk_write.APIException":{"error_message":{"values":["Bad Request"],"name":"ERROR_MESSAGE","type":"com.zoho.crm.api.util.Choice"},"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","FILE_TOO_LARGE","INVALID_FILE_FORMAT","MANDATORY_FIELDS_NOT_MAPPED","MANDATORY_NOT_FOUND","INVALID_FIELD","INVALID_FORMAT","INVALID_FILE_ID","HEADER_LIMIT_EXCEEDED","COLUMN_INDEX_NOT_FOUND","MODULE_NOT_AVAILABLE","INVALID_DATA","DUPLICATE_DATA","NOT_APPROVED","BLOCKED_RECORD","CANNOT_PROCESS","LIMIT_EXCEEDED","RESOURCE_NOT_FOUND","MISSING_REQUIRED_KEY","INVALID_FIELD_NAME","FILE_NOT_SUPPORTED","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"x_info":{"values":["Link not valid"],"name":"x-info","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"error_code":{"name":"ERROR_CODE","type":"Integer"},"http_status":{"name":"http_status","type":"String"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid file format. only zip format is supported","File size too large to process","The requested resource doesn't exist.","required key operation is not found in request body.","improper file id","required key index for field Company is not found in request body.","All mandatory fields are not mapped for the layout","Requested module 'asdf' is not available.","invalid mapping. invalid api_name ast_Name.","File not supported for bulk write"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"x_error":{"values":["check if headers [feature, X-CRM-ORG] are present and valid"],"name":"x-error","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"},"info":{"values":["Forbidden"],"name":"info","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.Role":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.notes.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.Note","name":"data","type":"List"}},"com.zoho.crm.api.record.GetRecordHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.users_territories.ResponseWrapper":{"territories":{"structure_name":"com.zoho.crm.api.users_territories.Territory","name":"territories","type":"List"},"info":{"structure_name":"com.zoho.crm.api.users_territories.Info","name":"info","type":"com.zoho.crm.api.users_territories.Info"}},"com.zoho.crm.api.attachments.APIException":{"code":{"values":["INVALID_DATA","INVALID_MODULE","INVALID_REQUEST","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"values":["invalid"],"name":"related_status","type":"com.zoho.crm.api.util.Choice"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_type","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.ActionHandler":{"classes":["com.zoho.crm.api.modules.ActionWrapper","com.zoho.crm.api.modules.APIException"],"interface":true},"com.zoho.crm.api.blueprint.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","RECORD_NOT_IN_PROCESS","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid transition","invalid data","record not in process"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.timelines.AutomationDetail":{"pathfinder":{"structure_name":"com.zoho.crm.api.timelines.PathFinder","name":"pathfinder","type":"com.zoho.crm.api.timelines.PathFinder"},"rule":{"structure_name":"com.zoho.crm.api.timelines.NameIdStructure","name":"rule","type":"com.zoho.crm.api.timelines.NameIdStructure"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.email_templates.GetEmailTemplatesParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.holidays.ActionHandler":{"classes":["com.zoho.crm.api.holidays.APIException","com.zoho.crm.api.holidays.ActionWrapper"],"interface":true},"com.zoho.crm.api.send_mail.Attachment":{"id":{"name":"id","type":"String"}},"com.zoho.crm.api.fields.Maps":{"api_name":{"name":"api_name","type":"String"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"}},"com.zoho.crm.api.variables.ActionResponse":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.SuccessResponse"],"interface":true},"com.zoho.crm.api.associate_email.From":{"user_name":{"name":"user_name","type":"String"},"email":{"regex":"[a-z]{7}[@]zoho[.]com","name":"email","type":"String"}},"com.zoho.crm.api.mail_merge.Address":{"address_value_map":{"structure_name":"com.zoho.crm.api.mail_merge.AddressValueMap","name":"Address_Value_Map","type":"com.zoho.crm.api.mail_merge.AddressValueMap"}},"com.zoho.crm.api.modules.RelatedListProperties":{"sort_by":{"structure_name":"com.zoho.crm.api.fields.MinifiedField","name":"sort_by","type":"com.zoho.crm.api.fields.MinifiedField"},"fields":{"name":"fields","sub-type":"String","type":"List"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.currencies.BaseCurrencyActionWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.BaseCurrencyActionResponse","name":"base_currency","interface":true,"type":"com.zoho.crm.api.currencies.BaseCurrencyActionResponse"}},"com.zoho.crm.api.mass_convert.Status":{"total_count":{"name":"Total_Count","type":"Integer"},"not_converted_count":{"name":"Not_Converted_Count","type":"Integer"},"failed_count":{"name":"Failed_Count","type":"Integer"},"converted_count":{"name":"Converted_Count","type":"Integer"},"status":{"name":"Status","type":"String"}},"com.zoho.crm.api.send_mail.To":{"user_name":{"name":"user_name","type":"String"},"email":{"regex":"[a-z]{7}[@]zoho[.]com","name":"email","type":"String"}},"com.zoho.crm.api.files.ActionHandler":{"classes":["com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.ActionWrapper"],"interface":true},"com.zoho.crm.api.related_records.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.layouts.DefaultView":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.business_hours.ActionResponse":{"classes":["com.zoho.crm.api.business_hours.BusinessHoursCreated","com.zoho.crm.api.business_hours.APIException"],"interface":true},"com.zoho.crm.api.pipeline.TransferPipelineSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"job_id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_territories.TransferActionHandler":{"classes":["com.zoho.crm.api.users_territories.APIException","com.zoho.crm.api.users_territories.ActionWrapper","com.zoho.crm.api.users_territories.TransferActionWrapper"],"interface":true},"com.zoho.crm.api.related_lists.ModuleMap":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.appointment_preference.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","DEPENDENT_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"structure_name":"com.zoho.crm.api.util.Choice","values":["create_deal","do_not_create_deal"],"name":"supported_values","type":"List"},{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"}],"name":"dependee","type":"Map"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.Criteria":{"comparator":{"name":"comparator","type":"String"},"field":{"structure_name":"com.zoho.crm.api.wizards.Field","name":"field","type":"com.zoho.crm.api.wizards.Field"},"group_operator":{"name":"group_operator","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.wizards.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.users_transfer_delete.ResponseHandler":{"classes":["com.zoho.crm.api.users_transfer_delete.ResponseWrapper","com.zoho.crm.api.users_transfer_delete.APIException"],"interface":true},"com.zoho.crm.api.entity_scores.EntityStructureGroup":{"classes":["com.zoho.crm.api.entity_scores.EntityStructureWithModule","com.zoho.crm.api.entity_scores.EntityStructure"],"interface":true},"com.zoho.crm.api.profiles.GetProfilesParam":{"include_lite_profile":{"name":"include_lite_profile","type":"Boolean"}},"com.zoho.crm.api.entity_scores.APIException":{"code":{"values":["INVALID_MODULE","REQUIRED_PARAM_MISSING","INVALID_REQUEST","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.Expression":{"function_parameters":{"structure_name":"com.zoho.crm.api.fields.FunctionParameter","name":"function_parameters","type":"List"},"criteria":{"structure_name":"com.zoho.crm.api.fields.RollupCriteria","name":"criteria","type":"com.zoho.crm.api.fields.RollupCriteria"},"function":{"name":"function","type":"String"}},"com.zoho.crm.api.record.MassUpdateResponseHandler":{"classes":["com.zoho.crm.api.record.MassUpdateResponseWrapper","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.holidays.ShiftHour":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.blueprint.Profile":{"permission_type":{"name":"permission_type","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.deal_contact_roles.Info":{"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"page_token_expiry":{"name":"page_token_expiry","type":"String"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.variables.ActionWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.ActionResponse","name":"variables","type":"List"}},"com.zoho.crm.api.fiscal_year.Year":{"display_based_on":{"values":["end_month","start_month"],"name":"display_based_on","type":"com.zoho.crm.api.util.Choice"},"start_month":{"values":["January","February","March","April","May","June","July","August","September","October","November","December"],"name":"start_month","type":"com.zoho.crm.api.util.Choice"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.Profile":{"permission_type":{"name":"permission_type","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.profiles.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.timelines.PathFinder":{"process_entry":{"name":"process_entry","type":"Boolean"},"process_exit":{"name":"process_exit","type":"Boolean"},"state":{"structure_name":"com.zoho.crm.api.timelines.State","name":"state","type":"com.zoho.crm.api.timelines.State"}},"com.zoho.crm.api.business_hours.ActionHandler":{"classes":["com.zoho.crm.api.business_hours.APIException","com.zoho.crm.api.business_hours.ActionWrapper"],"interface":true},"com.zoho.crm.api.tags.CreateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.users_unavailability.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.backup.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.definition.Property":{"display_label":{"name":"display_label","type":"String"},"allowed_values":{"name":"allowed_values","sub-type":"Object","type":"List"},"ui_type":{"name":"ui_type","type":"Integer"},"regex":{"name":"regex","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"field_label":{"name":"field_label","type":"String"},"data_type":{"name":"data_type","type":"String"},"length":{"name":"length","type":"Integer"},"available_in_user_layout":{"name":"available_in_user_layout","type":"Boolean"},"required":{"name":"required","type":"Boolean"},"properties":{"structure_name":"com.zoho.crm.api.definition.MinifiedProperty","name":"properties","type":"List"}},"com.zoho.crm.api.modules.MinifiedModule":{"module_1":{"name":"module","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.definition.Definition":{"root_element_name":{"name":"root_element_name","type":"String"},"extradetails":{"name":"extraDetails","type":"Map"},"properties":{"structure_name":"com.zoho.crm.api.definition.Property","name":"properties","type":"List"}},"com.zoho.crm.api.scoring_rules.RoleRequestWrapper":{"scoring_rules":{"name":"scoring_rules","sub-type":"Integer","type":"List"}},"com.zoho.crm.api.field_map_dependency.Parent":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.user_type_users.Info":{"per_page":{"name":"per_page","type":"Integer"},"total_count":{"name":"total_count","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.contact_roles.APIException":{"code":{"values":["INTERNAL_SERVER_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.mail_merge.ActionWrapper":{"send_mail_merge":{"structure_name":"com.zoho.crm.api.mail_merge.ActionResponse","name":"send_mail_merge","type":"List"}},"com.zoho.crm.api.assignment_rules.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_read.Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com.zoho.crm.api.util.Choice"},"field":{"structure_name":"com.zoho.crm.api.fields.MinifiedField","name":"field","type":"com.zoho.crm.api.fields.MinifiedField"},"api_name":{"name":"api_name","type":"String"},"group_operator":{"values":["and","or"],"name":"group_operator","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.bulk_read.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.pipeline.TransferPipelineActionHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.TransferPipelineActionWrapper"],"interface":true},"com.zoho.crm.api.scoring_rules.Layout":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.territory_users.ActionWrapper":{"users":{"structure_name":"com.zoho.crm.api.territory_users.ActionResponse","name":"users","type":"List"}},"com.zoho.crm.api.associate_email.ActionWrapper":{"emails":{"structure_name":"com.zoho.crm.api.associate_email.ActionResponse","name":"Emails","type":"List"}},"com.zoho.crm.api.blueprint.AutoNumber":{"prefix":{"name":"prefix","type":"String"},"start_number":{"name":"start_number","type":"Integer"},"suffix":{"name":"suffix","type":"String"}},"com.zoho.crm.api.territories.DeletedAssociatedTerritories":{"name":{"name":"name","type":"String"},"deleted_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"deleted_by","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"String"},"deleted_time":{"name":"deleted_time","type":"DateTime"}},"com.zoho.crm.api.scoring_rules.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"job_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["scoring rule created successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.territories.Manager":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.External":{"allow_multiple_config":{"name":"allow_multiple_config","type":"Boolean"},"show":{"name":"show","type":"Boolean"},"type":{"values":["user","org"],"name":"type","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MultiSelectPicklist":{"fieldname":{"name":"fieldName","type":"Map"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.appointment_preference.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["Appointments preferences updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_territories.ActionWrapper":{"territories":{"structure_name":"com.zoho.crm.api.users_territories.ActionResponse","name":"territories","type":"List"}},"com.zoho.crm.api.users_territories.TransferToUser":{"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.portals_meta.Modules":{"plural_label":{"name":"plural_label","type":"String"},"shared_type":{"name":"shared_type","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"filters":{"structure_name":"com.zoho.crm.api.portals_meta.Filters","name":"filters","type":"List"},"layouts":{"structure_name":"com.zoho.crm.api.portals_meta.Layouts","name":"layouts","type":"List"},"views":{"structure_name":"com.zoho.crm.api.portals_meta.Views","name":"views","type":"List"}},"com.zoho.crm.api.portals.ActionResponse":{"classes":["com.zoho.crm.api.portals.APIException","com.zoho.crm.api.portals.SuccessResponse"],"interface":true},"com.zoho.crm.api.field_map_dependency.CreateMapDependencyParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.attachments.Owner":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.mass_convert.PortalUserType":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.field_map_dependency.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.users.Shift":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.layouts.DealField":{"api_name":{"name":"api_name","type":"String"},"field_label":{"name":"field_label","type":"String"},"id":{"name":"id","type":"Long"},"required":{"name":"required","type":"Boolean"}},"com.zoho.crm.api.fields.MultiModuleLookup":{"display_label":{"name":"display_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"modules":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"modules","type":"List"}},"com.zoho.crm.api.record.PricingDetails":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"to_range":{"name":"to_range","type":"Double"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"discount":{"name":"discount","type":"Double"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"from_range":{"name":"from_range","type":"Double"}},"com.zoho.crm.api.modules.LookupField":{"sequence_number":{"name":"sequence_number","type":"Integer"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.currencies.CurrencyFormat":{"decimal_separator":{"values":["Period","Comma"],"name":"decimal_separator","type":"com.zoho.crm.api.util.Choice"},"thousand_separator":{"values":["Comma","Space","Period","Space"],"name":"thousand_separator","type":"com.zoho.crm.api.util.Choice"},"decimal_places":{"values":["0","2","3"],"name":"decimal_places","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.send_mail.InventoryDetails":{"inventory_template":{"structure_name":"com.zoho.crm.api.send_mail.InventoryTemplate","name":"inventory_template","type":"com.zoho.crm.api.send_mail.InventoryTemplate"}},"com.zoho.crm.api.files.ResponseHandler":{"classes":["com.zoho.crm.api.files.APIException","com.zoho.crm.api.files.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.holidays.ActionResponse":{"classes":["com.zoho.crm.api.holidays.APIException","com.zoho.crm.api.holidays.SuccessResponse"],"interface":true},"com.zoho.crm.api.wizards.Segment":{"sequence_number":{"name":"sequence_number","type":"Integer"},"display_label":{"name":"display_label","type":"String"},"buttons":{"structure_name":"com.zoho.crm.api.wizards.Button","name":"buttons","type":"List"},"resource":{"structure_name":"com.zoho.crm.api.wizards.Resource","name":"resource","type":"com.zoho.crm.api.wizards.Resource"},"column_count":{"name":"column_count","type":"Integer"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.fields.Fields","name":"fields","type":"List"}},"com.zoho.crm.api.mass_change_owner.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.mass_change_owner.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.backup.APIException":{"code":{"values":["BACKUP_ALREADY_SCHEDULED","ALREADY_CANCELLED","RESOURCE_NOT_FOUND","REQUEST_BODY_NOT_READABLE","INVALID_DATA","INPROGRESS","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.CountHandler":{"classes":["com.zoho.crm.api.record.CountWrapper","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.user_groups.SourcesCountWrapper":{"sources_count":{"structure_name":"com.zoho.crm.api.user_groups.SourcesCount","name":"sources_count","type":"List"}},"com.zoho.crm.api.scoring_rules.FieldRule":{"score":{"name":"score","type":"Integer"},"criteria":{"structure_name":"com.zoho.crm.api.scoring_rules.Criteria","name":"criteria","type":"com.zoho.crm.api.scoring_rules.Criteria"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.users_territories.Manager":{"name":{"name":"Name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.UpdateRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.tags.RecordActionHandler":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.RecordActionWrapper"],"interface":true},"com.zoho.crm.api.record.UploadPhotoParam":{"restrict_triggers":{"name":"restrict_triggers","type":"String"}},"com.zoho.crm.api.bulk_write.RequestWrapper":{"resource":{"structure_name":"com.zoho.crm.api.bulk_write.Resource","name":"resource","type":"List"},"ignore_empty":{"name":"ignore_empty","type":"Boolean"},"character_encoding":{"name":"character_encoding","type":"String"},"callback":{"structure_name":"com.zoho.crm.api.bulk_write.CallBack","name":"callback","type":"com.zoho.crm.api.bulk_write.CallBack"},"operation":{"values":["insert","update","upsert"],"name":"operation","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.custom_views.ActionHandler":{"classes":["com.zoho.crm.api.custom_views.APIException"],"interface":true},"com.zoho.crm.api.email_related_records.Status":{"first_open":{"name":"first_open","type":"DateTime"},"bounced_time":{"name":"bounced_time","type":"DateTime"},"count":{"name":"count","type":"String"},"bounced_reason":{"name":"bounced_reason","type":"String"},"type":{"name":"type","type":"String"},"last_open":{"name":"last_open","type":"DateTime"}},"com.zoho.crm.api.record_locking.GetrecordlockinformationParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.related_lists.GetRelatedListsParam":{"layout_id":{"name":"layout_id","type":"Long"},"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.download_attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.reschedule_history.Info":{"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"page_token_expiry":{"name":"page_token_expiry","type":"DateTime"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.profiles.CategoryOthers":{"display_label":{"name":"display_label","type":"String"},"permissions_details":{"name":"permissions_details","sub-type":"String","type":"List"},"name":{"name":"name","type":"String"}},"com.zoho.crm.api.users_territories.ValidationWrapper":{"validate_before_transfer":{"structure_name":"com.zoho.crm.api.users_territories.ValidationGroup","name":"validate_before_transfer","type":"List"}},"com.zoho.crm.api.shift_hours.ActionWrapper":{"shift_hours":{"structure_name":"com.zoho.crm.api.shift_hours.ActionResponse","name":"shift_hours","type":"List"}},"com.zoho.crm.api.from_addresses.Address":{"default":{"name":"default","type":"Boolean"},"user_name":{"name":"user_name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"email":{"regex":"[a-z]{7}[@]zoho[.]com","name":"email","type":"String"}},"com.zoho.crm.api.user_type_users.ResponseWrapper":{"users":{"structure_name":"com.zoho.crm.api.user_type_users.Users","name":"users","type":"List"},"info":{"structure_name":"com.zoho.crm.api.user_type_users.Info","name":"info","type":"com.zoho.crm.api.user_type_users.Info"}},"com.zoho.crm.api.tags.BodyWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"}},"com.zoho.crm.api.blueprint.Crypt":{"mode":{"name":"mode","type":"String"},"column":{"name":"column","type":"String"},"table":{"name":"table","type":"String"},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.field_map_dependency.PickListMapping":{"display_value":{"name":"display_value","type":"String"},"maps":{"structure_name":"com.zoho.crm.api.field_map_dependency.PicklistMap","name":"maps","type":"List"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.notes.GetNoteHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.users_territories.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.entity_scores.EntityStructure":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.APIException":{"code":{"values":["NO_CONTENT","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","TERRITORY_NOT_ENABLED","DEPENDENT_FIELD_MISSING","EXPECTED_FIELD_MISSING","FEATURE_NOT_SUPPORTED","CONVERTED_RECORD","NOT_FOUND","NO_RECORDS_FOUND","NOT_APPROVED","LIMIT_EXCEEDED","ALREADY_SCHEDULED","CANNOT_PERFORM_ACTION","CANNOT_PROCESS","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","STORAGE_SPACE_EXCEEDED","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","CANNOT_DELETE","REQUIRED_PARAM_MISSING","DATA_MISMATCH","RECORD_LOCKED","BAD_REQUEST","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","sub-type":"String","type":"List"},{"structure_name":"com.zoho.crm.api.record.DuplicateRecord","name":"duplicate_record","type":"com.zoho.crm.api.record.DuplicateRecord"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"module","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"index","type":"Integer"},{"name":"maximum_length","type":"String"},{"name":"mapped_field","type":"String"},{"name":"reason","type":"String"},{"name":"operator","type":"String"},{"name":"allowed_count","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"param","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"External","type":"String"}],"name":"details","type":"Map"},"message":{"values":["The record under merge is locked","the given id seems to be invalid","The record is not approved","The external ID of the lookup field or the Price Book is incorrect","The value of the external field is invalid.","There is no data for the ID specified or there is no matching record in the given module.","The external field contains duplicate data.","the territory feature is not enabled","Given Probability is not valid","duplicate territory id found","Given Territory id already exists for that record","User has no permission to assign this territory","Maximum limit of territories for that record exceeds","Invalid Sequence Number","Record insertion limit for Image upload field has been exceeded.","Record insertion limit has been exceeded.","The image format is invalid.","Dependent Fields missing","Specify Atleast one field","the id given seems to be invalid.","Already an Mass Action scheduler is runing for the given cvid","Scheduled Mass Operation feature is not available in your edition","can't update the converted record","Field cannot be updated in Scheduled Mass Update","Field is not visible","Field cannot be updated as it is associated with a validation rule.","Field cannot be updated as it is associated with a layout rule.This field cannot be updated in the Mass Update","Max field limit exceeded","Maximum lookup field limit in criteria exceeded","No field found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Territory is not supported for the given module","Please check whether the input values are correct","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","Layout doesn't contain the Pipeline","Pipeline doesn't contain the Stage","the id given seems to be invalid","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","invalid query formed","id already converted","body","given id is invalid","Already a Mass Action scheduler is running for the given cvid","The record is in stop processing","The record is in blue print","no permission to perform an action on this record","Record count exceeded","record not approved","no record found to update","Field Edit Permission not given","Customview not accessible","Empty response","give contact id is mismatched with the data","give account id is mismatched with the data","Territory id which you are trying to remove was system assigned"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.SharedThrough":{"module_1":{"structure_name":"com.zoho.crm.api.share_records.Module","name":"module","type":"com.zoho.crm.api.share_records.Module"},"entity_name":{"name":"entity_name","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.users_territories.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"owner_status","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.assignment_rules.GetAssignmentRuleParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.related_records.DelinkRecordsParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.record.DeleteRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.user_groups.Groups":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"sources":{"structure_name":"com.zoho.crm.api.user_groups.Sources","name":"sources","type":"List"},"modified_by":{"structure_name":"com.zoho.crm.api.user_groups.Owner","name":"modified_by","type":"com.zoho.crm.api.user_groups.Owner"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.user_groups.Owner","name":"created_by","type":"com.zoho.crm.api.user_groups.Owner"}},"com.zoho.crm.api.mail_merge.SignMailMerge":{"sign_in_order":{"name":"sign_in_order","type":"Boolean"},"signers":{"structure_name":"com.zoho.crm.api.mail_merge.Signers","name":"signers","type":"List"},"mail_merge_template":{"structure_name":"com.zoho.crm.api.mail_merge.MailMergeTemplate","name":"mail_merge_template","type":"com.zoho.crm.api.mail_merge.MailMergeTemplate"},"file_name":{"name":"file_name","max-length":255,"type":"String"}},"com.zoho.crm.api.profiles.ActionHandler":{"classes":["com.zoho.crm.api.profiles.ActionWrapper","com.zoho.crm.api.profiles.SuccessResponse","com.zoho.crm.api.profiles.APIException"],"interface":true},"com.zoho.crm.api.variables.VariableGroup":{"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.Unique":{"casesensitive":{"name":"casesensitive","type":"String"}},"com.zoho.crm.api.files.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.record.GetRecordsParam":{"cvid":{"name":"cvid","type":"String"},"per_page":{"name":"per_page","type":"Integer"},"sort_by":{"name":"sort_by","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"page_token":{"name":"page_token","type":"String"},"ids":{"name":"ids","type":"String","required":true},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"},"sort_order":{"name":"sort_order","type":"String"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.associate_email.BodyWrapper":{"emails":{"structure_name":"com.zoho.crm.api.associate_email.AssociateEmail","name":"Emails","type":"List"}},"com.zoho.crm.api.privacy_preference.Preference":{"consent_modules":{"name":"consent_modules","type":"String"},"restrict_tpt_fields":{"name":"restrict_tpt_fields","type":"String"},"exclude_api_zoho":{"name":"exclude_api_zoho","type":"String"},"awaiting_period":{"name":"awaiting_period","type":"String"},"consent_mail_send":{"name":"consent_mail_send","type":"String"},"exclude_export_fields":{"name":"exclude_export_fields","type":"String"},"limit_actions":{"name":"limit_actions","type":"String"},"exclude_export":{"name":"exclude_export","type":"String"},"restrict_zoho_integ":{"name":"restrict_zoho_integ","type":"String"},"exclude_api_zoho_fields":{"name":"exclude_api_zoho_fields","type":"String"},"duration_timing":{"name":"duration_timing","type":"String"},"data_processing_duration":{"name":"data_processing_duration","type":"String"},"restrict_tpt_services":{"name":"restrict_tpt_services","type":"String"},"exclude_api_tpt_fields":{"name":"exclude_api_tpt_fields","type":"String"},"restrict_zoho_integ_services":{"name":"restrict_zoho_integ_services","type":"String"},"privacy_setting_status":{"name":"privacy_setting_status","type":"String"},"double_opt_in":{"name":"double_opt_in","type":"String"},"restrict_zoho_integ_fields":{"name":"restrict_zoho_integ_fields","type":"String"},"exclude_api_tpt":{"name":"exclude_api_tpt","type":"String"},"block_list":{"name":"block_list","type":"String"},"restrict_tpt":{"name":"restrict_tpt","type":"String"},"actions_while_awaiting":{"name":"actions_while_awaiting","type":"String"}},"com.zoho.crm.api.mass_convert.ResponseHandler":{"classes":["com.zoho.crm.api.mass_convert.ResponseWrapper","com.zoho.crm.api.mass_convert.APIException"],"interface":true},"com.zoho.crm.api.wizards.APIException":{"code":{"values":["INVALID_DATA","INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","BAD_REQUEST","NO_PERMISSION","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","sub-type":"String","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Invalid Wizard ID","the module name given seems to be invalid","feature not available in this edition","permission denied","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.BaseCurrency":{"prefix_symbol":{"name":"prefix_symbol","type":"Boolean"},"symbol":{"name":"symbol","type":"String"},"is_active":{"name":"is_active","type":"Boolean"},"exchange_rate":{"regex":"[1-9]{2}[.][1-9]{9}","name":"exchange_rate","type":"String"},"format":{"structure_name":"com.zoho.crm.api.currencies.Format","name":"format","type":"com.zoho.crm.api.currencies.Format"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"iso_code":{"name":"iso_code","type":"String"}},"com.zoho.crm.api.record_locking.Info":{"call":{"name":"call","type":"Boolean"},"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"page_token_expiry":{"name":"page_token_expiry","type":"DateTime"},"sort_by":{"name":"sort_by","type":"String"},"sort_order":{"name":"sort_order","type":"String"},"email":{"name":"email","type":"Boolean"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.pipeline.TransferPipelineActionResponse":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.TransferPipelineSuccessResponse"],"interface":true},"com.zoho.crm.api.email_sharing.ResponseWrapper":{"emailssharingdetails":{"structure_name":"com.zoho.crm.api.email_sharing.GetEmailSharing","name":"__emails_sharing_details","type":"List"}},"com.zoho.crm.api.shift_hours.MandatoryDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.notes.ResponseHandler":{"classes":["com.zoho.crm.api.notes.ResponseWrapper","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.modules.LookupFieldProperties":{"fields":{"structure_name":"com.zoho.crm.api.modules.LookupField","name":"fields","type":"List"}},"com.zoho.crm.api.pipeline.Maps":{"display_value":{"name":"display_value","type":"String"},"sequence_number":{"name":"sequence_number","max-length":10,"type":"Integer"},"colour_code":{"name":"colour_code","type":"String"},"forecast_category":{"structure_name":"com.zoho.crm.api.pipeline.ForecastCategory","name":"forecast_category","type":"com.zoho.crm.api.pipeline.ForecastCategory"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long"},"forecast_type":{"name":"forecast_type","type":"String"},"delete":{"name":"_delete","type":"Boolean"}},"com.zoho.crm.api.users.ErrorDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.pipeline.TPipeline":{"from":{"name":"from","type":"Long"},"to":{"name":"to","type":"Long"}},"com.zoho.crm.api.mass_delete_cvid.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.mass_delete_cvid.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.tags.ActionHandler":{"classes":["com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.tags.APIException"],"interface":true},"com.zoho.crm.api.currencies.ActionHandler":{"classes":["com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper"],"interface":true},"com.zoho.crm.api.roles.ReportingTo":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.portals_meta.Filters":{"display_label":{"name":"display_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.business_hours.BusinessHours":{"business_days":{"structure_name":"com.zoho.crm.api.util.Choice","values":["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],"name":"business_days","type":"List"},"custom_timing":{"structure_name":"com.zoho.crm.api.business_hours.BreakHoursCustomTiming","name":"custom_timing","type":"List"},"daily_timing":{"name":"daily_timing","max-length":2,"sub-type":"String","type":"List"},"week_starts_on":{"values":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"name":"week_starts_on","type":"com.zoho.crm.api.util.Choice"},"same_as_everyday":{"name":"same_as_everyday","type":"Boolean"},"id":{"name":"id","type":"Long"},"type":{"values":["24_by_7","24_by_5","custom"],"name":"type","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.ActionWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.ActionResponse","name":"users","type":"List"}},"com.zoho.crm.api.scoring_rules.APIException":{"code":{"values":["INVALID_DATA","INVALID_URL_PATTERN","EXPECTED_FIELD_MISSING","MANDATORY_NOT_FOUND","LIMIT_EXCEEDED","REQUIRED_PARAM_MISSING","DUPLICATE_DATA","ALREADY_SCHEDULED","INVALID_MODULE","INVALID_TOKEN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param_name","type":"String"},{"name":"expected_fields","sub-type":"Object","type":"List"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"limit","type":"Integer"},{"name":"maximum_length","type":"Integer"},{"name":"param","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid data","the module name given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.backup.Requester":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"zuid":{"name":"zuid","type":"String"}},"com.zoho.crm.api.query.BodyWrapper":{"select_query":{"name":"select_query","type":"String"}},"com.zoho.crm.api.share_records.ShareRecord":{"shared_with":{"structure_name":"com.zoho.crm.api.users.Users","name":"shared_with","type":"com.zoho.crm.api.users.Users"},"share_related_records":{"name":"share_related_records","type":"Boolean"},"shared_through":{"structure_name":"com.zoho.crm.api.share_records.SharedThrough","name":"shared_through","type":"com.zoho.crm.api.share_records.SharedThrough"},"shared_time":{"name":"shared_time","type":"DateTime"},"permission":{"values":["full_access","read_only","read_write"],"name":"permission","type":"com.zoho.crm.api.util.Choice"},"shared_by":{"structure_name":"com.zoho.crm.api.users.Users","name":"shared_by","type":"com.zoho.crm.api.users.Users"},"type":{"values":["public","private"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"user":{"structure_name":"com.zoho.crm.api.users.Users","name":"user","type":"com.zoho.crm.api.users.Users"}},"com.zoho.crm.api.notifications.DeleteNotificationParam":{"channel_ids":{"name":"channel_ids","type":"Long","required":true}},"com.zoho.crm.api.backup.Urls":{"data_links":{"name":"data_links","sub-type":"String","type":"List"},"attachment_links":{"name":"attachment_links","sub-type":"String","type":"List"},"expiry_date":{"name":"expiry_date","type":"DateTime"}},"com.zoho.crm.api.scoring_rules.GetScoringRulesParam":{"per_page":{"values":[10],"name":"per_page","type":"Integer"},"layout_id":{"name":"layout_id","type":"Long"},"module_1":{"name":"module","type":"String"},"name":{"name":"name","type":"Long"},"active":{"values":[true,false],"name":"active","type":"Boolean"},"page":{"values":[2],"name":"page","type":"Integer"}},"com.zoho.crm.api.shift_hours.UpdateShiftHoursHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.org.APIException":{"code":{"values":["INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.ActionWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.ActionResponse","name":"pipeline","type":"List"}},"com.zoho.crm.api.email_related_records.LinkedRecord":{"module_1":{"structure_name":"com.zoho.crm.api.email_related_records.Module","name":"module","type":"com.zoho.crm.api.email_related_records.Module"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.territory_users.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.Result":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"download_url":{"name":"download_url","type":"String"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.field_attachments.ResponseHandler":{"classes":["com.zoho.crm.api.field_attachments.FileBodyWrapper","com.zoho.crm.api.field_attachments.APIException"],"interface":true},"com.zoho.crm.api.fields.AutoNumber":{"starting_number_length":{"name":"starting_number_length","type":"Integer"},"prefix":{"name":"prefix","type":"String"},"start_number":{"name":"start_number","type":"Integer"},"suffix":{"name":"suffix","type":"String"}},"com.zoho.crm.api.users_unavailability.User":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"zuid":{"name":"zuid","type":"String"}},"com.zoho.crm.api.record.GetDeletedRecordsHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.profiles.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","LICENSE_LIMIT_EXCEEDED","INVALID_DATA","DUPLICATE_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"values":[25],"name":"limit","type":"com.zoho.crm.api.util.Choice"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["duplicate data"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.timelines.Record":{"module_1":{"structure_name":"com.zoho.crm.api.timelines.Module","name":"module","type":"com.zoho.crm.api.timelines.Module"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Consent":{"owner":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Owner","type":"com.zoho.crm.api.users.MinifiedUser"},"contact_through_email":{"name":"Contact_Through_Email","type":"Boolean"},"data_processing_basis":{"name":"Data_Processing_Basis","type":"String"},"created_time":{"name":"Created_Time","type":"DateTime"},"contact_through_social":{"name":"Contact_Through_Social","type":"Boolean"},"contact_through_phone":{"name":"Contact_Through_Phone","type":"Boolean"},"consent_remarks":{"name":"Consent_Remarks","type":"String"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"contact_through_survey":{"name":"Contact_Through_Survey","type":"Boolean"},"consent_date":{"name":"Consent_Date","type":"Date"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"mail_sent_time":{"name":"Mail_Sent_Time","type":"DateTime"},"consent_through":{"name":"Consent_Through","type":"String"}},"com.zoho.crm.api.modules.Territory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.record.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"duplicate_field":{"name":"duplicate_field","type":"String"},"action":{"values":["insert","update"],"name":"action","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"String"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"External_Contact_ID","type":"String"},{"name":"$approval_state","type":"String"},{"structure_name":"com.zoho.crm.api.record.Record","name":"Contacts","type":"com.zoho.crm.api.record.Record"},{"structure_name":"com.zoho.crm.api.record.Record","name":"Deals","type":"com.zoho.crm.api.record.Record"},{"structure_name":"com.zoho.crm.api.record.Record","name":"Accounts","type":"com.zoho.crm.api.record.Record"}],"name":"details","type":"Map"},"message":{"values":["The record has been converted successfully","record updated","record deleted","record added","photo uploaded successfully","Photo deleted","the territories data updated successfully","the territories are removed successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_write.Resource":{"field_mappings":{"structure_name":"com.zoho.crm.api.bulk_write.FieldMapping","name":"field_mappings","type":"List"},"code":{"name":"code","type":"String"},"file":{"structure_name":"com.zoho.crm.api.bulk_write.File","name":"file","type":"com.zoho.crm.api.bulk_write.File"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"ignore_empty":{"name":"ignore_empty","type":"Boolean"},"file_id":{"name":"file_id","type":"String"},"find_by":{"name":"find_by","type":"String"},"type":{"values":["data"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.territories.ActionHandler":{"classes":["com.zoho.crm.api.territories.APIException","com.zoho.crm.api.territories.ActionWrapper"],"interface":true},"com.zoho.crm.api.notes.Info":{"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"sort_by":{"name":"sort_by","type":"String"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"page_token_expiry":{"name":"page_token_expiry","type":"DateTime"},"sort_order":{"name":"sort_order","type":"String"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.scoring_rules.ActionWrapper":{"scoring_rules":{"structure_name":"com.zoho.crm.api.scoring_rules.ActionResponse","name":"scoring_rules","max-length":100,"type":"List"}},"com.zoho.crm.api.portal_invite.JobResponse":{"data":{"structure_name":"com.zoho.crm.api.portal_invite.Data","name":"data","type":"List"},"job_id":{"name":"job_id","type":"Long"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.field_attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.backup.History":{"done_by":{"structure_name":"com.zoho.crm.api.backup.Requester","name":"done_by","type":"com.zoho.crm.api.backup.Requester"},"repeat_type":{"name":"repeat_type","type":"String"},"file_name":{"name":"file_name","type":"String"},"count":{"name":"count","type":"Integer"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long"},"state":{"name":"state","type":"String"},"log_time":{"name":"log_time","type":"DateTime"}},"com.zoho.crm.api.entity_scores.ModuleStructure":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.shift_hours.APIException":{"code":{"values":["INVALID_DATA","DEPENDENT_FIELD_MISSING","MANDATORY_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"regex","type":"String"},{"name":"details","type":"String"},{"structure_name":"com.zoho.crm.api.shift_hours.MandatoryDetails","name":"dependee","type":"com.zoho.crm.api.shift_hours.MandatoryDetails"},{"name":"resource_path_index","type":"Integer"},{"name":"minimum_length","type":"Integer"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.taxes.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","REQUIRED_PARAM_MISSING","INVALID_DATA","EXPECTED_FIELD_MISSING","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","BAD_REQUEST","NO_PERMISSION","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"param","type":"String"},{"name":"id","type":"String"},{"name":"name","type":"String"},{"name":"value","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"deprecated_version","type":"String"},{"structure_name":"com.zoho.crm.api.taxes.ExpectedField","name":"expected_fields","type":"List"}],"name":"details","type":"Map"},"message":{"values":["One of the expected parameter is missing","Given ID does not exist","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","required field not found","Sequence number out of range","Sequence number cannot be repeated in same request","tax not deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.field_map_dependency.ActionHandler":{"classes":["com.zoho.crm.api.field_map_dependency.ActionWrapper","com.zoho.crm.api.field_map_dependency.APIException"],"interface":true},"com.zoho.crm.api.fiscal_year.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["The fiscal year configuration has been updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.bulk_write.SuccessResponse":{"code":{"values":["FILE_UPLOAD_SUCCESS","SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"file_id","type":"Long"},{"name":"created_time","type":"DateTime"},{"name":"id","type":"String"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"}],"name":"details","type":"Map"},"message":{"values":["file uploaded.","success"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.scoring_rules.Field":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.available_currencies.ResponseWrapper":{"available_currencies":{"structure_name":"com.zoho.crm.api.available_currencies.Currency","name":"available_currencies","type":"List"}},"com.zoho.crm.api.currencies.ActionResponse":{"classes":["com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.Tax":{"id":{"name":"id","type":"Long"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.definition.MinifiedProperty1":{"read_only":{"name":"read_only","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"data_type":{"name":"data_type","type":"String"},"length":{"name":"length","type":"Integer"},"required":{"name":"required","type":"Boolean"}},"com.zoho.crm.api.email_related_records.GetEmailsRelatedRecordsParam":{"owner_id":{"name":"owner_id","type":"Long","required":true},"index":{"name":"index","type":"String"},"type":{"values":["sent_from_crm","scheduled_in_crm","drafts","user_emails"],"name":"type","type":"String","required":true}},"com.zoho.crm.api.fiscal_year.BodyWrapper":{"fiscal_year":{"structure_name":"com.zoho.crm.api.fiscal_year.Year","name":"fiscal_year","type":"com.zoho.crm.api.fiscal_year.Year"}},"com.zoho.crm.api.privacy_preference.Option":{"suboptions":{"name":"suboptions","sub-type":"String","type":"List"},"name":{"name":"name","type":"String"},"tooltip":{"name":"tooltip","type":"String"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.record.MassUpdateActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.MassUpdateActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.user_groups.JobsWrapper":{"deletion_jobs":{"structure_name":"com.zoho.crm.api.user_groups.Jobs","name":"deletion_jobs","type":"List"}},"com.zoho.crm.api.field_map_dependency.GetMapDependencyParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.users_unavailability.ActionResponse":{"classes":["com.zoho.crm.api.users_unavailability.APIException","com.zoho.crm.api.users_unavailability.SuccessResponse"],"interface":true},"com.zoho.crm.api.send_mail.DataSubjectRequest":{"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.related_records.GetRelatedRecordHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.entity_scores.EntityStructureWithModule":{"module_1":{"structure_name":"com.zoho.crm.api.entity_scores.ModuleStructure","name":"module","type":"com.zoho.crm.api.entity_scores.ModuleStructure"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.blueprint.LookupField":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.users.ActionResponse":{"classes":["com.zoho.crm.api.users.APIException","com.zoho.crm.api.users.SuccessResponse"],"interface":true},"com.zoho.crm.api.fiscal_year.ActionHandler":{"classes":["com.zoho.crm.api.fiscal_year.APIException","com.zoho.crm.api.fiscal_year.ActionWrapper"],"interface":true},"com.zoho.crm.api.currencies.BaseCurrencyWrapper":{"base_currency":{"structure_name":"com.zoho.crm.api.currencies.BaseCurrency","name":"base_currency","type":"com.zoho.crm.api.currencies.BaseCurrency"}},"com.zoho.crm.api.record_locking.ErrorHandler":{"classes":["com.zoho.crm.api.record_locking.APIException","com.zoho.crm.api.record_locking.ErrorWrapper"],"interface":true},"com.zoho.crm.api.business_hours.ResponseWrapper":{"business_hours":{"structure_name":"com.zoho.crm.api.business_hours.BusinessHours","name":"business_hours","type":"com.zoho.crm.api.business_hours.BusinessHours"}},"com.zoho.crm.api.users_transfer_delete.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","ID_ALREADY_DELETED","CANNOT_UPDATE_DELETED_USER","AUTHORIZATION_FAILED","PATTERN_NOT_MATCHED","INVALID_REQUEST","LICENSE_LIMIT_EXCEEDED","DUPLICATE_DATA","UNAPPROVABLE","EMAIL_UPDATE_NOT_ALLOWED","ID_ALREADY_DEACTIVATED","ID_ALREADY_ACTIVE","FEATURE_PERMISSION","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","EMAIL_UPDATE_NOT_ALOWED","INVALID_MODULE","BAD_REQUEST","NO_PERMISSION","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"id","type":"Long"},{"name":"email","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"owner_status","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid data","required field not found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Please check whether the input values are correct","the id given seems to be invalid","Cannot add user under CRM Plus account. Kindly use CRMPlus URL to add user","Request exceeds your license limit. Need to upgrade in order to add","Failed to add user since same email id is already present","Email Id should not contain @skydesk.jp. Please choose a different email id","Invalid Email Id. Please choose a different email id","Cannot add user for CRMPlus account from CRM. Kindly add user through CRMPlus","Company Name is required","Error occurred in resending the invitation of CRMPLUS user in CRM account","Cannot update the time_zone of another User","Either trial has expired or user does not have sufficient privilege to perform this action","Error occurred while updating CRMPlus User in CRM Account","invalid_data","Deleted user cannot be updated","Re-invite is not allowed for a confirmed user","Cannot update email of a confirmed CRM User","User with same email id is already in CRM Plus","User is already deactivated","Primary Contact cannot be deactivated","User is already active","Share among Subordinates Feature is not available","Profile and Role cannot be Updated by the user.","the_id_given_seems_to_be_invalid","Primary contact cannot be deleted","User is already deleted","User does not have sufficient privilege to delete users","Cannot update email of a confirmed CRM User"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.AssociatedGroup":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"}},"com.zoho.crm.api.taxes.Preference":{"auto_populate_tax":{"name":"auto_populate_tax","type":"Boolean"},"modify_tax_rates":{"name":"modify_tax_rates","type":"Boolean"}},"com.zoho.crm.api.mail_merge.SignMailMergeWrapper":{"sign_mail_merge":{"structure_name":"com.zoho.crm.api.mail_merge.SignMailMerge","name":"sign_mail_merge","type":"List"}},"com.zoho.crm.api.user_groups.SuccessResponse":{"code":{"values":["SUCCESS","SCHEDULED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"job_id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_transfer_delete.ActionWrapper":{"transfer_and_delete":{"structure_name":"com.zoho.crm.api.users_transfer_delete.ActionResponse","name":"transfer_and_delete","type":"List"}},"com.zoho.crm.api.layouts.APIException":{"code":{"values":["InvalidModule","REQUIRED_PARAM_MISSING","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.change_owner.ActionResponse":{"classes":["com.zoho.crm.api.change_owner.APIException","com.zoho.crm.api.change_owner.SuccessResponse"],"interface":true},"com.zoho.crm.api.users.CustomizeInfo":{"notes_desc":{"name":"notes_desc","type":"Object"},"show_right_panel":{"name":"show_right_panel","type":"Object"},"bc_view":{"name":"bc_view","type":"Object"},"show_home":{"name":"show_home","type":"Boolean"},"show_detail_view":{"name":"show_detail_view","type":"Boolean"},"unpin_recent_item":{"name":"unpin_recent_item","type":"Object"}},"com.zoho.crm.api.contact_roles.DeleteRolesParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.bulk_read.ResponseHandler":{"classes":["com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.FileBodyWrapper","com.zoho.crm.api.bulk_read.ResponseWrapper"],"interface":true},"com.zoho.crm.api.fields.ForecastCategory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.query.APIException":{"code":{"values":["INVALID_URL_PATTERN","INVALID_QUERY","SYNTAX_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_REQUEST_METHOD","INVALID_TOKEN","BAD_REQUEST","NO_PERMISSION","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"near","type":"String"},{"name":"column","type":"Integer"},{"name":"line","type":"Integer"},{"name":"clause","type":"String"},{"name":"by","type":"String"},{"name":"limit","type":"Integer"},{"name":"column_name","type":"String"},{"name":"reason","type":"String"},{"name":"module","type":"String"},{"name":"data_type","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"operator","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid query formed","value given seems to be invalid for the column","data type not supported","column given seems to be invalid"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fiscal_year.ResponseWrapper":{"fiscal_year":{"structure_name":"com.zoho.crm.api.fiscal_year.Year","name":"fiscal_year","type":"com.zoho.crm.api.fiscal_year.Year"}},"com.zoho.crm.api.assignment_rules.CreatedBy":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"email":{"name":"email","type":"String"},"zuid":{"name":"zuid","type":"String"}},"com.zoho.crm.api.pipeline.GetpipelineParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.bulk_write.UploadFileHeader":{"feature":{"values":["bulk-write"],"name":"feature","type":"String"},"X_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.custom_views.Criteria":{"comparator":{"name":"comparator","type":"String"},"field":{"structure_name":"com.zoho.crm.api.custom_views.Field","name":"field","type":"com.zoho.crm.api.custom_views.Field"},"group_operator":{"name":"group_operator","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.layouts.Layouts":{"has_more_profiles":{"name":"has_more_profiles","type":"Boolean"},"created_time":{"name":"created_time","type":"DateTime"},"convert_mapping":{"structure_name":"com.zoho.crm.api.layouts.ConvertMapping","name":"convert_mapping","type":"com.zoho.crm.api.layouts.ConvertMapping"},"visible":{"name":"visible","type":"Boolean"},"created_for":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_for","type":"com.zoho.crm.api.users.MinifiedUser"},"profiles":{"structure_name":"com.zoho.crm.api.layouts.Profiles","name":"profiles","type":"List"},"source":{"name":"source","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"sections":{"structure_name":"com.zoho.crm.api.layouts.Sections","name":"sections","type":"List"},"display_type":{"name":"display_type","type":"Integer"},"display_label":{"name":"display_label","type":"String"},"show_business_card":{"name":"show_business_card","type":"Boolean"},"actions_allowed":{"structure_name":"com.zoho.crm.api.layouts.ActionsAllowed","name":"actions_allowed","type":"com.zoho.crm.api.layouts.ActionsAllowed"},"modified_time":{"name":"modified_time","type":"DateTime"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"generated_type":{"name":"generated_type","type":"String"},"id":{"name":"id","type":"Long"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.record.Widget":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.appointment_preference.Layout":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","REQUIRED_PARAM_MISSING","INVALID_DATA","INTERNAL_SERVER_ERROR","DUPLICATE_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"param_name","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"regex","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.user_groups.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","REQUIRED_PARAM_MISSING","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"regex","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.DelinkRecordsHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.business_hours.BreakHoursCustomTiming":{"days":{"values":["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],"name":"days","type":"com.zoho.crm.api.util.Choice"},"business_timing":{"name":"business_timing","sub-type":"String","type":"List"}},"com.zoho.crm.api.org.LicenseDetails":{"paid_expiry":{"name":"paid_expiry","type":"DateTime"},"users_license_purchased":{"name":"users_license_purchased","type":"Integer"},"trial_type":{"name":"trial_type","type":"String"},"trial_expiry":{"name":"trial_expiry","type":"String"},"paid":{"name":"paid","type":"Boolean"},"paid_type":{"name":"paid_type","type":"String"},"trial_action":{"name":"trial_action","type":"String"}},"com.zoho.crm.api.roles.APIException":{"code":{"values":["INVALID_MODULE","REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","PATTERN_NOT_MATCHED","INVALID_DATA","DUPLICATE_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param_name","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"role_status","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.profiles.Section":{"name":{"name":"name","type":"String"},"categories":{"structure_name":"com.zoho.crm.api.profiles.Category","name":"categories","type":"List"}},"com.zoho.crm.api.mass_change_owner.ResponseHandler":{"classes":["com.zoho.crm.api.mass_change_owner.ResponseWrapper","com.zoho.crm.api.mass_change_owner.APIException"],"interface":true},"com.zoho.crm.api.mass_convert.Convert":{"portal_user_type":{"structure_name":"com.zoho.crm.api.mass_convert.PortalUserType","name":"portal_user_type","type":"com.zoho.crm.api.mass_convert.PortalUserType"},"apply_assignment_threshold":{"name":"apply_assignment_threshold","type":"Boolean"},"assign_to":{"structure_name":"com.zoho.crm.api.mass_convert.AssignTo","name":"assign_to","type":"com.zoho.crm.api.mass_convert.AssignTo"},"deals":{"structure_name":"com.zoho.crm.api.record.Record","module":"Deals","name":"Deals","type":"com.zoho.crm.api.record.Record"},"carry_over_tags":{"structure_name":"com.zoho.crm.api.mass_convert.MoveAttachmentsTo","name":"carry_over_tags","type":"List"},"related_modules":{"structure_name":"com.zoho.crm.api.mass_convert.RelatedModule","name":"related_modules","type":"List"},"ids":{"name":"ids","sub-type":"Integer","type":"List"},"move_attachments_to":{"structure_name":"com.zoho.crm.api.mass_convert.MoveAttachmentsTo","name":"move_attachments_to","type":"com.zoho.crm.api.mass_convert.MoveAttachmentsTo"}},"com.zoho.crm.api.reschedule_history.AppointmentName":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.related_records.DeleteRelatedRecordUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.pipeline.GetPipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.portals.ResponseHandler":{"classes":["com.zoho.crm.api.portals.ResponseWrapper","com.zoho.crm.api.portals.APIException"],"interface":true},"com.zoho.crm.api.email_templates.ResponseWrapper":{"email_templates":{"structure_name":"com.zoho.crm.api.email_templates.EmailTemplate","name":"email_templates","type":"List"},"info":{"structure_name":"com.zoho.crm.api.email_templates.Info","name":"info","type":"com.zoho.crm.api.email_templates.Info"}},"com.zoho.crm.api.mass_change_owner.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.mass_change_owner.Status","name":"data","type":"List"}},"com.zoho.crm.api.bulk_read.ActionHandler":{"classes":["com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.bulk_read.ActionWrapper"],"interface":true},"com.zoho.crm.api.fields.QueryDetails":{"query_id":{"name":"query_id","type":"Long"},"criteria":{"name":"criteria","type":"Map"}},"com.zoho.crm.api.deal_contact_roles.ActionResponse":{"classes":["com.zoho.crm.api.deal_contact_roles.SuccessResponse","com.zoho.crm.api.deal_contact_roles.APIException"],"interface":true},"com.zoho.crm.api.users_territories.Territory":{"manager":{"structure_name":"com.zoho.crm.api.users_territories.Manager","name":"Manager","type":"com.zoho.crm.api.users_territories.Manager"},"name":{"name":"Name","type":"String"},"id":{"name":"id","type":"String"},"reporting_to":{"structure_name":"com.zoho.crm.api.users_territories.Manager","name":"Reporting_To","type":"com.zoho.crm.api.users_territories.Manager"}},"com.zoho.crm.api.record.DeleteRecordHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.notes.DeleteNotesParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.tags.APIException":{"code":{"values":["INVALID_DATA","REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","INVALID_MODULE","DUPLICATE_DATA","TAG_ID_NOT_FOUND","FAILURE","NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","LICENSE_LIMIT_EXCEEDED","INVALID_REQUEST","EXPECTED_FIELD_MISSING","NOT_ALLOWED","BAD_REQUEST","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"structure_name":"com.zoho.crm.api.tags.ErrorDetails","name":"expected_fields","type":"List"},{"name":"param_name","type":"String"},{"structure_name":"com.zoho.crm.api.tags.AssociatedPlaces","name":"associated_places","type":"List"},{"name":"id","type":"String"},{"name":"param","type":"String"},{"name":"permissions","sub-type":"String","type":"List"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid data","tags not found","required field not found","special characters found in the given name","One of the expected parameter is missing","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","The relation name given seems to be invalid","duplicate data","tag edition limit exceeded","tags not updated successfully","the module name given seems to be invalid","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.share_records.GetSharedRecordDetailsParam":{"view":{"values":["summary","manage"],"name":"view","type":"String"},"sharedTo":{"name":"sharedTo","type":"Long"}},"com.zoho.crm.api.mass_change_owner.Owner":{"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.shift_hours.BodyWrapper":{"shift_hours":{"structure_name":"com.zoho.crm.api.shift_hours.ShiftHours","name":"shift_hours","type":"List"}},"com.zoho.crm.api.service_preference.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR","INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"structure_name":"com.zoho.crm.api.util.Choice","values":["create_deal","do_not_create_deal"],"name":"supported_values","type":"List"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.field_map_dependency.APIException":{"code":{"values":["INVALID_MODULE","INVALID_DATA","MANDATORY_NOT_FOUND","REQUIRED_PARAM_MISSING","NOT_SUPPORTED","INVALID_URL_PATTERN","INVALID_TOKEN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.download_inline_images.ResponseHandler":{"classes":["com.zoho.crm.api.download_inline_images.FileBodyWrapper","com.zoho.crm.api.download_inline_images.APIException"],"interface":true},"com.zoho.crm.api.from_addresses.ResponseWrapper":{"from_addresses":{"structure_name":"com.zoho.crm.api.from_addresses.Address","name":"from_addresses","type":"List"}},"com.zoho.crm.api.service_preference.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["Appointments preferences updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notifications.BodyWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notifications.Notification","name":"watch","max-length":100,"type":"List","min-length":1}},"com.zoho.crm.api.attachments.ParentId":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fiscal_year.ResponseHandler":{"classes":["com.zoho.crm.api.fiscal_year.APIException","com.zoho.crm.api.fiscal_year.ResponseWrapper"],"interface":true},"com.zoho.crm.api.mail_merge.DownloadMailMerge":{"password":{"name":"password","type":"String"},"mail_merge_template":{"structure_name":"com.zoho.crm.api.mail_merge.MailMergeTemplate","name":"mail_merge_template","type":"com.zoho.crm.api.mail_merge.MailMergeTemplate"},"output_format":{"values":["pdf","docx","html"],"name":"output_format","type":"com.zoho.crm.api.util.Choice"},"file_name":{"name":"file_name","max-length":255,"type":"String"}},"com.zoho.crm.api.wizards.ResponseWrapper":{"wizards":{"structure_name":"com.zoho.crm.api.wizards.Wizard","name":"wizards","type":"List"}},"com.zoho.crm.api.deal_contact_roles.ActionHandler":{"classes":["com.zoho.crm.api.deal_contact_roles.ActionWrapper","com.zoho.crm.api.deal_contact_roles.APIException"],"interface":true},"com.zoho.crm.api.record.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.service_preference.ActionResponse":{"classes":["com.zoho.crm.api.service_preference.APIException","com.zoho.crm.api.service_preference.SuccessResponse"],"interface":true},"com.zoho.crm.api.user_groups.SourcesWrapper":{"sources":{"structure_name":"com.zoho.crm.api.user_groups.Sources","name":"sources","type":"List"},"info":{"structure_name":"com.zoho.crm.api.user_groups.Info","name":"info","type":"com.zoho.crm.api.user_groups.Info"}},"com.zoho.crm.api.users.Owner":{"name":{"name":"name","type":"String"},"last_name":{"name":"last_name","type":"String"},"id":{"name":"id","type":"Long"},"first_name":{"name":"first_name","type":"String"}},"com.zoho.crm.api.territories.ReportingTo":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.related_records.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","min-length":1}},"com.zoho.crm.api.backup.ResponseHandler":{"classes":["com.zoho.crm.api.backup.UrlsWrapper","com.zoho.crm.api.backup.HistoryWrapper","com.zoho.crm.api.backup.FileBodyWrapper","com.zoho.crm.api.backup.BodyWrapper","com.zoho.crm.api.backup.APIException"],"interface":true},"com.zoho.crm.api.tags.ConflictWrapper":{"conflict_id":{"name":"conflict_id","type":"String"}},"com.zoho.crm.api.wizards.Resource":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.record.MultiSelectLookup":{"fieldname":{"name":"fieldName","type":"Map"},"id":{"name":"id","type":"Long"},"has_more":{"name":"$has_more","type":"Map"}},"com.zoho.crm.api.custom_views.Info":{"per_page":{"name":"per_page","type":"Integer"},"default":{"name":"default","type":"Long"},"count":{"name":"count","type":"Integer"},"translation":{"structure_name":"com.zoho.crm.api.custom_views.Translation","name":"translation","type":"com.zoho.crm.api.custom_views.Translation"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.bulk_read.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.JobDetail","name":"data","type":"List"}},"com.zoho.crm.api.variables.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.ExistingTag":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record_locking.RecordActionLocked":{"data":{"name":"data","sub-type":"Object","type":"List"}},"com.zoho.crm.api.share_records.Dependee":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.taxes.ActionHandler":{"classes":["com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.taxes.APIException"],"interface":true},"com.zoho.crm.api.notes.GetNoteParam":{"fields":{"name":"fields","type":"String","required":true}},"com.zoho.crm.api.portals.ResponseWrapper":{"portals":{"structure_name":"com.zoho.crm.api.portals.Portals","name":"portals","type":"List"}},"com.zoho.crm.api.files.UploadFilesParam":{"type":{"name":"type","type":"String"}},"com.zoho.crm.api.wizards.ExemptedPortalUserType":{"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.taxes.Tax":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"value":{"regex":"[0-9]{7}","name":"value","type":"Double"},"delete":{"name":"_delete","type":"Boolean"}},"com.zoho.crm.api.territories.DeleteTerritoryParam":{"delete_previous_forecasts":{"name":"delete_previous_forecasts","type":"Boolean"}},"com.zoho.crm.api.wizards.Field":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.related_lists.RelatedList":{"visible":{"name":"visible","type":"Boolean"},"module_1":{"structure_name":"com.zoho.crm.api.related_lists.ModuleMap","name":"module","type":"com.zoho.crm.api.related_lists.ModuleMap"},"sort_by":{"structure_name":"com.zoho.crm.api.related_lists.Field","name":"sort_by","type":"com.zoho.crm.api.related_lists.Field"},"type":{"name":"type","type":"String"},"connectedmodule":{"name":"connectedmodule","type":"String"},"linkingmodule":{"name":"linkingmodule","type":"String"},"sequence_number":{"name":"sequence_number","type":"String"},"display_label":{"name":"display_label","type":"String"},"customize_sort":{"name":"customize_sort","type":"Boolean"},"customize_fields":{"name":"customize_fields","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"customize_display_label":{"name":"customize_display_label","type":"Boolean"},"name":{"name":"name","type":"String"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long"},"href":{"name":"href","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.related_lists.Field","name":"fields","type":"List"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.custom_views.Translation":{"public_views":{"name":"public_views","type":"String"},"other_users_views":{"name":"other_users_views","type":"String"},"shared_with_me":{"name":"shared_with_me","type":"String"},"created_by_me":{"name":"created_by_me","type":"String"}},"com.zoho.crm.api.users_transfer_delete.ActionHandler":{"classes":["com.zoho.crm.api.users_transfer_delete.APIException","com.zoho.crm.api.users_transfer_delete.ActionWrapper"],"interface":true},"com.zoho.crm.api.territories.DeleteTerritoriesParam":{"delete_previous_forecasts":{"name":"delete_previous_forecasts","type":"Boolean"},"ids":{"name":"ids","type":"String"}},"com.zoho.crm.api.email_sharing.ShareFromUser":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"_type","type":"String"}},"com.zoho.crm.api.users_territories.TransferWrapper":{"transfer_and_delink":{"structure_name":"com.zoho.crm.api.users_territories.TransferAndDelink","name":"transfer_and_delink","type":"List"}},"com.zoho.crm.api.custom_views.CustomView":{"display_value":{"name":"display_value","type":"String"},"created_time":{"name":"created_time","type":"DateTime"},"access_type":{"values":["public","only_to_me","shared"],"name":"access_type","type":"com.zoho.crm.api.util.Choice"},"module_1":{"structure_name":"com.zoho.crm.api.custom_views.Owner","name":"module","type":"com.zoho.crm.api.custom_views.Owner"},"criteria":{"structure_name":"com.zoho.crm.api.custom_views.Criteria","name":"criteria","type":"com.zoho.crm.api.custom_views.Criteria"},"system_name":{"name":"system_name","type":"String"},"sort_by":{"structure_name":"com.zoho.crm.api.custom_views.SortBy","name":"sort_by","type":"com.zoho.crm.api.custom_views.SortBy"},"created_by":{"structure_name":"com.zoho.crm.api.custom_views.Owner","name":"created_by","type":"com.zoho.crm.api.custom_views.Owner"},"shared_to":{"structure_name":"com.zoho.crm.api.custom_views.SharedTo","name":"shared_to","type":"List"},"offline":{"name":"offline","type":"Boolean"},"default":{"name":"default","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.custom_views.Owner","name":"modified_by","type":"com.zoho.crm.api.custom_views.Owner"},"system_defined":{"name":"system_defined","type":"Boolean"},"id":{"name":"id","type":"Long"},"category":{"name":"category","type":"String"},"last_accessed_time":{"name":"last_accessed_time","type":"DateTime"},"locked":{"name":"locked","type":"Boolean"},"fields":{"structure_name":"com.zoho.crm.api.custom_views.Fields","name":"fields","type":"List"},"favorite":{"name":"favorite","type":"Boolean"},"sort_order":{"values":["asc","desc"],"name":"sort_order","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variables.Variable":{"read_only":{"name":"read_only","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"source":{"name":"source","type":"String"},"id":{"name":"id","type":"Long"},"type":{"values":["text","integer","percent","double","currency","date","datetime","email","phone","website","textarea","checkbox","long"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"variable_group":{"structure_name":"com.zoho.crm.api.variables.VariableGroup","name":"variable_group","type":"com.zoho.crm.api.variables.VariableGroup"},"value":{"name":"value","type":"Object"}},"com.zoho.crm.api.fields.Crypt":{"mode":{"name":"mode","type":"String"},"column":{"name":"column","type":"String"},"encfldids":{"name":"encFldIds","sub-type":"String","type":"List"},"table":{"name":"table","type":"String"},"notify":{"name":"notify","type":"String"},"status":{"name":"status","type":"Integer"}},"com.zoho.crm.api.currencies.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.shift_hours.ActionResponse":{"classes":["com.zoho.crm.api.shift_hours.APIException","com.zoho.crm.api.shift_hours.SuccessResponse"],"interface":true},"com.zoho.crm.api.fields.HistoryTracking":{"module_1":{"structure_name":"com.zoho.crm.api.fields.HistoryTrackingModule","name":"module","type":"com.zoho.crm.api.fields.HistoryTrackingModule"},"duration_configured_field":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"duration_configured_field","type":"com.zoho.crm.api.modules.MinifiedModule"}},"com.zoho.crm.api.custom_views.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.ActionResponse":{"classes":["com.zoho.crm.api.modules.SuccessResponse","com.zoho.crm.api.modules.APIException"],"interface":true},"com.zoho.crm.api.available_currencies.Currency":{"display_value":{"name":"display_value","type":"String"},"decimal_separator":{"name":"decimal_separator","type":"String"},"symbol":{"name":"symbol","type":"String"},"thousand_separator":{"name":"thousand_separator","type":"String"},"display_name":{"name":"display_name","type":"String"},"iso_code":{"name":"iso_code","type":"String"},"decimal_places":{"name":"decimal_places","type":"String"}},"com.zoho.crm.api.mass_delete_cvid.CvidBodyWrapper":{"cvid":{"name":"cvid","type":"Long"},"territory":{"structure_name":"com.zoho.crm.api.mass_delete_cvid.Territory","name":"territory","type":"com.zoho.crm.api.mass_delete_cvid.Territory"}},"com.zoho.crm.api.shift_hours.UpdateShiftHourHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.territories.Field":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.profiles.MinifiedProfile":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"delete":{"name":"_delete","type":"Boolean"}},"com.zoho.crm.api.portal_user_type.APIException":{"code":{"values":["INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.roles.BodyWrapper":{"roles":{"structure_name":"com.zoho.crm.api.roles.Role","name":"roles","type":"List"}},"com.zoho.crm.api.currencies.APIException":{"code":{"values":["INTERNAL_SERVER_ERROR","ALREADY_ENABLED","INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"regex","type":"String"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"related_status","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.portal_invite.ActionWrapper":{"portal_invite":{"structure_name":"com.zoho.crm.api.portal_invite.ActionResponse","name":"portal_invite","type":"List"}},"com.zoho.crm.api.record.MassUpdate":{"updated_count":{"name":"Updated_Count","type":"Integer"},"total_count":{"name":"Total_Count","type":"Integer"},"not_updated_count":{"name":"Not_Updated_Count","type":"Integer"},"failed_count":{"name":"Failed_Count","type":"Integer"},"status":{"values":["COMPLETED","SCHEDULED","RUNNING","FAILED"],"name":"Status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.GetRelatedRecordsHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.profiles.Info":{"license_limit":{"name":"license_limit","type":"Integer"}},"com.zoho.crm.api.profiles.PermissionDetail":{"display_label":{"name":"display_label","type":"String"},"module_1":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"customizable":{"name":"customizable","type":"Boolean"},"id":{"name":"id","type":"Long"},"enabled":{"values":[true],"name":"enabled","type":"com.zoho.crm.api.util.Choice"},"parent_permissions":{"name":"parent_permissions","sub-type":"Integer","type":"List"}},"com.zoho.crm.api.email_templates.LastVersionStatistics":{"tracked":{"name":"tracked","type":"Integer"},"delivered":{"name":"delivered","type":"Integer"},"opened":{"name":"opened","type":"Integer"},"bounced":{"name":"bounced","type":"Integer"},"sent":{"name":"sent","type":"Integer"},"clicked":{"name":"clicked","type":"Integer"}},"com.zoho.crm.api.custom_views.Field":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.custom_views.PinFields":{"pin":{"values":[false],"name":"_pin","type":"com.zoho.crm.api.util.Choice"},"api_name":{"name":"api_name","type":"String"}},"com.zoho.crm.api.backup.ActionResponse":{"classes":["com.zoho.crm.api.backup.SuccessResponse","com.zoho.crm.api.backup.APIException"],"interface":true},"com.zoho.crm.api.backup.BodyWrapper":{"backup":{"structure_name":"com.zoho.crm.api.backup.Backup","name":"backup","type":"com.zoho.crm.api.backup.Backup"}},"com.zoho.crm.api.related_records.UpdateRelatedRecordUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.layouts.ActionsAllowed":{"edit":{"name":"edit","type":"Boolean"},"rename":{"name":"rename","type":"Boolean"},"clone":{"name":"clone","type":"Boolean"},"downgrade":{"name":"downgrade","type":"Boolean"},"delete":{"name":"delete","type":"Boolean"},"deactivate":{"name":"deactivate","type":"Boolean"},"set_layout_permissions":{"name":"set_layout_permissions","type":"Boolean"}},"com.zoho.crm.api.contact_roles.ResponseHandler":{"classes":["com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.BodyWrapper"],"interface":true},"com.zoho.crm.api.fiscal_year.ActionWrapper":{"fiscal_year":{"structure_name":"com.zoho.crm.api.fiscal_year.ActionResponse","name":"fiscal_year","interface":true,"type":"com.zoho.crm.api.fiscal_year.ActionResponse"}},"com.zoho.crm.api.wizards.ButtonBackground":{"button_background":{"name":"button_background","sub-type":"String","type":"List"}},"com.zoho.crm.api.territories.TransferBodyWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.TransferTerritory","name":"territories","type":"List"}},"com.zoho.crm.api.email_templates.Attachment":{"size":{"name":"size","type":"Long"},"file_name":{"name":"file_name","type":"String"},"file_id":{"name":"file_id","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.portal_invite.BodyWrapper":{"portal_invite":{"structure_name":"com.zoho.crm.api.portal_invite.PortalInvite","name":"portal_invite","type":"List"}},"com.zoho.crm.api.users_territories.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.send_mail.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.send_mail.Data","name":"data","type":"List"}},"com.zoho.crm.api.wizards.ResponseHandler":{"classes":["com.zoho.crm.api.wizards.APIException","com.zoho.crm.api.wizards.ResponseWrapper"],"interface":true},"com.zoho.crm.api.mass_change_owner.Status":{"updated_count":{"name":"Updated_Count","type":"Integer"},"total_count":{"name":"Total_Count","type":"Integer"},"not_updated_count":{"name":"Not_Updated_Count","type":"Integer"},"failed_count":{"name":"Failed_Count","type":"Integer"},"status":{"values":["COMPLETED","SCHEDULED","RUNNING","FAILED"],"name":"Status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.from_addresses.ResponseHandler":{"classes":["com.zoho.crm.api.from_addresses.ResponseWrapper","com.zoho.crm.api.from_addresses.APIException"],"interface":true},"com.zoho.crm.api.email_sharing.ResponseHandler":{"classes":["com.zoho.crm.api.email_sharing.APIException","com.zoho.crm.api.email_sharing.ResponseWrapper"],"interface":true},"com.zoho.crm.api.notifications.ResponseWrapper":{"watch":{"structure_name":"com.zoho.crm.api.notifications.Notification","name":"watch","type":"List"},"info":{"structure_name":"com.zoho.crm.api.notifications.Info","name":"info","type":"com.zoho.crm.api.notifications.Info"}},"com.zoho.crm.api.record_locking.LockedForS":{"module_1":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"}],"name":"module","type":"Map"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.mass_convert.GetJobStatusParam":{"job_id":{"name":"job_id","type":"Long","required":true}},"com.zoho.crm.api.templates.Templates":{"folder":{"structure_name":"com.zoho.crm.api.templates.Folder","name":"folder","type":"com.zoho.crm.api.templates.Folder"},"modified_time":{"name":"modified_time","type":"DateTime"},"module_1":{"name":"module","type":"String"},"subject":{"name":"subject","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.templates.Folder","name":"modified_by","type":"com.zoho.crm.api.templates.Folder"},"name":{"name":"name","type":"String"},"consent_linked":{"name":"consent_linked","type":"Boolean"},"id":{"name":"id","type":"Long"},"favourite":{"name":"favourite","type":"Boolean"},"attachment_present":{"name":"attachment_present","type":"Boolean"}},"com.zoho.crm.api.shift_hours.CreateShiftsHoursHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.entity_scores.EntityScores":{"scoring_rule":{"structure_name":"com.zoho.crm.api.entity_scores.ScoringRuleStructure","name":"Scoring_Rule","type":"com.zoho.crm.api.entity_scores.ScoringRuleStructure"},"score":{"name":"Score","type":"Integer"},"zia_visions":{"name":"$zia_visions","type":"Boolean"},"touch_point_negative_score":{"name":"Touch_Point_Negative_Score","type":"Integer"},"touch_point_score":{"name":"Touch_Point_Score","type":"Integer"},"positive_score":{"name":"Positive_Score","type":"Integer"},"field_states":{"name":"$field_states","sub-type":"Object","type":"List"},"id":{"name":"id","type":"Long"},"touch_point_positive_score":{"name":"Touch_Point_Positive_Score","type":"Integer"},"entity":{"structure_name":"com.zoho.crm.api.entity_scores.EntityStructureGroup","name":"Entity","interface":true,"type":"com.zoho.crm.api.entity_scores.EntityStructureGroup"},"negative_score":{"name":"Negative_Score","type":"Integer"}},"com.zoho.crm.api.scoring_rules.ScoringRule":{"layout":{"structure_name":"com.zoho.crm.api.scoring_rules.Layout","name":"layout","type":"com.zoho.crm.api.scoring_rules.Layout"},"created_time":{"name":"created_time","type":"String"},"modified_time":{"name":"modified_time","type":"String"},"field_rules":{"structure_name":"com.zoho.crm.api.scoring_rules.FieldRule","name":"field_rules","type":"List"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Modules","name":"module","type":"com.zoho.crm.api.modules.Modules"},"name":{"name":"name","max-length":25,"type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"description":{"name":"description","max-length":500,"type":"String"},"active":{"name":"active","type":"Boolean"},"id":{"name":"id","type":"String"},"signal_rules":{"structure_name":"com.zoho.crm.api.scoring_rules.SignalRule","name":"signal_rules","type":"List"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"}},"com.zoho.crm.api.blueprint.MultiSelectLookup":{"display_label":{"name":"display_label","type":"String"},"linking_module":{"name":"linking_module","type":"String"},"lookup_apiname":{"name":"lookup_apiname","type":"String"},"api_name":{"name":"api_name","type":"String"},"connectedlookup_apiname":{"name":"connectedlookup_apiname","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.layouts.SectionField":{"associated_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"associated_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"webhook":{"name":"webhook","type":"Boolean"},"operation_type":{"structure_name":"com.zoho.crm.api.fields.OperationType","name":"operation_type","type":"com.zoho.crm.api.fields.OperationType"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.fields.Tooltip","name":"tooltip","type":"com.zoho.crm.api.fields.Tooltip"},"type":{"name":"type","type":"String"},"required":{"name":"required","type":"Boolean"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"display_label":{"name":"display_label","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.fields.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.fields.AssociationDetails"},"businesscard_supported":{"name":"businesscard_supported","type":"Boolean"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"sharing_properties":{"structure_name":"com.zoho.crm.api.modules.SharingProperties","name":"sharing_properties","type":"com.zoho.crm.api.modules.SharingProperties"},"id":{"name":"id","type":"Long"},"filterable":{"name":"filterable","type":"Boolean"},"created_time":{"name":"created_time","type":"DateTime"},"visible":{"name":"visible","type":"Boolean"},"refer_from_field":{"structure_name":"com.zoho.crm.api.fields.ReferFromField","name":"refer_from_field","type":"com.zoho.crm.api.fields.ReferFromField"},"profiles":{"structure_name":"com.zoho.crm.api.fields.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.fields.ViewType","name":"view_type","type":"com.zoho.crm.api.fields.ViewType"},"subform":{"structure_name":"com.zoho.crm.api.layouts.SectionSubformField","name":"subform","type":"com.zoho.crm.api.layouts.SectionSubformField"},"separator":{"name":"separator","type":"Boolean"},"searchable":{"name":"searchable","type":"Boolean"},"show_type":{"name":"show_type","type":"Integer"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"enable_colour_code":{"name":"enable_colour_code","type":"Boolean"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"virtual_field":{"name":"virtual_field","type":"Boolean"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.fields.Crypt","name":"crypt","type":"com.zoho.crm.api.fields.Crypt"},"created_source":{"name":"created_source","type":"String"},"available_in_user_layout":{"name":"available_in_user_layout","type":"Boolean"},"allowed_modules":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"allowed_modules","type":"List"},"display_type":{"name":"display_type","type":"Integer"},"validation_rule":{"name":"validation_rule","type":"Map"},"ui_type":{"name":"ui_type","type":"Integer"},"modified_time":{"name":"modified_time","type":"DateTime"},"section_id":{"name":"section_id","type":"Integer"},"file_upolad_optionlist":{"structure_name":"com.zoho.crm.api.fields.FileUpoladOption","name":"file_upolad_optionlist","type":"List"},"quick_sequence_number":{"name":"quick_sequence_number","type":"String"},"email_parser":{"structure_name":"com.zoho.crm.api.fields.EmailParser","name":"email_parser","type":"com.zoho.crm.api.fields.EmailParser"},"currency":{"structure_name":"com.zoho.crm.api.fields.Currency","name":"currency","type":"com.zoho.crm.api.fields.Currency"},"multiuserlookup":{"structure_name":"com.zoho.crm.api.fields.Multiselectlookup","name":"multiuserlookup","type":"com.zoho.crm.api.fields.Multiselectlookup"},"lookup":{"structure_name":"com.zoho.crm.api.fields.Lookup","name":"lookup","type":"com.zoho.crm.api.fields.Lookup"},"hipaa_compliance":{"structure_name":"com.zoho.crm.api.fields.HipaaCompliance","name":"hipaa_compliance","type":"com.zoho.crm.api.fields.HipaaCompliance"},"custom_field":{"name":"custom_field","type":"Boolean"},"convert_mapping":{"structure_name":"com.zoho.crm.api.fields.ConvertMapping","name":"convert_mapping","type":"com.zoho.crm.api.fields.ConvertMapping"},"rollup_summary":{"structure_name":"com.zoho.crm.api.fields.RollupSummary","name":"rollup_summary","type":"com.zoho.crm.api.fields.RollupSummary"},"length":{"values":[120],"name":"length","type":"com.zoho.crm.api.util.Choice"},"column_name":{"name":"column_name","type":"String"},"default_value":{"name":"default_value","type":"String"},"display_field":{"name":"display_field","type":"Boolean"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"sortable":{"name":"sortable","type":"Boolean"},"sequence_number":{"name":"sequence_number","type":"Integer"},"global_picklist":{"name":"global_picklist","type":"Object"},"history_tracking":{"structure_name":"com.zoho.crm.api.fields.HistoryTracking","name":"history_tracking","type":"com.zoho.crm.api.fields.HistoryTracking"},"data_type":{"values":["formula","text","boolean","picklist","datetime","website","autonumber","textarea","email","phone","integer","double","date","formula","text","boolean","picklist","datetime","website","autonumber","textarea","lookup","email","userlookup","phone","integer","double","date"],"name":"data_type","type":"com.zoho.crm.api.util.Choice"},"sub_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"sub_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"formula":{"structure_name":"com.zoho.crm.api.fields.Formula","name":"formula","type":"com.zoho.crm.api.fields.Formula"},"additional_column":{"name":"additional_column","type":"String"},"hipaa_compliance_enabled":{"name":"hipaa_compliance_enabled","type":"Boolean"},"category":{"name":"category","type":"Integer"},"decimal_place":{"name":"decimal_place","type":"Integer"},"mass_update":{"name":"mass_update","type":"Boolean"},"blueprint_supported":{"name":"blueprint_supported","type":"Boolean"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.fields.Multiselectlookup","name":"multiselectlookup","type":"com.zoho.crm.api.fields.Multiselectlookup"},"auto_number":{"structure_name":"com.zoho.crm.api.fields.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.fields.AutoNumber"}},"com.zoho.crm.api.taxes.ActionWrapper":{"org_taxes":{"structure_name":"com.zoho.crm.api.taxes.ActionResponse","name":"org_taxes","interface":true,"type":"com.zoho.crm.api.taxes.ActionResponse"}},"com.zoho.crm.api.user_groups.Resource":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.associate_email.ModuleMap":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.reschedule_history.ResponseHandler":{"classes":["com.zoho.crm.api.reschedule_history.APIException","com.zoho.crm.api.reschedule_history.ResponseWrapper"],"interface":true},"com.zoho.crm.api.field_map_dependency.ActionResponse":{"classes":["com.zoho.crm.api.field_map_dependency.APIException","com.zoho.crm.api.field_map_dependency.SuccessResponse"],"interface":true},"com.zoho.crm.api.inventory_templates.APIException":{"code":{"values":["INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.Wizard":{"exempted_portal_user_types":{"structure_name":"com.zoho.crm.api.wizards.ExemptedPortalUserType","name":"exempted_portal_user_types","type":"List"},"created_time":{"name":"created_time","type":"DateTime"},"portal_user_types":{"structure_name":"com.zoho.crm.api.wizards.PortalUserType","name":"portal_user_types","type":"List"},"module_1":{"structure_name":"com.zoho.crm.api.modules.Modules","name":"module","type":"com.zoho.crm.api.modules.Modules"},"parent_wizard":{"structure_name":"com.zoho.crm.api.wizards.Wizard","name":"parent_wizard","type":"com.zoho.crm.api.wizards.Wizard"},"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"active":{"name":"active","type":"Boolean"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"modified_time":{"name":"modified_time","type":"DateTime"},"draft":{"name":"draft","type":"Boolean"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"containers":{"structure_name":"com.zoho.crm.api.wizards.Container","name":"containers","type":"List"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.shift_hours.Role":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.associate_email.LinkedRecord":{"module_1":{"structure_name":"com.zoho.crm.api.associate_email.ModuleMap","name":"module","type":"com.zoho.crm.api.associate_email.ModuleMap"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.mass_delete_cvid.APIException":{"code":{"values":["INVALID_DATA","INVALID_MODULE","INTERNAL_SERVER_ERROR","MANDATORY_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"values":["cvid"],"name":"api_name","type":"com.zoho.crm.api.util.Choice"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the cvid given seems to be invalid","the module name given seems to be invalid","required field not found"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.portals.Owner":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.associate_email.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"message_id","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_unavailability.UsersUnavailability":{"comments":{"name":"comments","max-length":250,"type":"String"},"service":{"name":"service","type":"String"},"all_day":{"name":"all_day","type":"Boolean"},"tp_event_id":{"name":"tp_event_id","type":"String"},"from":{"name":"from","type":"DateTime"},"id":{"name":"id","type":"Long"},"to":{"name":"to","type":"DateTime"},"title":{"name":"title","type":"String"},"user":{"structure_name":"com.zoho.crm.api.users_unavailability.User","name":"user","type":"com.zoho.crm.api.users_unavailability.User"},"tp_calendar_id":{"name":"tp_calendar_id","type":"String"}},"com.zoho.crm.api.shift_hours.BreakHours":{"custom_timing":{"structure_name":"com.zoho.crm.api.shift_hours.BreakCustomTiming","name":"custom_timing","type":"List"},"daily_timing":{"name":"daily_timing","sub-type":"String","type":"List"},"same_as_everyday":{"name":"same_as_everyday","type":"Boolean"},"id":{"name":"id","type":"Long"},"break_days":{"name":"break_days","sub-type":"String","type":"List"}},"com.zoho.crm.api.user_type_users.GetUsersofUserTypeParam":{"filters":{"name":"filters","type":"String"},"type":{"name":"type","type":"String","required":true}},"com.zoho.crm.api.privacy_preference.Section":{"show_type":{"name":"show_type","type":"String"},"name":{"name":"name","type":"String"},"tooltip":{"name":"tooltip","type":"String"},"options":{"structure_name":"com.zoho.crm.api.privacy_preference.Option","name":"options","type":"List"},"title":{"name":"title","type":"String"}},"com.zoho.crm.api.assignment_rules.ActionResponse":{"classes":["com.zoho.crm.api.assignment_rules.APIException","com.zoho.crm.api.assignment_rules.SuccessResponse"],"interface":true},"com.zoho.crm.api.service_preference.ResponseWrapper":{"service_preferences":{"structure_name":"com.zoho.crm.api.service_preference.ServicePreference","name":"service_preferences","type":"com.zoho.crm.api.service_preference.ServicePreference"}},"com.zoho.crm.api.deal_contact_roles.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.deal_contact_roles.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.scoring_rules.Criteria":{"comparator":{"name":"comparator","type":"String"},"field":{"structure_name":"com.zoho.crm.api.scoring_rules.Field","name":"field","type":"com.zoho.crm.api.scoring_rules.Field"},"group_operator":{"name":"group_operator","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.scoring_rules.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.users.ResponseWrapper":{"users":{"structure_name":"com.zoho.crm.api.users.Users","name":"users","type":"List"},"info":{"structure_name":"com.zoho.crm.api.users.Info","name":"info","type":"com.zoho.crm.api.users.Info"}},"com.zoho.crm.api.share_records.ActionResponse":{"classes":["com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.send_mail.InvalidDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.related_records.ActionHandler":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.ActionWrapper"],"interface":true},"com.zoho.crm.api.entity_scores.Info":{"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"sort_by":{"name":"sort_by","type":"String"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"page_token_expiry":{"name":"page_token_expiry","type":"String"},"sort_order":{"name":"sort_order","type":"String"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.related_records.ActionResponse":{"classes":["com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.related_records.SuccessResponse"],"interface":true},"com.zoho.crm.api.attachments.UploadUrlAttachmentsParam":{"attachmentUrl":{"name":"attachmentUrl","type":"String","required":true},"title":{"name":"title","type":"String"}},"com.zoho.crm.api.hipaa_compliance.HipaaCompliance":{"restrict_data_access_through_api":{"name":"restrict_data_access_through_api","type":"Boolean"},"enabled_for_modules":{"structure_name":"com.zoho.crm.api.hipaa_compliance.Modules","name":"enabled_for_modules","type":"List"},"restrict_to_zoho_apps":{"name":"restrict_to_zoho_apps","type":"Boolean"},"restrict_data_in_export":{"name":"restrict_data_in_export","type":"Boolean"},"enabled":{"name":"enabled","type":"Boolean"},"restrict_to_third_party_apps":{"name":"restrict_to_third_party_apps","sub-type":"String","type":"List"}},"com.zoho.crm.api.contact_roles.BodyWrapper":{"contact_roles":{"structure_name":"com.zoho.crm.api.contact_roles.ContactRole","name":"contact_roles","type":"List"}},"com.zoho.crm.api.record.RecurringActivity":{"rrule":{"name":"RRULE","type":"String"},"exdate":{"name":"EXDATE","type":"String"}},"com.zoho.crm.api.users_territories.BodyWrapper":{"territories":{"structure_name":"com.zoho.crm.api.users_territories.Territory","name":"territories","type":"List"}},"com.zoho.crm.api.record.CreateRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.wizards.Screen":{"display_label":{"name":"display_label","type":"String"},"id":{"name":"id","type":"Long"},"conditional_rules":{"structure_name":"com.zoho.crm.api.wizards.ConditionalRules","name":"conditional_rules","type":"List"},"segments":{"structure_name":"com.zoho.crm.api.wizards.Segment","name":"segments","type":"List"}},"com.zoho.crm.api.blueprint.ToolTip":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.related_records.DeleteRelatedRecordsUsingExternalIDParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.user_groups.Sources":{"sub_territories":{"name":"sub_territories","type":"Boolean"},"source":{"structure_name":"com.zoho.crm.api.user_groups.Source","name":"source","type":"com.zoho.crm.api.user_groups.Source"},"type":{"values":["users","territories","roles"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.record_locking.GetrecordlockinformationbyidParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.record.GetMassUpdateStatusParam":{"job_id":{"name":"job_id","type":"String"}},"com.zoho.crm.api.users.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.associate_email.AssociateEmail":{"cc":{"structure_name":"com.zoho.crm.api.associate_email.To","name":"cc","type":"List"},"linked_record":{"structure_name":"com.zoho.crm.api.associate_email.LinkedRecord","name":"linked_record","type":"com.zoho.crm.api.associate_email.LinkedRecord"},"bcc":{"structure_name":"com.zoho.crm.api.associate_email.To","name":"bcc","type":"List"},"attachments":{"structure_name":"com.zoho.crm.api.associate_email.Attachments","name":"attachments","type":"List"},"date_time":{"name":"date_time","type":"DateTime"},"subject":{"name":"subject","max-length":250,"type":"String","min-length":1},"from":{"structure_name":"com.zoho.crm.api.associate_email.From","name":"from","type":"com.zoho.crm.api.associate_email.From"},"to":{"structure_name":"com.zoho.crm.api.associate_email.To","name":"to","type":"List"},"mail_format":{"values":["html","text"],"name":"mail_format","type":"com.zoho.crm.api.util.Choice"},"original_message_id":{"name":"original_message_id","type":"String"},"sent":{"name":"sent","type":"Boolean"},"content":{"name":"content","type":"String"}},"com.zoho.crm.api.record_locking.ErrorWrapper":{"record_locking_configurations":{"structure_name":"com.zoho.crm.api.record_locking.ActionResponse","name":"record_locking_configurations","type":"List"}},"com.zoho.crm.api.send_mail.Template":{"classes":["com.zoho.crm.api.inventory_templates.InventoryTemplate","com.zoho.crm.api.email_templates.EmailTemplate"],"interface":true},"com.zoho.crm.api.blueprint.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["transition updated successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_transfer_delete.ActionResponse":{"classes":["com.zoho.crm.api.users_transfer_delete.APIException","com.zoho.crm.api.users_transfer_delete.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.Territory":{"name":{"name":"Name","type":"String"},"assigned":{"name":"$assigned","type":"String"},"id":{"name":"id","type":"Long"},"assigned_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"$assigned_by","type":"com.zoho.crm.api.users.MinifiedUser"},"assigned_time":{"name":"$assigned_time","type":"DateTime"}},"com.zoho.crm.api.tags.RecordActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.tags.RecordActionResponse","name":"data","type":"List"},"wf_scheduler":{"name":"wf_scheduler","type":"Boolean"},"success_count":{"name":"success_count","type":"String"},"locked_count":{"name":"locked_count","type":"String"}},"com.zoho.crm.api.tags.AddTagsParam":{"over_write":{"name":"over_write","type":"String"}},"com.zoho.crm.api.territories.Territories":{"created_time":{"name":"created_time","type":"DateTime"},"manager":{"structure_name":"com.zoho.crm.api.territories.Manager","name":"manager","type":"com.zoho.crm.api.territories.Manager"},"account_rule_criteria":{"structure_name":"com.zoho.crm.api.territories.Criteria","name":"account_rule_criteria","type":"com.zoho.crm.api.territories.Criteria"},"description":{"name":"description","type":"String"},"lead_rule_criteria":{"structure_name":"com.zoho.crm.api.territories.Criteria","name":"lead_rule_criteria","type":"com.zoho.crm.api.territories.Criteria"},"reporting_to":{"structure_name":"com.zoho.crm.api.territories.ReportingTo","name":"reporting_to","type":"com.zoho.crm.api.territories.ReportingTo"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"deal_rule_criteria":{"structure_name":"com.zoho.crm.api.territories.Criteria","name":"deal_rule_criteria","type":"com.zoho.crm.api.territories.Criteria"},"modified_time":{"name":"modified_time","type":"DateTime"},"permission_type":{"values":["read_write_delete","read_only"],"name":"permission_type","type":"com.zoho.crm.api.util.Choice"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.user_groups.ResponseWrapper":{"user_groups":{"structure_name":"com.zoho.crm.api.user_groups.Groups","name":"user_groups","type":"List"},"info":{"structure_name":"com.zoho.crm.api.user_groups.Info","name":"info","type":"com.zoho.crm.api.user_groups.Info"}},"com.zoho.crm.api.user_groups.AssociationResponse":{"resource":{"structure_name":"com.zoho.crm.api.user_groups.Resource","name":"resource","type":"com.zoho.crm.api.user_groups.Resource"},"detail":{"structure_name":"com.zoho.crm.api.user_groups.AssociationModule","name":"detail","type":"com.zoho.crm.api.user_groups.AssociationModule"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.territories.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.entity_scores.ScoringRuleStructure":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.bulk_read.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.bulk_read.ActionResponse","name":"data","type":"List"},"info":{"name":"info","type":"Map"}},"com.zoho.crm.api.notes.GetNotesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com.zoho.crm.api.entity_scores.GetModulesParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.associate_email.Record":{"linked_record":{"structure_name":"com.zoho.crm.api.associate_email.LinkedRecord","name":"linked_record","type":"com.zoho.crm.api.associate_email.LinkedRecord"},"module_1":{"structure_name":"com.zoho.crm.api.associate_email.ModuleMap","name":"module","type":"com.zoho.crm.api.associate_email.ModuleMap"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.user_groups.Source":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.user_groups.Users":{"inactive":{"name":"inactive","type":"Integer"},"deleted":{"name":"deleted","type":"Integer"},"active":{"name":"active","type":"Integer"}},"com.zoho.crm.api.available_currencies.ResponseHandler":{"classes":["com.zoho.crm.api.available_currencies.ResponseWrapper","com.zoho.crm.api.available_currencies.APIException"],"interface":true},"com.zoho.crm.api.available_currencies.APIException":{"code":{"values":["INTERNAL_SERVER_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.mass_delete_cvid.ResponseHandler":{"classes":["com.zoho.crm.api.mass_delete_cvid.APIException","com.zoho.crm.api.mass_delete_cvid.ResponseWrapper"],"interface":true},"com.zoho.crm.api.territories.AssociatedUsersCountWrapper":{"associated_users_count":{"structure_name":"com.zoho.crm.api.territories.AssociatedUsersCount","name":"associated_users_count","type":"List"},"info":{"structure_name":"com.zoho.crm.api.territories.Info","name":"info","type":"com.zoho.crm.api.territories.Info"}},"com.zoho.crm.api.email_compose_meta.User":{"zgid":{"name":"zgid","type":"String"},"compose_settings":{"structure_name":"com.zoho.crm.api.email_compose_meta.ComposeSettings","name":"compose_settings","type":"com.zoho.crm.api.email_compose_meta.ComposeSettings"},"full_name":{"name":"full_name","type":"String"},"email":{"name":"email","type":"String"},"zuid":{"name":"zuid","type":"String"}},"com.zoho.crm.api.layouts.ConvertMapping":{"salesorders":{"structure_name":"com.zoho.crm.api.layouts.MinifiedLayout","name":"SalesOrders","type":"com.zoho.crm.api.layouts.MinifiedLayout"},"invoices":{"structure_name":"com.zoho.crm.api.layouts.MinifiedLayout","name":"Invoices","type":"com.zoho.crm.api.layouts.MinifiedLayout"},"deals":{"structure_name":"com.zoho.crm.api.layouts.DealLayoutMapping","name":"Deals","type":"com.zoho.crm.api.layouts.DealLayoutMapping"},"accounts":{"structure_name":"com.zoho.crm.api.layouts.MinifiedLayout","name":"Accounts","type":"com.zoho.crm.api.layouts.MinifiedLayout"},"contacts":{"structure_name":"com.zoho.crm.api.layouts.MinifiedLayout","name":"Contacts","type":"com.zoho.crm.api.layouts.MinifiedLayout"}},"com.zoho.crm.api.assignment_rules.GetAssignmentRulesParam":{"module_1":{"name":"module","type":"String"}},"com.zoho.crm.api.record.DeletedRecordsWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.DeletedRecord","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.related_records.GetRelatedRecordUsingExternalIDParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.record.Comment":{"commented_by":{"name":"commented_by","type":"String"},"commented_time":{"name":"commented_time","type":"DateTime"},"comment_content":{"name":"comment_content","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.record.Reminder":{"period":{"name":"period","type":"String"},"unit":{"name":"unit","type":"Integer"},"time":{"name":"time","type":"String"}},"com.zoho.crm.api.scoring_rules.BodyWrapper":{"scoring_rules":{"structure_name":"com.zoho.crm.api.scoring_rules.ScoringRule","name":"scoring_rules","type":"List"}},"com.zoho.crm.api.territories.GetTerritoriesParam":{"filters":{"name":"filters","type":"String"}},"com.zoho.crm.api.tags.MergeWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ConflictWrapper","name":"tags","max-length":1,"type":"List","min-length":1}},"com.zoho.crm.api.query.ResponseHandler":{"classes":["com.zoho.crm.api.query.APIException","com.zoho.crm.api.query.ResponseWrapper"],"interface":true},"com.zoho.crm.api.privacy_preference.Config":{"tpt":{"structure_name":"com.zoho.crm.api.privacy_preference.Tpt","name":"tpt","type":"List"},"section":{"structure_name":"com.zoho.crm.api.privacy_preference.Section","name":"section","type":"List"},"zoho_integ":{"structure_name":"com.zoho.crm.api.privacy_preference.Tpt","name":"zoho_integ","type":"List"}},"com.zoho.crm.api.share_records.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["record will be shared successfully","Sharing Revoked"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.holidays.ResponseHandler":{"classes":["com.zoho.crm.api.holidays.APIException","com.zoho.crm.api.holidays.ResponseWrapper"],"interface":true},"com.zoho.crm.api.cancel_meetings.Notify":{"send_cancelling_mail":{"name":"send_cancelling_mail","type":"Boolean"}},"com.zoho.crm.api.blueprint.ProcessInfo":{"field_id":{"name":"field_id","type":"Long"},"escalation":{"structure_name":"com.zoho.crm.api.blueprint.Escalation","name":"escalation","type":"com.zoho.crm.api.blueprint.Escalation"},"is_continuous":{"name":"is_continuous","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"continuous":{"name":"continuous","type":"Boolean"},"field_label":{"name":"field_label","type":"String"},"name":{"name":"name","type":"String"},"column_name":{"name":"column_name","type":"String"},"field_value":{"name":"field_value","type":"String"},"id":{"name":"id","type":"String"},"field_name":{"name":"field_name","type":"String"}},"com.zoho.crm.api.bulk_write.ActionResponse":{"classes":["com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.bulk_write.APIException"],"interface":true},"com.zoho.crm.api.user_groups.SourcesCount":{"territories":{"name":"territories","type":"Integer"},"roles":{"name":"roles","type":"Integer"},"groups":{"name":"groups","type":"Integer"},"users":{"structure_name":"com.zoho.crm.api.user_groups.Users","name":"users","type":"com.zoho.crm.api.user_groups.Users"}},"com.zoho.crm.api.notes.ActionHandler":{"classes":["com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.notes.APIException"],"interface":true},"com.zoho.crm.api.notifications.ResponseHandler":{"classes":["com.zoho.crm.api.notifications.APIException","com.zoho.crm.api.notifications.ResponseWrapper"],"interface":true},"com.zoho.crm.api.portal_user_type.Layouts":{"display_label":{"name":"display_label","type":"String"},"defaultview":{"structure_name":"com.zoho.crm.api.portal_user_type.Views","name":"_default_view","type":"com.zoho.crm.api.portal_user_type.Views"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.bulk_write.CallBack":{"method":{"values":["post"],"name":"method","type":"com.zoho.crm.api.util.Choice"},"url":{"name":"url","type":"String"}},"com.zoho.crm.api.timelines.PicklistDetail":{"display_value":{"name":"display_value","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"colour_code":{"name":"colour_code","type":"String"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"}},"com.zoho.crm.api.templates.Folder":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.business_hours.GetBusinessHoursHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.fields.Tooltip":{"name":{"values":["Info Icon"],"name":"name","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.fiscal_year.ActionResponse":{"classes":["com.zoho.crm.api.fiscal_year.APIException","com.zoho.crm.api.fiscal_year.SuccessResponse"],"interface":true},"com.zoho.crm.api.reschedule_history.RescheduleHistory":{"rescheduled_to":{"name":"Rescheduled_To","type":"DateTime"},"review_process":{"name":"$review_process","type":"Boolean"},"orchestration":{"name":"$orchestration","type":"Boolean"},"in_merge":{"name":"$in_merge","type":"Boolean"},"rescheduled_time":{"name":"Rescheduled_Time","type":"DateTime"},"approved":{"name":"$approved","type":"Boolean"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"sharing_permission":{"name":"$sharing_permission","type":"String"},"review":{"name":"$review","type":"Boolean"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long"},"rescheduled_by":{"structure_name":"com.zoho.crm.api.reschedule_history.User","name":"Rescheduled_By","type":"com.zoho.crm.api.reschedule_history.User"},"created_time":{"name":"Created_Time","type":"DateTime"},"currency_symbol":{"name":"$currency_symbol","type":"String"},"approval":{"structure_name":"com.zoho.crm.api.reschedule_history.Approval","name":"$approval","type":"com.zoho.crm.api.reschedule_history.Approval"},"editable":{"name":"$editable","type":"Boolean"},"appointment_name":{"structure_name":"com.zoho.crm.api.reschedule_history.AppointmentName","name":"Appointment_Name","type":"com.zoho.crm.api.reschedule_history.AppointmentName"},"created_by":{"structure_name":"com.zoho.crm.api.reschedule_history.User","name":"Created_By","type":"com.zoho.crm.api.reschedule_history.User"},"reschedule_reason":{"name":"Reschedule_Reason","type":"String"},"zia_visions":{"name":"$zia_visions","type":"Boolean"},"reschedule_note":{"name":"Reschedule_Note","type":"String"},"process_flow":{"name":"$process_flow","type":"Boolean"},"name":{"name":"Name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.reschedule_history.User","name":"Modified_By","type":"com.zoho.crm.api.reschedule_history.User"},"canvas_id":{"name":"$canvas_id","type":"String"},"rescheduled_from":{"name":"Rescheduled_From","type":"DateTime"},"approval_state":{"name":"$approval_state","type":"String"}},"com.zoho.crm.api.cancel_meetings.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.cancel_meetings.Notify","name":"data","type":"List"}},"com.zoho.crm.api.territories.APIException":{"code":{"values":["DUPLICATE_DATA","INVALID_DATA","NOT_ALLOWED","INTERNAL_SERVER_ERROR","MANDATORY_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"supported_values","sub-type":"String","type":"List"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users.ResponseHandler":{"classes":["com.zoho.crm.api.users.AssociatedGroupsWrapper","com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.users.APIException"],"interface":true},"com.zoho.crm.api.org.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.portals.Portals":{"created_time":{"name":"created_time","type":"DateTime"},"modified_time":{"name":"modified_time","type":"DateTime"},"modified_by":{"structure_name":"com.zoho.crm.api.portals.Owner","name":"modified_by","type":"com.zoho.crm.api.portals.Owner"},"name":{"name":"name","max-length":30,"type":"String","min-length":6},"active":{"name":"active","type":"Boolean"},"zaid":{"name":"zaid","type":"String"},"created_by":{"structure_name":"com.zoho.crm.api.portals.Owner","name":"created_by","type":"com.zoho.crm.api.portals.Owner"}},"com.zoho.crm.api.related_records.DelinkRecordHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.holidays.Holidays":{"holidays":{"structure_name":"com.zoho.crm.api.holidays.Holiday","name":"holidays","type":"List"}},"com.zoho.crm.api.record.ImageUpload":{"state__s":{"name":"State__s","type":"String"},"preview_id__s":{"name":"Preview_Id__s","type":"String"},"size__s":{"name":"Size__s","type":"String"},"file_name__s":{"name":"File_Name__s","type":"String"},"sequence_number__s":{"name":"Sequence_Number__s","type":"Long"},"id":{"name":"id","type":"Long"},"description__s":{"name":"Description__s","type":"String"},"delete":{"name":"_delete","type":"String"},"file_id__s":{"name":"File_Id__s","type":"String"}},"com.zoho.crm.api.layouts.GetLayoutsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.isc_signature.Signature":{"isc_signature":{"name":"isc_signature","type":"Object"}},"com.zoho.crm.api.portals.APIException":{"code":{"values":["INVALID_DATA","JSON_PARSE_ERROR","MANDATORY_NOT_FOUND","PATTERN_NOT_MATCHED","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"minimum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.user_groups.UserGroup":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.users.MinifiedUser":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.modules.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","NOT_SUPPORTED","INVALID_DATA","INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.DeleteRecordsParam":{"wf_trigger":{"name":"wf_trigger","type":"Boolean"},"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.contact_roles.ContactRole":{"sequence_number":{"name":"sequence_number","type":"Integer"},"name":{"regex":"[A-Za-z0-9]{50}","name":"name","max-length":50,"type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.send_mail.ActionResponse":{"classes":["com.zoho.crm.api.send_mail.SuccessResponse","com.zoho.crm.api.send_mail.APIException"],"interface":true},"com.zoho.crm.api.from_addresses.APIException":{"code":{"values":["INTERNAL_SERVER_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.change_owner.Owner":{"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.fields.ActionResponse":{"classes":["com.zoho.crm.api.fields.APIException","com.zoho.crm.api.fields.Success"],"interface":true},"com.zoho.crm.api.related_records.GetRelatedRecordsParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.assignment_rules.APIException":{"code":{"values":["INVALID_DATA","INVALID_MODULE","DUPLICATE_DATA","REQUIRED_PARAM_MISSING","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"name","type":"String"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the name given seems to be invalid","the id given seems to be invalid","the default_assignee given seems to be invalid","the module name given seems to be invalid","the given assignment rule name already exists","One of the expected parameter is missing"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.ResponseHandler":{"classes":["com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper","com.zoho.crm.api.related_records.APIException"],"interface":true},"com.zoho.crm.api.custom_views.GetCustomViewParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.reschedule_history.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"String"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"Created_Time","type":"String"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"$approval_state","type":"String"}],"name":"details","type":"Map"},"message":{"values":["record added","record updated","record deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.UpsertRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.cancel_meetings.ActionResponse":{"classes":["com.zoho.crm.api.cancel_meetings.SuccessResponse","com.zoho.crm.api.cancel_meetings.APIException"],"interface":true},"com.zoho.crm.api.mail_merge.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"report_link","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_unavailability.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Unavailability Hours saved successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.GetModulesHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.notes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"String"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"}],"name":"details","type":"Map"},"message":{"values":["record added","record updated","record deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.change_owner.ActionHandler":{"classes":["com.zoho.crm.api.change_owner.APIException","com.zoho.crm.api.change_owner.ActionWrapper"],"interface":true},"com.zoho.crm.api.record.ActionHandler":{"classes":["com.zoho.crm.api.record.ActionWrapper","com.zoho.crm.api.record.APIException"],"interface":true},"com.zoho.crm.api.bulk_read.ActionResponse":{"classes":["com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.bulk_read.APIException"],"interface":true},"com.zoho.crm.api.email_related_records.Email":{"cc":{"structure_name":"com.zoho.crm.api.email_related_records.UserDetails","name":"cc","type":"List"},"summary":{"name":"summary","type":"String"},"owner":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"owner","type":"com.zoho.crm.api.users.MinifiedUser"},"attachments":{"structure_name":"com.zoho.crm.api.email_related_records.Attachments","name":"attachments","type":"List"},"read":{"name":"read","type":"Boolean"},"subject":{"name":"subject","type":"String"},"editable":{"name":"editable","type":"Boolean"},"message_id":{"name":"message_id","type":"String"},"source":{"name":"source","type":"String"},"mail_format":{"name":"mail_format","type":"String"},"sent":{"name":"sent","type":"Boolean"},"intent":{"values":["query","request","purchase","complaints","others","spam"],"name":"intent","type":"com.zoho.crm.api.util.Choice"},"content":{"name":"content","type":"String"},"sentiment_info":{"values":["positive","negative","neutral"],"name":"sentiment_info","type":"com.zoho.crm.api.util.Choice"},"linked_record":{"structure_name":"com.zoho.crm.api.email_related_records.LinkedRecord","name":"linked_record","type":"com.zoho.crm.api.email_related_records.LinkedRecord"},"sent_time":{"name":"sent_time","type":"String"},"thread_id":{"name":"thread_id","type":"Long"},"emotion":{"name":"emotion","type":"String"},"reply_to":{"structure_name":"com.zoho.crm.api.email_related_records.UserDetails","name":"reply_to","type":"com.zoho.crm.api.email_related_records.UserDetails"},"from":{"structure_name":"com.zoho.crm.api.email_related_records.UserDetails","name":"from","type":"com.zoho.crm.api.email_related_records.UserDetails"},"to":{"structure_name":"com.zoho.crm.api.email_related_records.UserDetails","name":"to","type":"List"},"time":{"name":"time","type":"DateTime"},"status":{"structure_name":"com.zoho.crm.api.email_related_records.Status","name":"status","type":"List"}},"com.zoho.crm.api.timelines.Module":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.related_records.GetRelatedRecordUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"},"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.fields.BodyWrapper":{"fields":{"structure_name":"com.zoho.crm.api.fields.Fields","name":"fields","type":"List"}},"com.zoho.crm.api.users_transfer_delete.Transfer":{"records":{"name":"records","type":"Boolean"},"assignment":{"name":"assignment","type":"Boolean"},"criteria":{"name":"criteria","type":"Boolean"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.related_records.UpdateRelatedRecordsHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.scoring_rules.GetScoringRuleParam":{"layout_id":{"name":"layout_id","type":"Long"},"name":{"name":"name","type":"Long"},"active":{"values":[true,false],"name":"active","type":"Boolean"}},"com.zoho.crm.api.tags.RemoveTagsFromMultipleRecordsParam":{"ids":{"name":"ids","type":"String","required":true}},"com.zoho.crm.api.users_territories.ValidationGroup":{"classes":["com.zoho.crm.api.users_territories.Validation","com.zoho.crm.api.users_territories.BulkValidation"],"interface":true},"com.zoho.crm.api.user_groups.AssociatedUserCount":{"associated_users_count":{"structure_name":"com.zoho.crm.api.user_groups.AssociatedUser","name":"associated_users_count","type":"List"},"info":{"structure_name":"com.zoho.crm.api.user_groups.Info","name":"info","type":"com.zoho.crm.api.user_groups.Info"}},"com.zoho.crm.api.record.PreferenceFieldMatchedValue":{"deals":{"structure_name":"com.zoho.crm.api.record.Record","name":"Deals","type":"List"},"accounts":{"structure_name":"com.zoho.crm.api.record.Record","name":"Accounts","type":"List"},"contacts":{"structure_name":"com.zoho.crm.api.record.Record","name":"Contacts","type":"List"}},"com.zoho.crm.api.record.GetRecordUsingExternalIDParam":{"cvid":{"name":"cvid","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"include_child":{"name":"include_child","type":"String"},"converted":{"name":"converted","type":"String"},"fields":{"name":"fields","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"territory_id":{"name":"territory_id","type":"String"}},"com.zoho.crm.api.record.SearchRecordsParam":{"cvid":{"name":"cvid","type":"String"},"per_page":{"name":"per_page","type":"Integer"},"approved":{"name":"approved","type":"String"},"phone":{"name":"phone","type":"String"},"converted":{"name":"converted","type":"String"},"criteria":{"name":"criteria","type":"String"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.user_groups.ActionResponse":{"classes":["com.zoho.crm.api.user_groups.APIException","com.zoho.crm.api.user_groups.SuccessResponse"],"interface":true},"com.zoho.crm.api.record.UpdateRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.users_transfer_delete.MoveSubordinate":{"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.tags.ActionWrapper":{"tags":{"structure_name":"com.zoho.crm.api.tags.ActionResponse","name":"tags","type":"List"}},"com.zoho.crm.api.mail_merge.AddressValueMap":{"value":{"name":"value","type":"String"}},"com.zoho.crm.api.pipeline.Stages":{"from":{"name":"from","type":"Long"},"to":{"name":"to","type":"Long"}},"com.zoho.crm.api.pipeline.RegexDetails":{"regex":{"name":"regex","type":"String"},"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.download_inline_images.GetDownloadInlineImagesParam":{"user_id":{"name":"user_id","type":"Long","required":true},"message_id":{"name":"message_id","type":"String","required":true},"id":{"name":"id","type":"String","required":true}},"com.zoho.crm.api.hipaa_compliance.ActionWrapper":{"hipaa_compliance":{"structure_name":"com.zoho.crm.api.hipaa_compliance.ActionHandler","name":"hipaa_compliance","interface":true,"type":"com.zoho.crm.api.hipaa_compliance.ActionHandler"}},"com.zoho.crm.api.blueprint.ResponseWrapper":{"blueprint":{"structure_name":"com.zoho.crm.api.blueprint.BluePrint","name":"blueprint","type":"com.zoho.crm.api.blueprint.BluePrint"}},"com.zoho.crm.api.blueprint.AssociationDetails":{"related_field":{"structure_name":"com.zoho.crm.api.blueprint.LookupField","name":"related_field","type":"com.zoho.crm.api.blueprint.LookupField"},"lookup_field":{"structure_name":"com.zoho.crm.api.blueprint.LookupField","name":"lookup_field","type":"com.zoho.crm.api.blueprint.LookupField"}},"com.zoho.crm.api.users.ActionHandler":{"classes":["com.zoho.crm.api.users.APIException","com.zoho.crm.api.users.ActionWrapper"],"interface":true},"com.zoho.crm.api.users_territories.ResponseHandler":{"classes":["com.zoho.crm.api.users_territories.ResponseWrapper","com.zoho.crm.api.users_territories.APIException"],"interface":true},"com.zoho.crm.api.record.DownloadHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.FileBodyWrapper"],"interface":true},"com.zoho.crm.api.shift_hours.Users":{"role":{"structure_name":"com.zoho.crm.api.shift_hours.Role","name":"role","type":"com.zoho.crm.api.shift_hours.Role"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"effective_from":{"name":"effective_from","type":"Date"},"email":{"name":"email","type":"String"},"zuid":{"name":"zuid","type":"String"}},"com.zoho.crm.api.download_attachments.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.custom_views.BodyWrapper":{"custom_views":{"structure_name":"com.zoho.crm.api.custom_views.CustomView","name":"custom_views","type":"List"},"info":{"structure_name":"com.zoho.crm.api.custom_views.Info","name":"info","type":"com.zoho.crm.api.custom_views.Info"}},"com.zoho.crm.api.timelines.FieldHistoryValue":{"new":{"name":"new","type":"String"},"old":{"name":"old","type":"String"}},"com.zoho.crm.api.backup.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.templates.Wrapper":{"templates":{"structure_name":"com.zoho.crm.api.templates.Templates","name":"templates","type":"List"}},"com.zoho.crm.api.mass_convert.ErrorDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.portals.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.territories.Criteria":{"comparator":{"name":"comparator","type":"String"},"field":{"structure_name":"com.zoho.crm.api.territories.Field","name":"field","type":"com.zoho.crm.api.territories.Field"},"group_operator":{"name":"group_operator","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com.zoho.crm.api.territories.Criteria","name":"group","type":"List"}},"com.zoho.crm.api.currencies.ResponseHandler":{"classes":["com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.currencies.BodyWrapper"],"interface":true},"com.zoho.crm.api.tags.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"created_time","type":"DateTime"},{"name":"modified_time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"color_code","type":"String"}],"name":"details","type":"Map"},"message":{"values":["tags created successfully","tags updated successfully","tags deleted successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.related_records.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.related_records.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.mass_change_owner.ActionHandler":{"classes":["com.zoho.crm.api.mass_change_owner.ActionWrapper","com.zoho.crm.api.mass_change_owner.APIException"],"interface":true},"com.zoho.crm.api.territories.MinifiedTerritory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com.zoho.crm.api.share_records.ResponseHandler":{"classes":["com.zoho.crm.api.share_records.ResponseWrapper","com.zoho.crm.api.share_records.APIException"],"interface":true},"com.zoho.crm.api.email_sharing.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.variables.GetVariableByIDParam":{"group":{"name":"group","type":"String"}},"com.zoho.crm.api.entity_scores.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.entity_scores.EntityScores","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.entity_scores.Info","name":"info","type":"com.zoho.crm.api.entity_scores.Info"}},"com.zoho.crm.api.portal_user_type.Permissions":{"view":{"values":[true],"name":"view","type":"com.zoho.crm.api.util.Choice"},"delete_attachment":{"name":"delete_attachment","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"edit_shared_records":{"name":"edit_shared_records","type":"Boolean"},"create":{"name":"create","type":"Boolean"},"create_attachment":{"name":"create_attachment","type":"Boolean"},"delete":{"name":"delete","type":"Boolean"}},"com.zoho.crm.api.notes.ActionResponse":{"classes":["com.zoho.crm.api.notes.APIException","com.zoho.crm.api.notes.SuccessResponse"],"interface":true},"com.zoho.crm.api.email_related_records.Module":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.UpdatePipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.mass_change_owner.ActionResponse":{"classes":["com.zoho.crm.api.mass_change_owner.SuccessResponse"],"interface":true},"com.zoho.crm.api.holidays.CreateBusinessHoliday":{"holidays":{"structure_name":"com.zoho.crm.api.holidays.BusinessHoliday","name":"holidays","type":"List"}},"com.zoho.crm.api.related_records.DeleteRelatedRecordsUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.files.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"name","type":"String"},{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.ChartData":{"canvas_width":{"name":"canvas_width","type":"Integer"},"nodes":{"structure_name":"com.zoho.crm.api.wizards.Node","name":"nodes","type":"List"},"canvas_height":{"name":"canvas_height","type":"Integer"},"connections":{"structure_name":"com.zoho.crm.api.wizards.Connection","name":"connections","type":"List"},"color_palette":{"structure_name":"com.zoho.crm.api.wizards.ButtonBackground","name":"color_palette","type":"com.zoho.crm.api.wizards.ButtonBackground"}},"com.zoho.crm.api.bulk_read.APIException":{"code":{"values":["REQUEST_BODY_NOT_SUPPORTED","AMBIGUOUS_CRITERIA","AMBIGUOUS_GROUP_IN_CRITERIA","PAGE_RANGE_EXCEEDED","INVALID_CALLBACK_METHOD","INVALID_CALLBACK_URL","GROUP_OPERATOR_NOT_SUPPORTED","MODULE_NOT_SUPPORTED","RESOURCE_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_SERVICE_NAME","INVALID_BULK_OPERATION","MEDIA_TYPE_NOT_SUPPORTED","REQUEST_BODY_NOT_READABLE","REQUEST_BODY_IS_EMPTY","MODULE_NOT_AVAILABLE","NOT_SUPPORTED_FEATURE","NO_PERMISSION","JOB_NOT_SUPPORTED","QUERY_NOT_SUPPORTED","JOIN_LIMIT_EXCEEDED","CRITERIA_NOT_SUPPORTED","INVALID_CRITERIA","CRITERIA_LIMIT_EXCEEDED","FIELD_AND_COMPARATOR_IN_CRITERIA_NOT_COMPATIBLE","FIELD_IN_CRITERIA_NOT_AVAILABLE","VALUE_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_ENCRYPTED_VALUE_IN_CRITERIA_NOT_COMPATIBLE","FIELD_NOT_AVAILABLE","FIELD_NOT_SUPPORTED","VALUE_LIMIT_EXCEEDED_IN_CRITERIA","PAGE_NOT_SUPPORTED","TOO_MANY_REQUESTS","CALLBACK_FAILURE","FIELD_IN_CRITERIA_NOT_SUPPORTED","FIELD_COMPARATOR_IN_CRITERIA_NOT_SUPPORTED","CVID_NOT_SUPPORTED","BAD_REQUEST","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"max_limit","type":"Integer"},{"name":"resource","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Provided service name %s is not valid/not supported","Requested operation is an invalid bulk operation","record not in process","The requested resource doesn't exist.","Media type is not supported.","Unable to parse the request body.","Request body is empty.","Requested module '%s' is not available.","Feature is not supported"," permission denied","Invalid module for the query. Module '%s' is not supported.","Invalid bulk %s job.","Invalid query for bulk %s job. Query '%s' is not supported.","Invalid URL '%s' for callback.","Invalid request method %s for callback.","Join limit exceeded for the query. Maximum number of joins supported in a query is %d","Invalid criteria for the query. Criteria %s is not supported.","Invalid criteria %s for the query.","Ambiguous criteria %s. Criteria can have either {group"," group_operator} or {api_name"," comparator"," value}.","Ambiguous group in criteria %s. Group should be used only when there are more than one criteria","Number of criteria exceeded the maximum limit of %d","Field api name '%s' for criteria %s is not supported.","Field api name '%s' is not supported with comparator '%s' for criteria %s.","Field api name '%s' is not available for criteria %s. Check visibility and permission for the field","Field api name '%s' doesn't support this comparator '%s' for criteria %s.","Value '%s' is not supported for criteria %s.","Field '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s as the value is encrypted.","Criteria %s doesn't support this logical group operator '%s'. Supported operators are 'and'"," 'or'.","Requested field api name '%s' is not available for the module '%s'. Check permission or visibility for the field.","Invalid field for the module provided in fields. Field api name '%s' is not supported for this module '%s'.","Value exceeded limit %d","Invalid page number for query. Page %s is not supported for the query.","Invalid page number for query. Page %s is not supported for the query. Page range is from %d to %d.","Many requests fired in concurrent than the allowed limit","Callback failed after %d attempts."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.Info":{"call":{"name":"call","type":"Boolean"},"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"page_token_expiry":{"name":"page_token_expiry","type":"DateTime"},"sort_by":{"name":"sort_by","type":"String"},"sort_order":{"name":"sort_order","type":"String"},"email":{"name":"email","type":"Boolean"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.backup.ActionHandler":{"classes":["com.zoho.crm.api.backup.ActionWrapper","com.zoho.crm.api.backup.APIException"],"interface":true},"com.zoho.crm.api.hipaa_compliance.ActionHandler":{"classes":["com.zoho.crm.api.hipaa_compliance.APIException","com.zoho.crm.api.hipaa_compliance.SuccessResponse"],"interface":true},"com.zoho.crm.api.reschedule_history.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","INVALID_DATA","INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["required field not found","record not deleted","the module name given seems to be invalid","invalid data"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.CarryOverTags":{"deals":{"name":"Deals","sub-type":"String","type":"List"},"accounts":{"name":"Accounts","sub-type":"String","type":"List"},"contacts":{"name":"Contacts","sub-type":"String","type":"List"}},"com.zoho.crm.api.fields.Success":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_unavailability.BodyWrapper":{"users_unavailability":{"structure_name":"com.zoho.crm.api.users_unavailability.UsersUnavailability","name":"users_unavailability","type":"List"}},"com.zoho.crm.api.email_compose_meta.ComposeSettings":{"default_from_address":{"structure_name":"com.zoho.crm.api.email_compose_meta.DefaultForm","name":"default_from_address","type":"com.zoho.crm.api.email_compose_meta.DefaultForm"},"font_size":{"name":"font_size","type":"Integer"},"font_family":{"name":"font_family","type":"String"},"email_signatures":{"name":"email_signatures","sub-type":"Object","type":"List"}},"com.zoho.crm.api.fields.GetFieldsParam":{"include":{"values":["allowed_permissions_to_update"],"name":"include","type":"String"},"component":{"values":["criteria"],"name":"component","type":"String"},"layout_id":{"name":"layout_id","type":"Long"},"feature_name":{"values":["layout_rule"],"name":"feature_name","type":"String"},"module_1":{"name":"module","type":"String","required":true},"data_type":{"values":["boolean","profileimage","datetime","website","ownerlookup","autonumber","subform","RRULE","textarea","lookup","bigint","currency","text","multiselectpicklist","ALARM","integer","phone","userlookup","picklist","email","event_reminder","double","date","multi_module_lookup","multiuserlookup","multiselectlookup","formula","module"],"name":"data_type","type":"String"},"type":{"values":["used","unused","all"],"name":"type","type":"String"}},"com.zoho.crm.api.appointment_preference.ActionWrapper":{"appointment_preferences":{"structure_name":"com.zoho.crm.api.appointment_preference.ActionResponse","name":"appointment_preferences","interface":true,"type":"com.zoho.crm.api.appointment_preference.ActionResponse"}},"com.zoho.crm.api.tags.RecordSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"structure_name":"com.zoho.crm.api.tags.RecordDetailTag","name":"tags","type":"List"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.definition.MinifiedProperty":{"read_only":{"name":"read_only","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"data_type":{"name":"data_type","type":"String"},"length":{"name":"length","type":"Integer"},"required":{"name":"required","type":"Boolean"},"properties":{"structure_name":"Object","name":"properties","type":"List"}},"com.zoho.crm.api.tags.AddTagsToMultipleRecordsParam":{"over_write":{"name":"over_write","type":"String"}},"com.zoho.crm.api.currencies.Format":{"decimal_separator":{"values":["Period","Comma"],"name":"decimal_separator","type":"com.zoho.crm.api.util.Choice"},"thousand_separator":{"values":["Comma","Space","Period","Space"],"name":"thousand_separator","type":"com.zoho.crm.api.util.Choice"},"decimal_places":{"values":["0","2","3"],"name":"decimal_places","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.holidays.CreateHolidaysHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.users_unavailability.APIException":{"code":{"values":["INVALID_DATA","INVALID_MODULE","MANDATORY_NOT_FOUND","PATTERN_NOT_MATCHED","INVALID_URL_PATTERN","UNABLE_TO_PARSE_DATA_TYPE","INVALID_TOKEN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"index","type":"Integer"},{"name":"param_name","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["Ids should be Long value with comma separated","required field not found","Please check whether the input values are correct","Please check if the URL trying to access is a correct one","either the request body or parameters is in wrong format"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.currencies.Currency":{"symbol":{"name":"symbol","type":"String"},"created_time":{"name":"created_time","type":"DateTime"},"is_active":{"name":"is_active","type":"Boolean"},"exchange_rate":{"regex":"[1-9]{2}[.][1-9]{9}","name":"exchange_rate","type":"String"},"format":{"structure_name":"com.zoho.crm.api.currencies.CurrencyFormat","name":"format","type":"com.zoho.crm.api.currencies.CurrencyFormat"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},"prefix_symbol":{"name":"prefix_symbol","type":"Boolean"},"is_base":{"name":"is_base","type":"Boolean"},"modified_time":{"name":"modified_time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"Long"},"iso_code":{"name":"iso_code","type":"String"}},"com.zoho.crm.api.user_groups.Owner":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variables.ResponseWrapper":{"variables":{"structure_name":"com.zoho.crm.api.variables.Variable","name":"variables","type":"List"}},"com.zoho.crm.api.record.FileHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.SuccessResponse"],"interface":true},"com.zoho.crm.api.share_records.DeleteActionWrapper":{"share":{"structure_name":"com.zoho.crm.api.share_records.DeleteActionResponse","name":"share","interface":true,"type":"com.zoho.crm.api.share_records.DeleteActionResponse"}},"com.zoho.crm.api.roles.ResponseHandler":{"classes":["com.zoho.crm.api.roles.APIException","com.zoho.crm.api.roles.ResponseWrapper"],"interface":true},"com.zoho.crm.api.territory_users.ActionHandler":{"classes":["com.zoho.crm.api.territory_users.APIException","com.zoho.crm.api.territory_users.ActionWrapper"],"interface":true},"com.zoho.crm.api.field_map_dependency.ActionWrapper":{"map_dependency":{"structure_name":"com.zoho.crm.api.field_map_dependency.ActionResponse","name":"map_dependency","type":"List"}},"com.zoho.crm.api.pipeline.CreatePipelineParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.profiles.ProfileWrapper":{"profiles":{"structure_name":"com.zoho.crm.api.profiles.Profile","name":"profiles","type":"List"},"info":{"structure_name":"com.zoho.crm.api.profiles.Info","name":"info","type":"com.zoho.crm.api.profiles.Info"}},"com.zoho.crm.api.taxes.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tax added","tax updated"," tax deleted"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.backup.HistoryWrapper":{"history":{"structure_name":"com.zoho.crm.api.backup.History","name":"history","type":"List"},"info":{"structure_name":"com.zoho.crm.api.backup.Info","name":"info","type":"com.zoho.crm.api.backup.Info"}},"com.zoho.crm.api.associate_email.Attachments":{"id":{"name":"id","type":"String"}},"com.zoho.crm.api.scoring_rules.SignalRule":{"score":{"name":"score","type":"Integer"},"id":{"name":"id","type":"String"},"signal":{"structure_name":"com.zoho.crm.api.scoring_rules.Signal","name":"signal","type":"com.zoho.crm.api.scoring_rules.Signal"}},"com.zoho.crm.api.currencies.DisableSuccess":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.inventory_templates.GetInventoryTemplatesParam":{"module_1":{"name":"module","type":"String"},"sort_by":{"name":"sort_by","type":"String"},"category":{"name":"category","type":"String"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.org.HierarchyPreferences":{"strictly_reporting":{"name":"strictly_reporting","type":"Boolean"},"type":{"values":["Reporting_To_Hierarchy","Role_Hierarchy"],"name":"type","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.RecordDetailTag":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"color_code":{"name":"color_code","type":"String"}},"com.zoho.crm.api.territories.AssociatedUsersCount":{"count":{"name":"count","type":"String"},"territory":{"structure_name":"com.zoho.crm.api.territories.MinifiedTerritory","name":"territory","type":"com.zoho.crm.api.territories.MinifiedTerritory"}},"com.zoho.crm.api.attachments.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.util.Model":{"classes":["com.zoho.crm.api.attachments.SuccessResponse","com.zoho.crm.api.holidays.CreateBusinessHoliday","com.zoho.crm.api.shift_hours.BodyWrapper","com.zoho.crm.api.field_map_dependency.Child","com.zoho.crm.api.territories.APIException","com.zoho.crm.api.field_map_dependency.Info","com.zoho.crm.api.record.ConversionOptionsResponseWrapper","com.zoho.crm.api.wizards.Segment","com.zoho.crm.api.pipeline.TPipeline","com.zoho.crm.api.business_hours.BusinessHoursCreated","com.zoho.crm.api.email_related_records.Attachments","com.zoho.crm.api.mass_delete_cvid.SuccessResponse","com.zoho.crm.api.users_unavailability.ActionWrapper","com.zoho.crm.api.user_groups.Jobs","com.zoho.crm.api.scoring_rules.ActionWrapper","com.zoho.crm.api.fields.Expression","com.zoho.crm.api.privacy_configurable_apps.Wrapper","com.zoho.crm.api.tags.ResponseWrapper","com.zoho.crm.api.fields.APIException","com.zoho.crm.api.notes.ActionWrapper","com.zoho.crm.api.currencies.BaseCurrency","com.zoho.crm.api.isc_signature.Signature","com.zoho.crm.api.record_locking.RecordActionLockedDetail1","com.zoho.crm.api.record_locking.RecordActionLockedDetail2","com.zoho.crm.api.modules.ActionWrapper","com.zoho.crm.api.entity_scores.ScoringRuleStructure","com.zoho.crm.api.territories.ResponseWrapper","com.zoho.crm.api.fields.PickListValue","com.zoho.crm.api.tags.ActionWrapper","com.zoho.crm.api.assignment_rules.DefaultAssignee","com.zoho.crm.api.layouts.Layouts","com.zoho.crm.api.timelines.NameIdStructure","com.zoho.crm.api.mail_merge.SignActionWrapper","com.zoho.crm.api.mass_convert.ResponseWrapper","com.zoho.crm.api.users_transfer_delete.BodyWrapper","com.zoho.crm.api.scoring_rules.Criteria","com.zoho.crm.api.fields.Formula","com.zoho.crm.api.user_groups.BodyWrapper","com.zoho.crm.api.change_owner.APIException","com.zoho.crm.api.holidays.ShiftHour","com.zoho.crm.api.bulk_read.RequestWrapper","com.zoho.crm.api.taxes.ActionWrapper","com.zoho.crm.api.definition.APIException","com.zoho.crm.api.record.FileDetails","com.zoho.crm.api.user_groups.SourcesCount","com.zoho.crm.api.service_preference.BodyWrapper","com.zoho.crm.api.pipeline.RegexDetails","com.zoho.crm.api.wizards.ButtonBackground","com.zoho.crm.api.record_locking.ActionWrapper","com.zoho.crm.api.record_locking.APIException","com.zoho.crm.api.users_territories.TransferToUser","com.zoho.crm.api.holidays.Holiday","com.zoho.crm.api.pipeline.TransferPipelineWrapper","com.zoho.crm.api.record.MultiSelectLookup","com.zoho.crm.api.blueprint.ProcessInfo","com.zoho.crm.api.timelines.FieldHistoryValue","com.zoho.crm.api.associate_email.BodyWrapper","com.zoho.crm.api.email_compose_meta.FeaturesAvailable","com.zoho.crm.api.privacy_preference.Wrapper","com.zoho.crm.api.fields.HistoryTracking","com.zoho.crm.api.files.BodyWrapper","com.zoho.crm.api.appointment_preference.Field","com.zoho.crm.api.email_templates.Attachment","com.zoho.crm.api.shift_hours.BreakCustomTiming","com.zoho.crm.api.users.AssociatedGroupsWrapper","com.zoho.crm.api.record.PriceBook","com.zoho.crm.api.pipeline.DPipelineWrapper","com.zoho.crm.api.bulk_read.JobDetail","com.zoho.crm.api.timelines.PicklistDetail","com.zoho.crm.api.currencies.APIException","com.zoho.crm.api.fields.Lookup","com.zoho.crm.api.change_owner.MassWrapper","com.zoho.crm.api.layouts.ActionsAllowed","com.zoho.crm.api.associate_email.ActionWrapper","com.zoho.crm.api.assignment_rules.CreatedBy","com.zoho.crm.api.portals.ResponseWrapper","com.zoho.crm.api.tags.APIException","com.zoho.crm.api.user_type_users.Info","com.zoho.crm.api.reschedule_history.APIException","com.zoho.crm.api.reschedule_history.AppointmentName","com.zoho.crm.api.cancel_meetings.SuccessResponse","com.zoho.crm.api.user_groups.AssociationModule","com.zoho.crm.api.email_templates.LastVersionStatistics","com.zoho.crm.api.territories.TransferBodyWrapper","com.zoho.crm.api.inventory_templates.InventoryTemplate","com.zoho.crm.api.users.ResponseWrapper","com.zoho.crm.api.record.Tax","com.zoho.crm.api.layouts.ConvertMapping","com.zoho.crm.api.record.DeletedRecord","com.zoho.crm.api.user_groups.UserGroup","com.zoho.crm.api.currencies.CurrencyFormat","com.zoho.crm.api.backup.UrlsWrapper","com.zoho.crm.api.download_inline_images.FileBodyWrapper","com.zoho.crm.api.mass_convert.RelatedModule","com.zoho.crm.api.holidays.APIException","com.zoho.crm.api.mass_convert.AssignTo","com.zoho.crm.api.notes.ResponseWrapper","com.zoho.crm.api.bulk_read.SuccessResponse","com.zoho.crm.api.taxes.OrgTax","com.zoho.crm.api.record.ActionWrapper","com.zoho.crm.api.timelines.AutomationDetail","com.zoho.crm.api.bulk_write.Result","com.zoho.crm.api.mail_merge.SignMailMerge","com.zoho.crm.api.templates.Templates","com.zoho.crm.api.notes.APIException","com.zoho.crm.api.fields.HistoryTrackingModule","com.zoho.crm.api.portals.Portals","com.zoho.crm.api.field_map_dependency.ActionWrapper","com.zoho.crm.api.custom_views.PinFields","com.zoho.crm.api.profiles.DefaultView","com.zoho.crm.api.shift_hours.BreakHours","com.zoho.crm.api.email_related_records.UserDetails","com.zoho.crm.api.inventory_templates.Info","com.zoho.crm.api.record.RecurringActivity","com.zoho.crm.api.profiles.ActionWrapper","com.zoho.crm.api.mass_delete_cvid.RecordIdBodyWrapper","com.zoho.crm.api.roles.APIException","com.zoho.crm.api.profiles.Section","com.zoho.crm.api.blueprint.Currency","com.zoho.crm.api.portal_user_type.Modules","com.zoho.crm.api.portal_user_type.Owner","com.zoho.crm.api.portals_meta.Layouts","com.zoho.crm.api.reschedule_history.Info","com.zoho.crm.api.mail_merge.Address","com.zoho.crm.api.mail_merge.AddressValueMap","com.zoho.crm.api.backup.Backup","com.zoho.crm.api.users_transfer_delete.ResponseWrapper","com.zoho.crm.api.fields.ReferFromField","com.zoho.crm.api.org.ResponseWrapper","com.zoho.crm.api.profiles.CategoryModule","com.zoho.crm.api.layouts.ResponseWrapper","com.zoho.crm.api.users_territories.Territory","com.zoho.crm.api.users_unavailability.User","com.zoho.crm.api.available_currencies.ResponseWrapper","com.zoho.crm.api.fields.Crypt","com.zoho.crm.api.org.HierarchyPreferences","com.zoho.crm.api.fields.OperationType","com.zoho.crm.api.fields.FunctionParameter","com.zoho.crm.api.email_compose_meta.Data","com.zoho.crm.api.blueprint.Layout","com.zoho.crm.api.portal_user_type.PersonalityModule","com.zoho.crm.api.layouts.DealLayoutMapping","com.zoho.crm.api.deal_contact_roles.BodyWrapper","com.zoho.crm.api.related_lists.ModuleMap","com.zoho.crm.api.entity_scores.EntityScores","com.zoho.crm.api.custom_views.Translation","com.zoho.crm.api.timelines.PathFinder","com.zoho.crm.api.fields.Fields","com.zoho.crm.api.share_records.ResponseWrapper","com.zoho.crm.api.users.CustomizeInfo","com.zoho.crm.api.blueprint.MultiSelectLookup","com.zoho.crm.api.notifications.APIException","com.zoho.crm.api.record.MassUpdateTerritory","com.zoho.crm.api.blueprint.ConvertMapping","com.zoho.crm.api.mass_change_owner.ResponseWrapper","com.zoho.crm.api.territories.DeletedAssociatedTerritories","com.zoho.crm.api.shift_hours.APIException","com.zoho.crm.api.definition.ResponseWrapper","com.zoho.crm.api.wizards.APIException","com.zoho.crm.api.templates.Wrapper","com.zoho.crm.api.record.MassUpdateResponseWrapper","com.zoho.crm.api.blueprint.SuccessResponse","com.zoho.crm.api.hipaa_compliance.APIException","com.zoho.crm.api.reschedule_history.RescheduleHistory","com.zoho.crm.api.user_groups.Source","com.zoho.crm.api.users.APIException","com.zoho.crm.api.territory_users.APIException","com.zoho.crm.api.portal_invite.SuccessResponse","com.zoho.crm.api.mass_change_owner.Status","com.zoho.crm.api.layouts.DefaultAssignmentView","com.zoho.crm.api.user_groups.ActionWrapper","com.zoho.crm.api.scoring_rules.BodyWrapper","com.zoho.crm.api.users_transfer_delete.APIException","com.zoho.crm.api.wizards.Node","com.zoho.crm.api.portals.BodyWrapper","com.zoho.crm.api.share_records.SharedThrough","com.zoho.crm.api.users_unavailability.ResponseWrapper","com.zoho.crm.api.taxes.SuccessResponse","com.zoho.crm.api.backup.HistoryWrapper","com.zoho.crm.api.wizards.Container","com.zoho.crm.api.territories.Info","com.zoho.crm.api.fiscal_year.APIException","com.zoho.crm.api.deal_contact_roles.ContactRole","com.zoho.crm.api.files.APIException","com.zoho.crm.api.fields.Unique","com.zoho.crm.api.fields.QueryDetails","com.zoho.crm.api.query.APIException","com.zoho.crm.api.business_hours.BusinessHours","com.zoho.crm.api.cancel_meetings.BodyWrapper","com.zoho.crm.api.templates.Folder","com.zoho.crm.api.business_hours.BodyWrapper","com.zoho.crm.api.users_transfer_delete.TransferAndDeleteByID","com.zoho.crm.api.appointment_preference.FieldMappings","com.zoho.crm.api.inventory_templates.APIException","com.zoho.crm.api.fields.ShowFields","com.zoho.crm.api.scoring_rules.Layout","com.zoho.crm.api.email_related_records.ResponseWrapper","com.zoho.crm.api.reschedule_history.Approval","com.zoho.crm.api.assignment_rules.APIException","com.zoho.crm.api.change_owner.RelatedModules","com.zoho.crm.api.record.Consent","com.zoho.crm.api.mass_delete_cvid.MassDeleteScheduled","com.zoho.crm.api.custom_views.ActionWrapper","com.zoho.crm.api.deal_contact_roles.Info","com.zoho.crm.api.variable_groups.ResponseWrapper","com.zoho.crm.api.users_territories.Info","com.zoho.crm.api.portal_invite.JobResponse","com.zoho.crm.api.currencies.SuccessResponse","com.zoho.crm.api.taxes.BodyWrapper","com.zoho.crm.api.users.Role","com.zoho.crm.api.backup.Urls","com.zoho.crm.api.deal_contact_roles.SuccessResponse","com.zoho.crm.api.shift_hours.SuccessResponse","com.zoho.crm.api.variables.APIException","com.zoho.crm.api.territories.TransferTerritory","com.zoho.crm.api.layouts.DealField","com.zoho.crm.api.users.Profile","com.zoho.crm.api.email_compose_meta.DataMap","com.zoho.crm.api.backup.Requester","com.zoho.crm.api.bulk_write.CallBack","com.zoho.crm.api.send_mail.From","com.zoho.crm.api.blueprint.ResponseWrapper","com.zoho.crm.api.reschedule_history.ActionWrapper","com.zoho.crm.api.taxes.Tax","com.zoho.crm.api.users_territories.BodyWrapper","com.zoho.crm.api.record.Widget","com.zoho.crm.api.business_hours.ResponseWrapper","com.zoho.crm.api.email_related_records.APIException","com.zoho.crm.api.download_attachments.FileBodyWrapper","com.zoho.crm.api.territories.AssociatedUsersCount","com.zoho.crm.api.users_territories.Manager","com.zoho.crm.api.layouts.APIException","com.zoho.crm.api.variables.ResponseWrapper","com.zoho.crm.api.portal_user_type.ResponseWrapper","com.zoho.crm.api.send_mail.BodyWrapper","com.zoho.crm.api.cancel_meetings.ActionWrapper","com.zoho.crm.api.mass_change_owner.Territory","com.zoho.crm.api.mass_convert.APIException","com.zoho.crm.api.associate_email.Available","com.zoho.crm.api.notifications.SuccessResponse","com.zoho.crm.api.service_preference.APIException","com.zoho.crm.api.templates.APIException","com.zoho.crm.api.blueprint.Crypt","com.zoho.crm.api.user_groups.ResponseWrapper","com.zoho.crm.api.modules.SuccessResponse","com.zoho.crm.api.from_addresses.ResponseWrapper","com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.mass_convert.MoveAttachmentsTo","com.zoho.crm.api.tags.ConflictWrapper","com.zoho.crm.api.variables.BodyWrapper","com.zoho.crm.api.bulk_read.Result","com.zoho.crm.api.send_mail.DataSubjectRequest","com.zoho.crm.api.assignment_rules.ResponseWrapper","com.zoho.crm.api.wizards.Wizard","com.zoho.crm.api.attachments.Attachment","com.zoho.crm.api.email_templates.ResponseWrapper","com.zoho.crm.api.mass_change_owner.ActionWrapper","com.zoho.crm.api.custom_views.CustomView","com.zoho.crm.api.custom_views.Owner","com.zoho.crm.api.field_attachments.FileBodyWrapper","com.zoho.crm.api.privacy_preference.Preference","com.zoho.crm.api.fields.Profile","com.zoho.crm.api.fiscal_year.ActionWrapper","com.zoho.crm.api.mail_merge.Signers","com.zoho.crm.api.fields.Maps","com.zoho.crm.api.users.Theme","com.zoho.crm.api.custom_views.SharedTo","com.zoho.crm.api.custom_views.SortBy","com.zoho.crm.api.change_owner.SuccessResponse","com.zoho.crm.api.wizards.Actions","com.zoho.crm.api.assignment_rules.AssignmentRules","com.zoho.crm.api.related_lists.ResponseWrapper","com.zoho.crm.api.files.ActionWrapper","com.zoho.crm.api.tags.RecordSuccessResponse","com.zoho.crm.api.shift_hours.ResponseWrapper","com.zoho.crm.api.bulk_read.APIException","com.zoho.crm.api.custom_views.APIException","com.zoho.crm.api.appointment_preference.AppointmentPreference","com.zoho.crm.api.backup.FileBodyWrapper","com.zoho.crm.api.shift_hours.Role","com.zoho.crm.api.territory_users.Info","com.zoho.crm.api.shift_hours.Holidays","com.zoho.crm.api.download_inline_images.APIException","com.zoho.crm.api.record.ResponseWrapper","com.zoho.crm.api.email_templates.EmailTemplate","com.zoho.crm.api.roles.Role","com.zoho.crm.api.fields.Tooltip","com.zoho.crm.api.reschedule_history.User","com.zoho.crm.api.blueprint.ModuleFields","com.zoho.crm.api.portals.Owner","com.zoho.crm.api.portals.APIException","com.zoho.crm.api.timelines.Record","com.zoho.crm.api.record.Reminder","com.zoho.crm.api.pipeline.DPipeline","com.zoho.crm.api.privacy_configurable_apps.Apps","com.zoho.crm.api.blueprint.NextTransition","com.zoho.crm.api.variable_groups.MinifiedVariableGroup","com.zoho.crm.api.change_owner.ErrorDetails","com.zoho.crm.api.variable_groups.VariableGroup","com.zoho.crm.api.send_mail.ActionWrapper","com.zoho.crm.api.record.CountWrapper","com.zoho.crm.api.blueprint.Escalation","com.zoho.crm.api.holidays.CreateShiftHoliday","com.zoho.crm.api.mail_merge.APIException","com.zoho.crm.api.scoring_rules.ScoringRule","com.zoho.crm.api.deal_contact_roles.ErrorDetails","com.zoho.crm.api.bulk_read.CallBack","com.zoho.crm.api.timelines.Info","com.zoho.crm.api.users_unavailability.BodyWrapper","com.zoho.crm.api.user_type_users.Users","com.zoho.crm.api.associate_email.Attachments","com.zoho.crm.api.email_sharing.APIException","com.zoho.crm.api.fields.ActionWrapper","com.zoho.crm.api.entity_scores.Info","com.zoho.crm.api.scoring_rules.SuccessResponse","com.zoho.crm.api.mail_merge.MailMergeTemplate","com.zoho.crm.api.record.PreferenceFieldMatchedValue","com.zoho.crm.api.appointment_preference.Layout","com.zoho.crm.api.users.Tab","com.zoho.crm.api.territory_users.BodyWrapper","com.zoho.crm.api.users_transfer_delete.ActionWrapper","com.zoho.crm.api.roles.ReportingTo","com.zoho.crm.api.related_records.ResponseWrapper","com.zoho.crm.api.user_groups.AssociatedUser","com.zoho.crm.api.record.CarryOverTags","com.zoho.crm.api.timelines.State","com.zoho.crm.api.timelines.Timeline","com.zoho.crm.api.tags.NewTagRequestWrapper","com.zoho.crm.api.download_attachments.APIException","com.zoho.crm.api.profiles.PermissionDetail","com.zoho.crm.api.portal_user_type.Permissions","com.zoho.crm.api.custom_views.Info","com.zoho.crm.api.record.APIException","com.zoho.crm.api.bulk_write.FieldMapping","com.zoho.crm.api.fields.RollupCriteria","com.zoho.crm.api.variable_groups.APIException","com.zoho.crm.api.mail_merge.SuccessResponse","com.zoho.crm.api.appointment_preference.APIException","com.zoho.crm.api.business_hours.APIException","com.zoho.crm.api.wizards.ConditionalRules","com.zoho.crm.api.reschedule_history.BodyWrapper","com.zoho.crm.api.users.ActionWrapper","com.zoho.crm.api.definition.MinifiedProperty1","com.zoho.crm.api.profiles.SuccessResponse","com.zoho.crm.api.record.LineTax","com.zoho.crm.api.share_records.DeleteActionWrapper","com.zoho.crm.api.wizards.Resource","com.zoho.crm.api.wizards.ResponseWrapper","com.zoho.crm.api.attachments.Info","com.zoho.crm.api.roles.ResponseWrapper","com.zoho.crm.api.shift_hours.Users","com.zoho.crm.api.pipeline.MandatoryDetails","com.zoho.crm.api.tags.Info","com.zoho.crm.api.attachments.ActionWrapper","com.zoho.crm.api.associate_email.SuccessResponse","com.zoho.crm.api.record.Territory","com.zoho.crm.api.custom_views.SuccessResponse","com.zoho.crm.api.blueprint.LookupField","com.zoho.crm.api.user_groups.AssociatedUserCount","com.zoho.crm.api.tags.ExistingTagRequestWrapper","com.zoho.crm.api.layouts.DefaultView","com.zoho.crm.api.record_locking.RecordActionLocked","com.zoho.crm.api.user_type_users.ResponseWrapper","com.zoho.crm.api.send_mail.SuccessResponse","com.zoho.crm.api.appointment_preference.SuccessResponse","com.zoho.crm.api.assignment_rules.ActionWrapper","com.zoho.crm.api.portals_meta.RelatedLists","com.zoho.crm.api.record_locking.ResponseWrapper","com.zoho.crm.api.shift_hours.ShiftHours","com.zoho.crm.api.custom_views.BodyWrapper","com.zoho.crm.api.tags.CountResponseWrapper","com.zoho.crm.api.reschedule_history.SuccessResponse","com.zoho.crm.api.portal_invite.ActionWrapper","com.zoho.crm.api.privacy_preference.Config","com.zoho.crm.api.notifications.DeleteDetails","com.zoho.crm.api.definition.Property","com.zoho.crm.api.fields.EmailParser","com.zoho.crm.api.user_groups.AssociationWrapper","com.zoho.crm.api.mail_merge.DownloadMailMergeWrapper","com.zoho.crm.api.fiscal_year.ResponseWrapper","com.zoho.crm.api.related_lists.APIException","com.zoho.crm.api.record.ConversionOption","com.zoho.crm.api.tags.SuccessResponse","com.zoho.crm.api.profiles.Info","com.zoho.crm.api.modules.Argument","com.zoho.crm.api.record.LeadConverter","com.zoho.crm.api.user_groups.Info","com.zoho.crm.api.record.Criteria","com.zoho.crm.api.portal_user_type.APIException","com.zoho.crm.api.territories.SuccessResponse","com.zoho.crm.api.deal_contact_roles.ActionWrapper","com.zoho.crm.api.notes.BodyWrapper","com.zoho.crm.api.currencies.BaseCurrencyWrapper","com.zoho.crm.api.users_transfer_delete.TransferAndDelete","com.zoho.crm.api.appointment_preference.BodyWrapper","com.zoho.crm.api.bulk_read.ActionWrapper","com.zoho.crm.api.portals.SuccessResponse","com.zoho.crm.api.users_territories.Validation","com.zoho.crm.api.timelines.Module","com.zoho.crm.api.org.FileBodyWrapper","com.zoho.crm.api.attachments.ResponseWrapper","com.zoho.crm.api.tags.AssociatedPlaces","com.zoho.crm.api.tags.ErrorDetails","com.zoho.crm.api.blueprint.Profile","com.zoho.crm.api.user_groups.APIException","com.zoho.crm.api.wizards.Button","com.zoho.crm.api.tags.Tag","com.zoho.crm.api.users.Owner","com.zoho.crm.api.record_locking.SuccessResponse","com.zoho.crm.api.user_groups.SourcesWrapper","com.zoho.crm.api.query.ResponseWrapper","com.zoho.crm.api.definition.MinifiedProperty","com.zoho.crm.api.variables.ActionWrapper","com.zoho.crm.api.portal_invite.BodyWrapper","com.zoho.crm.api.users_territories.ResponseWrapper","com.zoho.crm.api.associate_email.AssociateEmail","com.zoho.crm.api.inventory_templates.ResponseWrapper","com.zoho.crm.api.send_mail.InventoryTemplate","com.zoho.crm.api.related_records.BodyWrapper","com.zoho.crm.api.currencies.ErrorDetails","com.zoho.crm.api.bulk_write.SuccessResponse","com.zoho.crm.api.send_mail.InventoryDetails","com.zoho.crm.api.timelines.RelatedRecord","com.zoho.crm.api.users.Info","com.zoho.crm.api.user_groups.Users","com.zoho.crm.api.mass_convert.SuccessResponse","com.zoho.crm.api.pipeline.BodyWrapper","com.zoho.crm.api.modules.ModuleFieldLookup","com.zoho.crm.api.blueprint.Field","com.zoho.crm.api.backup.Info","com.zoho.crm.api.users_transfer_delete.SuccessResponse","com.zoho.crm.api.business_hours.BreakHoursCustomTiming","com.zoho.crm.api.profiles.MinifiedProfile","com.zoho.crm.api.email_related_records.Info","com.zoho.crm.api.files.SuccessResponse","com.zoho.crm.api.related_lists.RelatedList","com.zoho.crm.api.variables.VariableGroup","com.zoho.crm.api.record.FileBodyWrapper","com.zoho.crm.api.record.ConvertBodyWrapper","com.zoho.crm.api.record.Participants","com.zoho.crm.api.blueprint.Transition","com.zoho.crm.api.fiscal_year.BodyWrapper","com.zoho.crm.api.notes.SuccessResponse","com.zoho.crm.api.scoring_rules.LayoutRequestWrapper","com.zoho.crm.api.deal_contact_roles.Data","com.zoho.crm.api.email_sharing.GetEmailSharing","com.zoho.crm.api.email_templates.APIException","com.zoho.crm.api.blueprint.Module","com.zoho.crm.api.associate_email.APIException","com.zoho.crm.api.contact_roles.SuccessResponse","com.zoho.crm.api.email_related_records.LinkedRecord","com.zoho.crm.api.user_groups.Resource","com.zoho.crm.api.associate_email.ModuleMap","com.zoho.crm.api.blueprint.APIException","com.zoho.crm.api.record.MassUpdate","com.zoho.crm.api.roles.BodyWrapper","com.zoho.crm.api.notifications.Event","com.zoho.crm.api.portal_user_type.UserType","com.zoho.crm.api.fields.AutoNumber","com.zoho.crm.api.users_unavailability.Info","com.zoho.crm.api.email_templates.Info","com.zoho.crm.api.timelines.FieldHistory","com.zoho.crm.api.cancel_meetings.APIException","com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.related_lists.Field","com.zoho.crm.api.change_owner.BodyWrapper","com.zoho.crm.api.email_compose_meta.DefaultForm","com.zoho.crm.api.fields.MinifiedField","com.zoho.crm.api.tags.RecordActionWrapper","com.zoho.crm.api.query.BodyWrapper","com.zoho.crm.api.scoring_rules.Field","com.zoho.crm.api.users.AssociatedGroup","com.zoho.crm.api.bulk_write.RequestWrapper","com.zoho.crm.api.share_records.ShareRecord","com.zoho.crm.api.pipeline.TransferPipelineSuccessResponse","com.zoho.crm.api.send_mail.Attachment","com.zoho.crm.api.users_territories.APIException","com.zoho.crm.api.bulk_read.FileBodyWrapper","com.zoho.crm.api.email_sharing.ResponseWrapper","com.zoho.crm.api.mass_delete_cvid.Territory","com.zoho.crm.api.modules.MinifiedModule","com.zoho.crm.api.notifications.Notification","com.zoho.crm.api.modules.LookupFieldProperties","com.zoho.crm.api.record_locking.ErrorWrapper","com.zoho.crm.api.mass_delete_cvid.Status","com.zoho.crm.api.taxes.ResponseWrapper","com.zoho.crm.api.shift_hours.ShiftCount","com.zoho.crm.api.service_preference.SuccessResponse","com.zoho.crm.api.hipaa_compliance.Modules","com.zoho.crm.api.fields.BodyWrapper","com.zoho.crm.api.record.Info","com.zoho.crm.api.reschedule_history.ResponseWrapper","com.zoho.crm.api.record.Record","com.zoho.crm.api.record.RemindAt","com.zoho.crm.api.mail_merge.ActionWrapper","com.zoho.crm.api.notes.Note","com.zoho.crm.api.entity_scores.APIException","com.zoho.crm.api.blueprint.ModuleMapping","com.zoho.crm.api.email_compose_meta.FromAddress","com.zoho.crm.api.record.MassUpdateSuccessResponse","com.zoho.crm.api.scoring_rules.Signal","com.zoho.crm.api.taxes.APIException","com.zoho.crm.api.wizards.ExemptedPortalUserType","com.zoho.crm.api.share_records.SuccessResponse","com.zoho.crm.api.portal_user_type.Views","com.zoho.crm.api.wizards.Connection","com.zoho.crm.api.portal_invite.APIException","com.zoho.crm.api.pipeline.Maps","com.zoho.crm.api.taxes.ExpectedField","com.zoho.crm.api.holidays.Holidays","com.zoho.crm.api.portal_user_type.Filters","com.zoho.crm.api.users.ErrorDetails","com.zoho.crm.api.service_preference.ActionWrapper","com.zoho.crm.api.pipeline.TransferPipeline","com.zoho.crm.api.taxes.Preference","com.zoho.crm.api.tags.ExistingTag","com.zoho.crm.api.user_groups.SourcesCountWrapper","com.zoho.crm.api.org.Resource","com.zoho.crm.api.backup.History","com.zoho.crm.api.mail_merge.DownloadMailMerge","com.zoho.crm.api.appointment_preference.ResponseWrapper","com.zoho.crm.api.related_records.FileBodyWrapper","com.zoho.crm.api.record.Comment","com.zoho.crm.api.associate_email.LinkedRecord","com.zoho.crm.api.variables.SuccessResponse","com.zoho.crm.api.backup.ActionWrapper","com.zoho.crm.api.holidays.ResponseWrapper","com.zoho.crm.api.tags.MergeWrapper","com.zoho.crm.api.org.SuccessResponse","com.zoho.crm.api.bulk_write.APIException","com.zoho.crm.api.layouts.Tooltip","com.zoho.crm.api.territories.ReportingTo","com.zoho.crm.api.email_sharing.ShareFromUser","com.zoho.crm.api.portal_invite.Portal","com.zoho.crm.api.record_locking.Info","com.zoho.crm.api.fields.ConvertMapping","com.zoho.crm.api.mass_delete_cvid.APIException","com.zoho.crm.api.backup.SuccessResponse","com.zoho.crm.api.contact_roles.BodyWrapper","com.zoho.crm.api.service_preference.ServicePreference","com.zoho.crm.api.profiles.CategoryOthers","com.zoho.crm.api.pipeline.ForecastCategory","com.zoho.crm.api.field_map_dependency.PickListMapping","com.zoho.crm.api.territory_users.ResponseWrapper","com.zoho.crm.api.related_records.APIException","com.zoho.crm.api.fields.ViewType","com.zoho.crm.api.backup.BodyWrapper","com.zoho.crm.api.entity_scores.ResponseWrapper","com.zoho.crm.api.portal_invite.ResponseWrapper","com.zoho.crm.api.blueprint.AutoNumber","com.zoho.crm.api.layouts.Profiles","com.zoho.crm.api.layouts.SectionSubformField","com.zoho.crm.api.scoring_rules.APIException","com.zoho.crm.api.wizards.ChartData","com.zoho.crm.api.users.MinifiedUser","com.zoho.crm.api.scoring_rules.RoleRequestWrapper","com.zoho.crm.api.currencies.Format","com.zoho.crm.api.contact_roles.ContactRole","com.zoho.crm.api.email_related_records.Module","com.zoho.crm.api.users.SuccessResponse","com.zoho.crm.api.entity_scores.EntityStructureWithModule","com.zoho.crm.api.notifications.ResponseWrapper","com.zoho.crm.api.pipeline.Stages","com.zoho.crm.api.from_addresses.APIException","com.zoho.crm.api.change_owner.Owner","com.zoho.crm.api.mass_convert.Status","com.zoho.crm.api.hipaa_compliance.SuccessResponse","com.zoho.crm.api.mass_change_owner.APIException","com.zoho.crm.api.portal_invite.PortalInvite","com.zoho.crm.api.privacy_preference.Tpt","com.zoho.crm.api.mass_delete_cvid.ResponseWrapper","com.zoho.crm.api.hipaa_compliance.ActionWrapper","com.zoho.crm.api.users_transfer_delete.MoveSubordinate","com.zoho.crm.api.users_unavailability.APIException","com.zoho.crm.api.fields.HipaaCompliance","com.zoho.crm.api.cancel_meetings.Notify","com.zoho.crm.api.scoring_rules.Info","com.zoho.crm.api.bulk_write.BulkWriteResponse","com.zoho.crm.api.user_groups.AssociationResponse","com.zoho.crm.api.users_territories.ActionWrapper","com.zoho.crm.api.currencies.Currency","com.zoho.crm.api.scoring_rules.SignalRule","com.zoho.crm.api.blueprint.ToolTip","com.zoho.crm.api.org.LicenseDetails","com.zoho.crm.api.roles.ActionWrapper","com.zoho.crm.api.users.BodyWrapper","com.zoho.crm.api.record.DeletedRecordsWrapper","com.zoho.crm.api.fields.Multiselectlookup","com.zoho.crm.api.modules.BodyWrapper","com.zoho.crm.api.shift_hours.ShiftCustomTiming","com.zoho.crm.api.custom_views.Criteria","com.zoho.crm.api.privacy_preference.PrivacyPreference","com.zoho.crm.api.holidays.ShiftHoliday","com.zoho.crm.api.scoring_rules.FieldRule","com.zoho.crm.api.attachments.Owner","com.zoho.crm.api.users_transfer_delete.Status","com.zoho.crm.api.pipeline.Delete","com.zoho.crm.api.layouts.MinifiedLayout","com.zoho.crm.api.roles.SuccessResponse","com.zoho.crm.api.mail_merge.MailMerge","com.zoho.crm.api.custom_views.Field","com.zoho.crm.api.modules.SharingProperties","com.zoho.crm.api.users_unavailability.UsersUnavailability","com.zoho.crm.api.assignment_rules.SuccessResponse","com.zoho.crm.api.blueprint.AssociationDetails","com.zoho.crm.api.hipaa_compliance.ResponseWrapper","com.zoho.crm.api.associate_email.From","com.zoho.crm.api.portal_user_type.Layouts","com.zoho.crm.api.timelines.APIException","com.zoho.crm.api.fields.Currency","com.zoho.crm.api.email_related_records.Email","com.zoho.crm.api.field_map_dependency.BodyWrapper","com.zoho.crm.api.share_records.ActionWrapper","com.zoho.crm.api.record.DuplicateRecord","com.zoho.crm.api.send_mail.Data","com.zoho.crm.api.users_territories.TransferActionWrapper","com.zoho.crm.api.wizards.PortalUserType","com.zoho.crm.api.layouts.Sections","com.zoho.crm.api.profiles.ProfileWrapper","com.zoho.crm.api.record.SuccessResponse","com.zoho.crm.api.deal_contact_roles.APIException","com.zoho.crm.api.currencies.ActionWrapper","com.zoho.crm.api.notes.Info","com.zoho.crm.api.fiscal_year.Year","com.zoho.crm.api.user_groups.SuccessResponse","com.zoho.crm.api.modules.ResponseWrapper","com.zoho.crm.api.user_groups.Owner","com.zoho.crm.api.currencies.DisableSuccess","com.zoho.crm.api.fields.AssociationDetails","com.zoho.crm.api.field_map_dependency.APIException","com.zoho.crm.api.field_map_dependency.SuccessResponse","com.zoho.crm.api.bulk_write.DefaultValue","com.zoho.crm.api.related_records.ActionWrapper","com.zoho.crm.api.territories.MinifiedTerritory","com.zoho.crm.api.org.Org","com.zoho.crm.api.profiles.APIException","com.zoho.crm.api.available_currencies.Currency","com.zoho.crm.api.mail_merge.SignMailMergeWrapper","com.zoho.crm.api.blueprint.ViewType","com.zoho.crm.api.mass_change_owner.Owner","com.zoho.crm.api.record.LineItemProduct","com.zoho.crm.api.wizards.Criteria","com.zoho.crm.api.attachments.FileBodyWrapper","com.zoho.crm.api.modules.RelatedListProperties","com.zoho.crm.api.record_locking.BodyWrapper","com.zoho.crm.api.tags.BodyWrapper","com.zoho.crm.api.mass_convert.PortalUserType","com.zoho.crm.api.wizards.Transition","com.zoho.crm.api.mass_change_owner.BodyWrapper","com.zoho.crm.api.record.BodyWrapper","com.zoho.crm.api.shift_hours.ActionWrapper","com.zoho.crm.api.org.Feature","com.zoho.crm.api.privacy_preference.Section","com.zoho.crm.api.fields.FileUpoladOption","com.zoho.crm.api.field_map_dependency.Parent","com.zoho.crm.api.send_mail.InvalidDetails","com.zoho.crm.api.users.Users","com.zoho.crm.api.modules.Territory","com.zoho.crm.api.inventory_templates.Folder","com.zoho.crm.api.territories.DeletedAssociatedWrapper","com.zoho.crm.api.users_territories.BulkValidation","com.zoho.crm.api.variables.ErrorDetails","com.zoho.crm.api.pipeline.TransferPipelineActionWrapper","com.zoho.crm.api.users_territories.TransferAndDelink","com.zoho.crm.api.holidays.SuccessResponse","com.zoho.crm.api.portals_meta.Filters","com.zoho.crm.api.bulk_read.ResponseWrapper","com.zoho.crm.api.mass_delete_cvid.CvidBodyWrapper","com.zoho.crm.api.record_locking.RecordLock","com.zoho.crm.api.users_territories.TransferWrapper","com.zoho.crm.api.territories.AssociatedUsersCountWrapper","com.zoho.crm.api.record.MassUpdateBodyWrapper","com.zoho.crm.api.users_unavailability.SuccessResponse","com.zoho.crm.api.territories.Criteria","com.zoho.crm.api.record.MassUpdateActionWrapper","com.zoho.crm.api.blueprint.BodyWrapper","com.zoho.crm.api.bulk_write.File","com.zoho.crm.api.privacy_preference.Option","com.zoho.crm.api.associate_email.To","com.zoho.crm.api.hipaa_compliance.HipaaCompliance","com.zoho.crm.api.layouts.SectionField","com.zoho.crm.api.related_records.SuccessResponse","com.zoho.crm.api.modules.APIException","com.zoho.crm.api.modules.Modules","com.zoho.crm.api.record.MultiSelectPicklist","com.zoho.crm.api.mass_change_owner.SuccessResponse","com.zoho.crm.api.portals_meta.Views","com.zoho.crm.api.share_records.APIException","com.zoho.crm.api.portals_meta.Modules","com.zoho.crm.api.fiscal_year.SuccessResponse","com.zoho.crm.api.backup.APIException","com.zoho.crm.api.mass_convert.ErrorDetails","com.zoho.crm.api.org.APIException","com.zoho.crm.api.wizards.Screen","com.zoho.crm.api.contact_roles.ActionWrapper","com.zoho.crm.api.portals_meta.Wrapper","com.zoho.crm.api.tags.RecordDetailTag","com.zoho.crm.api.email_related_records.Status","com.zoho.crm.api.holidays.ActionWrapper","com.zoho.crm.api.territories.Manager","com.zoho.crm.api.modules.LookupField","com.zoho.crm.api.custom_views.PinUnpinFields","com.zoho.crm.api.portals.ActionWrapper","com.zoho.crm.api.email_compose_meta.User","com.zoho.crm.api.bulk_read.Criteria","com.zoho.crm.api.pipeline.Pipeline","com.zoho.crm.api.timelines.ResponseWrapper","com.zoho.crm.api.blueprint.Formula","com.zoho.crm.api.fields.External","com.zoho.crm.api.org.CheckinPreferences","com.zoho.crm.api.user_type_users.APIException","com.zoho.crm.api.service_preference.ResponseWrapper","com.zoho.crm.api.territories.BodyWrapper","com.zoho.crm.api.fields.ForecastCategory","com.zoho.crm.api.record_locking.LockedForS","com.zoho.crm.api.pipeline.ActionWrapper","com.zoho.crm.api.layouts.Properties","com.zoho.crm.api.available_currencies.APIException","com.zoho.crm.api.share_records.BodyWrapper","com.zoho.crm.api.entity_scores.ModuleStructure","com.zoho.crm.api.from_addresses.Address","com.zoho.crm.api.pipeline.SuccessResponse","com.zoho.crm.api.fields.MultiModuleLookup","com.zoho.crm.api.territories.ActionWrapper","com.zoho.crm.api.bulk_write.Resource","com.zoho.crm.api.users_transfer_delete.Transfer","com.zoho.crm.api.notifications.Info","com.zoho.crm.api.notifications.BodyWrapper","com.zoho.crm.api.users_territories.ValidationWrapper","com.zoho.crm.api.modules.ModuleFields","com.zoho.crm.api.users_territories.SuccessResponse","com.zoho.crm.api.field_map_dependency.MapDependency","com.zoho.crm.api.currencies.BaseCurrencyActionWrapper","com.zoho.crm.api.send_mail.To","com.zoho.crm.api.attachments.APIException","com.zoho.crm.api.field_attachments.APIException","com.zoho.crm.api.change_owner.ActionWrapper","com.zoho.crm.api.variables.Variable","com.zoho.crm.api.entity_scores.EntityStructure","com.zoho.crm.api.fields.Success","com.zoho.crm.api.share_records.Module","com.zoho.crm.api.fields.Private","com.zoho.crm.api.user_groups.Groups","com.zoho.crm.api.territory_users.SuccessResponse","com.zoho.crm.api.scoring_rules.ResponseWrapper","com.zoho.crm.api.appointment_preference.ActionWrapper","com.zoho.crm.api.mass_convert.Convert","com.zoho.crm.api.bulk_write.FileBodyWrapper","com.zoho.crm.api.field_map_dependency.SubModule","com.zoho.crm.api.holidays.Info","com.zoho.crm.api.fields.RollupSummary","com.zoho.crm.api.attachments.ParentId","com.zoho.crm.api.mail_merge.MailMergeWrapper","com.zoho.crm.api.holidays.BusinessHoliday","com.zoho.crm.api.user_groups.JobsWrapper","com.zoho.crm.api.associate_email.Record","com.zoho.crm.api.profiles.Profile","com.zoho.crm.api.record_locking.LockRecord","com.zoho.crm.api.territories.Field","com.zoho.crm.api.portal_user_type.Fields","com.zoho.crm.api.field_map_dependency.PicklistMap","com.zoho.crm.api.shift_hours.MandatoryDetails","com.zoho.crm.api.bulk_read.Query","com.zoho.crm.api.custom_views.Fields","com.zoho.crm.api.files.FileBodyWrapper","com.zoho.crm.api.users.Shift","com.zoho.crm.api.record.Wizard","com.zoho.crm.api.send_mail.APIException","com.zoho.crm.api.wizards.Field","com.zoho.crm.api.blueprint.BluePrint","com.zoho.crm.api.definition.Definition","com.zoho.crm.api.territories.Territories","com.zoho.crm.api.notifications.ActionWrapper","com.zoho.crm.api.user_groups.Sources","com.zoho.crm.api.share_records.Dependee","com.zoho.crm.api.mass_delete_cvid.ActionWrapper","com.zoho.crm.api.email_compose_meta.ComposeSettings","com.zoho.crm.api.currencies.BodyWrapper","com.zoho.crm.api.record.PricingDetails","com.zoho.crm.api.business_hours.ActionWrapper","com.zoho.crm.api.territory_users.ActionWrapper","com.zoho.crm.api.record.ImageUpload"],"interface":true},"com.zoho.crm.api.related_records.UpdateRelatedRecordsUsingExternalIDHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.modules.ModuleFieldLookup":{"display_label":{"name":"display_label","type":"String"},"show_fields":{"structure_name":"com.zoho.crm.api.fields.ShowFields","name":"show_fields","type":"List"},"module_1":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"module","type":"com.zoho.crm.api.modules.MinifiedModule"},"revalidate_filter_during_edit":{"name":"revalidate_filter_during_edit","type":"Boolean"},"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"},"query_details":{"structure_name":"com.zoho.crm.api.fields.QueryDetails","name":"query_details","type":"com.zoho.crm.api.fields.QueryDetails"}},"com.zoho.crm.api.related_lists.APIException":{"code":{"values":["INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.notes.Note":{"owner":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Owner","type":"com.zoho.crm.api.users.MinifiedUser"},"note_content":{"name":"Note_Content","type":"String"},"created_time":{"name":"Created_Time","type":"DateTime"},"attachments":{"structure_name":"com.zoho.crm.api.attachments.Attachment","name":"$attachments","type":"List"},"note_title":{"name":"Note_Title","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"se_module":{"name":"$se_module","type":"String"},"voice_note":{"name":"$voice_note","type":"Boolean"},"created_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"size":{"name":"$size","type":"String"},"sharing_permission":{"name":"$sharing_permission","type":"String"},"parent_id":{"structure_name":"com.zoho.crm.api.record.Record","name":"Parent_Id","type":"com.zoho.crm.api.record.Record"},"modified_by":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long"},"is_shared_to_client":{"name":"$is_shared_to_client","type":"Boolean"}},"com.zoho.crm.api.fields.AssociationDetails":{"related_field":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"related_field","type":"com.zoho.crm.api.modules.MinifiedModule"},"lookup_field":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"lookup_field","type":"com.zoho.crm.api.modules.MinifiedModule"}},"com.zoho.crm.api.field_attachments.GetFieldAttachmentsParam":{"fields_attachment_id":{"name":"fields_attachment_id","type":"Long"}},"com.zoho.crm.api.custom_views.Owner":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.portal_invite.ResponseWrapper":{"portal_invite":{"structure_name":"com.zoho.crm.api.portal_invite.JobResponse","name":"portal_invite","type":"List"}},"com.zoho.crm.api.users.Tab":{"font_color":{"values":["#FFFFFF"],"name":"font_color","type":"com.zoho.crm.api.util.Choice"},"background":{"values":["#222222"],"name":"background","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.shift_hours.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.wizards.Transition":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.holidays.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.record.DeleteRecordUsingExternalIDHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.record.LineTax":{"percentage":{"name":"percentage","type":"Double"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"display_name":{"name":"display_name","type":"String"},"value":{"name":"value","type":"Double"}},"com.zoho.crm.api.holidays.ShiftHoliday":{"date":{"name":"date","type":"Date"},"name":{"name":"name","max-length":80,"type":"String"},"type":{"values":["shift_holiday"],"name":"type","type":"com.zoho.crm.api.util.Choice"},"shift_hour":{"structure_name":"com.zoho.crm.api.holidays.ShiftHour","name":"shift_hour","type":"com.zoho.crm.api.holidays.ShiftHour"}},"com.zoho.crm.api.territories.ResponseWrapper":{"territories":{"structure_name":"com.zoho.crm.api.territories.Territories","name":"territories","type":"List"},"info":{"structure_name":"com.zoho.crm.api.territories.Info","name":"info","type":"com.zoho.crm.api.territories.Info"}},"com.zoho.crm.api.record.DeleteRecordParam":{"wf_trigger":{"name":"wf_trigger","type":"Boolean"}},"com.zoho.crm.api.record.SearchRecordsHeader":{"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.record.DeleteRecordUsingExternalIDParam":{"wf_trigger":{"name":"wf_trigger","type":"Boolean"}},"com.zoho.crm.api.download_inline_images.APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.deal_contact_roles.ErrorDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.blueprint.ConvertMapping":{"deals":{"structure_name":"com.zoho.crm.api.blueprint.ModuleMapping","name":"Deals","type":"com.zoho.crm.api.blueprint.ModuleMapping"},"accounts":{"structure_name":"com.zoho.crm.api.blueprint.ModuleMapping","name":"Accounts","type":"com.zoho.crm.api.blueprint.ModuleMapping"},"contacts":{"structure_name":"com.zoho.crm.api.blueprint.ModuleMapping","name":"Contacts","type":"com.zoho.crm.api.blueprint.ModuleMapping"}},"com.zoho.crm.api.mass_delete_cvid.ActionHandler":{"classes":["com.zoho.crm.api.mass_delete_cvid.APIException","com.zoho.crm.api.mass_delete_cvid.ActionWrapper"],"interface":true},"com.zoho.crm.api.holidays.GetHolidayHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.holidays.ResponseWrapper":{"holidays":{"structure_name":"com.zoho.crm.api.holidays.Holiday","name":"holidays","type":"List"},"info":{"structure_name":"com.zoho.crm.api.holidays.Info","name":"info","type":"com.zoho.crm.api.holidays.Info"}},"com.zoho.crm.api.record_locking.LockRecord":{"locked_reason__s":{"name":"Locked_Reason__s","type":"String"}},"com.zoho.crm.api.bulk_read.SuccessResponse":{"code":{"values":["ADDED_SUCCESSFULLY"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"String"},{"name":"operation","type":"String"},{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com.zoho.crm.api.util.Choice"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by","type":"com.zoho.crm.api.users.MinifiedUser"},{"name":"created_time","type":"DateTime"}],"name":"details","type":"Map"},"message":{"values":["Added successfully."],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.pipeline.ActionHandler":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.TransferPipelineActionWrapper","com.zoho.crm.api.pipeline.ActionWrapper"],"interface":true},"com.zoho.crm.api.definition.APIException":{"code":{"values":["INVALID_DATA","REQUIRED_PARAM_MISSING"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"values":["resource"],"name":"param_name","type":"com.zoho.crm.api.util.Choice"},{"values":["resource"],"name":"param","type":"com.zoho.crm.api.util.Choice"}],"name":"details","type":"Map"},"message":{"values":["invalid param","One of the expected parameter is missing"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.query.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.record.Info","name":"info","type":"com.zoho.crm.api.record.Info"}},"com.zoho.crm.api.fields.HipaaCompliance":{"restricted_in_export":{"name":"restricted_in_export","type":"Boolean"},"restricted":{"name":"restricted","type":"Boolean"}},"com.zoho.crm.api.email_compose_meta.FeaturesAvailable":{"inline_compose_window":{"values":[true],"name":"inline_compose_window","type":"com.zoho.crm.api.util.Choice"},"schedule_mail":{"values":[true],"name":"Schedule_Mail","type":"com.zoho.crm.api.util.Choice"},"islivedeskenabled":{"values":[true],"name":"isLiveDeskEnabled","type":"com.zoho.crm.api.util.Choice"},"email_cloud_picker":{"values":[true],"name":"EMAIL_CLOUD_PICKER","type":"com.zoho.crm.api.util.Choice"},"old_compose_revert":{"name":"OLD_COMPOSE_REVERT","type":"Boolean"},"attach_teamdrive":{"values":[true],"name":"attach_teamdrive","type":"com.zoho.crm.api.util.Choice"},"mandateunsublink":{"name":"mandateUnsubLink","type":"Boolean"},"unsubscribe_link":{"values":[true],"name":"UNSUBSCRIBE_LINK","type":"com.zoho.crm.api.util.Choice"},"email_preference":{"name":"EMAIL_PREFERENCE","type":"Boolean"},"form_integration_enabled":{"values":[true],"name":"form_integration_enabled","type":"com.zoho.crm.api.util.Choice"},"attachment":{"name":"ATTACHMENT","type":"Boolean"},"isprivacyenabled":{"values":[true],"name":"isPrivacyEnabled","type":"com.zoho.crm.api.util.Choice"},"best_time_to_contact":{"values":[true],"name":"best_time_to_contact","type":"com.zoho.crm.api.util.Choice"},"auto_suggestion":{"values":[true],"name":"auto_suggestion","type":"com.zoho.crm.api.util.Choice"},"zsurvey_enabled":{"values":[true],"name":"zsurvey_enabled","type":"com.zoho.crm.api.util.Choice"},"subject_line_suggestion":{"name":"subject_line_suggestion","type":"Boolean"}},"com.zoho.crm.api.fields.FileUpoladOption":{"display_value":{"name":"display_value","type":"String"},"actual_value":{"name":"actual_value","type":"String"}},"com.zoho.crm.api.deal_contact_roles.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.deal_contact_roles.Data","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.deal_contact_roles.Info","name":"info","type":"com.zoho.crm.api.deal_contact_roles.Info"}},"com.zoho.crm.api.portals.BodyWrapper":{"portals":{"structure_name":"com.zoho.crm.api.portals.Portals","name":"portals","type":"List"}},"com.zoho.crm.api.record.GetRecordUsingExternalIDHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"},"X_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.notifications.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"structure_name":"com.zoho.crm.api.notifications.Event","name":"events","type":"List"},{"name":"resource_uri","type":"String"},{"name":"resource_id","type":"String"},{"name":"channel_id","type":"Long"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Successfully subscribed for actions-watch of the given module","Successfully un-subscribed from actions-watch","Successfully updated the subscribe details","Successfully removed the subscribe details"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.ConvertBodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.record.LeadConverter","name":"data","max-length":1,"type":"List","min-length":1}},"com.zoho.crm.api.tags.UpdateTagsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.mass_delete_cvid.GetMassDeleteStatusParam":{"job_id":{"name":"job_id","type":"Long","required":true}},"com.zoho.crm.api.appointment_preference.ResponseHandler":{"classes":["com.zoho.crm.api.appointment_preference.APIException","com.zoho.crm.api.appointment_preference.ResponseWrapper"],"interface":true},"com.zoho.crm.api.related_lists.Field":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.send_mail.APIException":{"code":{"values":["INVALID_MODULE","INVALID_DATA","INTERNAL_SERVER_ERROR","MANDATORY_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.timelines.Info":{"per_page":{"name":"per_page","type":"Integer"},"next_page_token":{"name":"next_page_token","type":"String"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"previous_page_token":{"name":"previous_page_token","type":"String"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.record.DeletedRecordsHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.DeletedRecordsWrapper"],"interface":true},"com.zoho.crm.api.service_preference.ActionHandler":{"classes":["com.zoho.crm.api.service_preference.APIException","com.zoho.crm.api.service_preference.ActionWrapper"],"interface":true},"com.zoho.crm.api.users.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.shift_hours.BreakCustomTiming":{"break_timing":{"name":"break_timing","sub-type":"String","type":"List"},"days":{"name":"days","type":"String"}},"com.zoho.crm.api.users.GetUsersHeader":{"If_modified_since":{"name":"If-Modified-Since","type":"DateTime"}},"com.zoho.crm.api.record_locking.ActionResponse":{"classes":["com.zoho.crm.api.record_locking.APIException","com.zoho.crm.api.record_locking.SuccessResponse"],"interface":true},"com.zoho.crm.api.fields.APIException":{"code":{"values":["INVALID_MODULE","MANDATORY_NOT_FOUND","INVALID_DATA","REQUIRED_PARAM_MISSING","LIMIT_EXCEEDED","DEPENDENT_FIELD_MISSING","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"param_name","type":"String"},{"name":"limit","type":"Integer"},{"structure_name":"com.zoho.crm.api.fields.MandatoryDetails","name":"limit_due_to","type":"List"},{"structure_name":"com.zoho.crm.api.fields.MandatoryDetails","name":"dependee","type":"com.zoho.crm.api.fields.MandatoryDetails"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.profiles.ActionWrapper":{"profiles":{"structure_name":"com.zoho.crm.api.profiles.ActionResponse","name":"profiles","type":"List"}},"com.zoho.crm.api.variable_groups.MinifiedVariableGroup":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.business_hours.APIException":{"code":{"values":["MANDATORY_NOT_FOUND","INVALID_DATA","INVALID_MODULE","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"regex","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["required field not found"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_transfer_delete.Status":{"status":{"name":"status","type":"String"}},"com.zoho.crm.api.fields.ViewType":{"view":{"name":"view","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"quick_create":{"name":"quick_create","type":"Boolean"},"create":{"name":"create","type":"Boolean"}},"com.zoho.crm.api.record_locking.RecordActionLockedDetail1":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"},"action":{"name":"action","type":"String"}},"com.zoho.crm.api.notes.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.notes.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.record_locking.RecordActionLockedDetail2":{"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.portal_invite.PortalInvite":{"data":{"structure_name":"com.zoho.crm.api.portal_invite.Portal","name":"data","type":"List"}},"com.zoho.crm.api.scoring_rules.ActionHandler":{"classes":["com.zoho.crm.api.scoring_rules.ActionWrapper","com.zoho.crm.api.scoring_rules.SuccessResponse","com.zoho.crm.api.scoring_rules.APIException"],"interface":true},"com.zoho.crm.api.fields.FunctionParameter":{"api_name":{"name":"api_name","type":"String"}},"com.zoho.crm.api.fields.Private":{"restricted":{"name":"restricted","type":"Boolean"},"type":{"name":"type","type":"String"},"export":{"name":"export","type":"Boolean"}},"com.zoho.crm.api.fields.Multiselectlookup":{"display_label":{"name":"display_label","type":"String"},"linking_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"linking_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"lookup_apiname":{"name":"lookup_apiname","type":"String"},"connected_module":{"structure_name":"com.zoho.crm.api.modules.MinifiedModule","name":"connected_module","type":"com.zoho.crm.api.modules.MinifiedModule"},"api_name":{"name":"api_name","type":"String"},"connectedfield_apiname":{"name":"connectedfield_apiname","type":"String"},"connectedlookup_apiname":{"name":"connectedlookup_apiname","type":"String"},"id":{"name":"id","type":"Long"},"record_access":{"name":"record_access","type":"Boolean"}},"com.zoho.crm.api.users_territories.TransferAndDelink":{"transfer_to_user":{"structure_name":"com.zoho.crm.api.users_territories.TransferToUser","name":"transfer_to_user","type":"com.zoho.crm.api.users_territories.TransferToUser"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.user_groups.AssociatedUser":{"user_group":{"structure_name":"com.zoho.crm.api.user_groups.UserGroup","name":"user_group","type":"com.zoho.crm.api.user_groups.UserGroup"},"count":{"name":"count","type":"Integer"}},"com.zoho.crm.api.deal_contact_roles.APIException":{"code":{"values":["INVALID_MODULE","INVALID_DATA","EXPECTED_FIELD_MISSING","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR","REQUIRED_PARAM_MISSING","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"resource_path_index","type":"Integer"},{"structure_name":"com.zoho.crm.api.deal_contact_roles.ErrorDetails","name":"expected_fields","type":"List"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.backup.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.hipaa_compliance.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.users_transfer_delete.ResponseWrapper":{"transfer_and_delete":{"structure_name":"com.zoho.crm.api.users_transfer_delete.Status","name":"transfer_and_delete","type":"List"}},"com.zoho.crm.api.pipeline.ResponseHandler":{"classes":["com.zoho.crm.api.pipeline.BodyWrapper","com.zoho.crm.api.pipeline.APIException"],"interface":true},"com.zoho.crm.api.reschedule_history.Approval":{"delegate":{"name":"delegate","type":"Boolean"},"approve":{"name":"approve","type":"Boolean"},"reject":{"name":"reject","type":"Boolean"},"resubmit":{"name":"resubmit","type":"Boolean"}},"com.zoho.crm.api.contact_roles.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.layouts.Tooltip":{"name":{"values":["Info Icon"],"name":"name","type":"com.zoho.crm.api.util.Choice"},"value":{"name":"value","type":"String"}},"com.zoho.crm.api.modules.ActionWrapper":{"modules":{"structure_name":"com.zoho.crm.api.modules.ActionResponse","name":"modules","type":"List"}},"com.zoho.crm.api.attachments.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.timelines.GetTimelinesParam":{"include":{"values":["extension","type"],"name":"include","type":"String"},"per_page":{"values":["100"],"name":"per_page","type":"String"},"include_inner_details":{"values":["field_history.data_type","field_history.enable_colour_code","field_history.pick_list_values","field_history.field_label"],"name":"include_inner_details","type":"String"},"include_timeline_type":{"values":["signals"],"name":"include_timeline_type","type":"String"},"page_token":{"values":["11df637fbecf52dc6721f7cf588f4272d552eda3311af76764d4cda650a7b0e01ffc5cd572030fe293f5ea9d60a3c144869fe7eae4e2ac683c08cf2dda07ed56d3d5f9ce4e351049c24a4363c5771087ad78caa76984c0ca4a1b2264808735ea8035cca85aa72c9142808916935c4744"],"name":"page_token","type":"String"},"sort_by":{"values":["audited_time"],"name":"sort_by","type":"String"},"filters":{"values":["200"],"name":"filters","type":"String"},"page":{"values":["1"],"name":"page","type":"String"},"sort_order":{"values":["desc","asc"],"name":"sort_order","type":"String"}},"com.zoho.crm.api.pipeline.TransferPipelinesParam":{"layout_id":{"name":"layout_id","type":"Long"}},"com.zoho.crm.api.variables.GetVariableByAPINameParam":{"group":{"name":"group","type":"String"}},"com.zoho.crm.api.change_owner.ErrorDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.bulk_write.FileBodyWrapper":{"file":{"name":"file","type":"com.zoho.crm.api.util.StreamWrapper"}},"com.zoho.crm.api.record.CountWrapper":{"count":{"name":"count","type":"Long"}},"com.zoho.crm.api.field_attachments.APIException":{"code":{"values":["INVALID_MODULE","INVALID_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","MANDATORY_NOT_FOUND","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.modules.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.field_map_dependency.PicklistMap":{"display_value":{"name":"display_value","type":"String"},"actual_value":{"name":"actual_value","type":"String"},"id":{"name":"id","type":"Long"},"delete":{"name":"_delete","type":"Boolean"}},"com.zoho.crm.api.pipeline.DPipelineWrapper":{"pipeline":{"structure_name":"com.zoho.crm.api.pipeline.DPipeline","name":"pipeline","type":"List"}},"com.zoho.crm.api.deal_contact_roles.GetAssociatedContactRolesParam":{"ids":{"name":"ids","type":"String"},"fields":{"name":"fields","type":"String","required":true}},"com.zoho.crm.api.inventory_templates.Info":{"per_page":{"name":"per_page","type":"Integer"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"},"more_records":{"name":"more_records","type":"Boolean"}},"com.zoho.crm.api.roles.Role":{"display_label":{"name":"display_label","type":"String"},"created_by__s":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"created_by__s","type":"com.zoho.crm.api.users.MinifiedUser"},"modified_by__s":{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"modified_by__s","type":"com.zoho.crm.api.users.MinifiedUser"},"forecast_manager":{"structure_name":"com.zoho.crm.api.roles.ReportingTo","name":"forecast_manager","type":"com.zoho.crm.api.roles.ReportingTo"},"share_with_peers":{"name":"share_with_peers","type":"Boolean"},"modified_time__s":{"name":"modified_time__s","type":"DateTime"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"reporting_to":{"structure_name":"com.zoho.crm.api.roles.ReportingTo","name":"reporting_to","type":"com.zoho.crm.api.roles.ReportingTo"},"id":{"name":"id","type":"Long"},"created_time__s":{"name":"created_time__s","type":"DateTime"},"admin_user":{"name":"admin_user","type":"Boolean"}},"com.zoho.crm.api.contact_roles.ActionResponse":{"classes":["com.zoho.crm.api.contact_roles.APIException","com.zoho.crm.api.contact_roles.SuccessResponse"],"interface":true},"com.zoho.crm.api.fields.RollupSummary":{"return_type":{"name":"return_type","type":"String"},"expression":{"structure_name":"com.zoho.crm.api.fields.Expression","name":"expression","type":"com.zoho.crm.api.fields.Expression"},"based_on_module":{"structure_name":"com.zoho.crm.api.fields.MinifiedField","name":"based_on_module","type":"com.zoho.crm.api.fields.MinifiedField"},"related_list":{"structure_name":"com.zoho.crm.api.fields.MinifiedField","name":"related_list","type":"com.zoho.crm.api.fields.MinifiedField"},"rollup_based_on":{"name":"rollup_based_on","type":"String"}},"com.zoho.crm.api.tags.ExistingTagRequestWrapper":{"ids":{"name":"ids","sub-type":"Integer","type":"List"},"tags":{"structure_name":"com.zoho.crm.api.tags.ExistingTag","name":"tags","type":"List"}},"com.zoho.crm.api.record.Wizard":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.variable_groups.VariableGroup":{"display_label":{"name":"display_label","type":"String"},"api_name":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long"},"source":{"name":"source","type":"String"}},"com.zoho.crm.api.record.MassUpdateBodyWrapper":{"cvid":{"name":"cvid","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","type":"List"},"criteria":{"structure_name":"com.zoho.crm.api.record.Criteria","name":"criteria","type":"List"},"ids":{"name":"ids","sub-type":"String","type":"List"},"over_write":{"name":"over_write","type":"Boolean"},"territory":{"structure_name":"com.zoho.crm.api.record.MassUpdateTerritory","name":"territory","type":"com.zoho.crm.api.record.MassUpdateTerritory"}},"com.zoho.crm.api.layouts.Sections":{"display_label":{"name":"display_label","type":"String"},"sequence_number":{"name":"sequence_number","type":"Integer"},"issubformsection":{"name":"isSubformSection","type":"Boolean"},"tab_traversal":{"name":"tab_traversal","type":"Integer"},"api_name":{"name":"api_name","type":"String"},"column_count":{"name":"column_count","type":"Integer"},"name":{"name":"name","type":"String"},"generated_type":{"name":"generated_type","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"fields":{"structure_name":"com.zoho.crm.api.layouts.SectionField","name":"fields","type":"List"},"properties":{"structure_name":"com.zoho.crm.api.layouts.Properties","name":"properties","type":"com.zoho.crm.api.layouts.Properties"}},"com.zoho.crm.api.reschedule_history.ActionResponse":{"classes":["com.zoho.crm.api.reschedule_history.APIException","com.zoho.crm.api.reschedule_history.SuccessResponse"],"interface":true},"com.zoho.crm.api.download_attachments.GetDownloadAttachmentsDetailsParam":{"user_id":{"name":"user_id","type":"Long","required":true},"message_id":{"name":"message_id","type":"String","required":true}},"com.zoho.crm.api.users.AssociatedGroupsWrapper":{"user_groups":{"structure_name":"com.zoho.crm.api.users.AssociatedGroup","name":"user_groups","type":"List"},"info":{"structure_name":"com.zoho.crm.api.users.Info","name":"info","type":"com.zoho.crm.api.users.Info"}},"com.zoho.crm.api.shift_hours.ActionHandler":{"classes":["com.zoho.crm.api.shift_hours.APIException","com.zoho.crm.api.shift_hours.ActionWrapper"],"interface":true},"com.zoho.crm.api.layouts.MinifiedLayout":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.timelines.NameIdStructure":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"String"}},"com.zoho.crm.api.tags.ErrorDetails":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.record.PriceBook":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"name":{"name":"name","type":"String"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"}},"com.zoho.crm.api.email_templates.ResponseHandler":{"classes":["com.zoho.crm.api.email_templates.ResponseWrapper","com.zoho.crm.api.email_templates.APIException"],"interface":true},"com.zoho.crm.api.mass_convert.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"job_id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.holidays.BodyWrapper":{"classes":["com.zoho.crm.api.holidays.CreateBusinessHoliday","com.zoho.crm.api.holidays.CreateShiftHoliday"],"interface":true},"com.zoho.crm.api.related_records.GetRelatedRecordParam":{"fields":{"name":"fields","type":"String"}},"com.zoho.crm.api.user_type_users.ResponseHandler":{"classes":["com.zoho.crm.api.user_type_users.ResponseWrapper","com.zoho.crm.api.user_type_users.APIException"],"interface":true},"com.zoho.crm.api.tags.NewTagRequestWrapper":{"ids":{"name":"ids","sub-type":"Integer","type":"List"},"over_write":{"name":"over_write","type":"Boolean"},"tags":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"tags","type":"List"}},"com.zoho.crm.api.record.MassUpdateSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"job_id","type":"String"},{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"name":"Created_Time","type":"DateTime"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},{"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"}],"name":"details","type":"Map"},"message":{"values":["record updated","mass update scheduled successfully"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.portal_invite.InviteUsersParam":{"user_type_id":{"name":"user_type_id","type":"Long","required":true},"language":{"values":["en_US","en_GB","bg_BG","zh_CN","zh_TW","hr_HR","ar_EG","in_ID","cs_CZ","da_DK","nl_NL","fr_FR","de_DE","hu_HU","","hi_IN","it_IT","ja_JP","pl_PL","pt_BR","pt_PT","ru_RU","es_ES","sv_SE","th_TH","tr_TR","vi_VN","ko_KR","iw_IL"],"name":"language","type":"String"},"type":{"values":["invite","reinvite"],"name":"type","type":"String","required":true}},"com.zoho.crm.api.fields.Currency":{"rounding_option":{"values":["normal","round_off","round_up","round_down"],"name":"rounding_option","type":"com.zoho.crm.api.util.Choice"},"precision":{"name":"precision","type":"Integer"}},"com.zoho.crm.api.mail_merge.MailMergeWrapper":{"send_mail_merge":{"structure_name":"com.zoho.crm.api.mail_merge.MailMerge","name":"send_mail_merge","type":"List"}},"com.zoho.crm.api.portal_user_type.GetUserTypesParam":{"include":{"values":["modules"],"name":"include","type":"String"}},"com.zoho.crm.api.record.BodyWrapper":{"process":{"name":"process","sub-type":"String","type":"List"},"wf_trigger":{"name":"wf_trigger","type":"String"},"data":{"structure_name":"com.zoho.crm.api.record.Record","name":"data","max-length":100,"type":"List","min-length":1},"lar_id":{"name":"lar_id","type":"String"},"trigger":{"name":"trigger","sub-type":"String","type":"List"},"duplicate_check_fields":{"name":"duplicate_check_fields","sub-type":"String","type":"List"}},"com.zoho.crm.api.mail_merge.SignActionWrapper":{"sign_mail_merge":{"structure_name":"com.zoho.crm.api.mail_merge.SignActionResponse","name":"sign_mail_merge","type":"List"}},"com.zoho.crm.api.hipaa_compliance.APIException":{"code":{"values":["INVALID_API_NAME","NOT_SUPPORTED"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.attachments.GetAttachmentsParam":{"per_page":{"name":"per_page","type":"Integer"},"ids":{"name":"ids","type":"String","required":true},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String","required":true}},"com.zoho.crm.api.record.MassUpdateActionHandler":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateActionWrapper"],"interface":true},"com.zoho.crm.api.record.RecordCountParam":{"phone":{"name":"phone","type":"String"},"criteria":{"name":"criteria","type":"String"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com.zoho.crm.api.mass_convert.APIException":{"code":{"values":["INVALID_DATA","EXPECTED_FIELD_MISSING","MANDATORY_NOT_FOUND","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"param","type":"String"},{"structure_name":"com.zoho.crm.api.mass_convert.ErrorDetails","name":"expected_fields","type":"List"},{"name":"param_name","type":"String"},{"name":"expected_data_type","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.fields.ReferFromField":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.pipeline.TransferPipelineActionWrapper":{"transfer_pipeline":{"structure_name":"com.zoho.crm.api.pipeline.TransferPipelineActionResponse","name":"transfer_pipeline","type":"List"}},"com.zoho.crm.api.variable_groups.ResponseWrapper":{"variable_groups":{"structure_name":"com.zoho.crm.api.variable_groups.VariableGroup","name":"variable_groups","type":"List"}},"com.zoho.crm.api.blueprint.ModuleMapping":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"fields":{"structure_name":"com.zoho.crm.api.blueprint.ModuleFields","name":"fields","type":"List"}},"com.zoho.crm.api.change_owner.SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["success"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.appointment_preference.AppointmentPreference":{"allow_booking_outside_businesshours":{"name":"allow_booking_outside_businesshours","type":"Boolean"},"deal_record_configuration":{"keys":[{"structure_name":"com.zoho.crm.api.appointment_preference.Layout","name":"layout","type":"com.zoho.crm.api.appointment_preference.Layout"},{"structure_name":"com.zoho.crm.api.appointment_preference.FieldMappings","name":"field_mappings","type":"List"},{"name":"id","type":"Long"}],"name":"deal_record_configuration","type":"Map"},"show_job_sheet":{"name":"show_job_sheet","type":"Boolean"},"when_duration_exceeds":{"values":["ask_appointment_provider_to_complete","mark_as_complete","ask_appointment_provider_to_complete","mark_as_complete"],"name":"when_duration_exceeds","type":"com.zoho.crm.api.util.Choice"},"when_appointment_completed":{"values":["do_not_create_deal","create_deal"],"name":"when_appointment_completed","type":"com.zoho.crm.api.util.Choice"},"allow_booking_outside_service_availability":{"name":"allow_booking_outside_service_availability","type":"Boolean"}},"com.zoho.crm.api.users.Profile":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.associate_email.APIException":{"code":{"values":["INVALID_DATA","MANDATORY_NOT_FOUND","INVALID_MODULE","REQUIRED_PARAM_MISSING","DUPLICATE_DATA","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"regex","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"name":"message","type":"String"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.portal_invite.Data":{"classes":["com.zoho.crm.api.portal_invite.SuccessResponse","com.zoho.crm.api.portal_invite.APIException"],"interface":true},"com.zoho.crm.api.mass_delete_cvid.RecordIdBodyWrapper":{"ids":{"name":"ids","max-length":10,"sub-type":"Integer","type":"List"},"territory":{"structure_name":"com.zoho.crm.api.mass_delete_cvid.Territory","name":"territory","type":"com.zoho.crm.api.mass_delete_cvid.Territory"}},"com.zoho.crm.api.custom_views.ResponseHandler":{"classes":["com.zoho.crm.api.custom_views.APIException","com.zoho.crm.api.custom_views.BodyWrapper"],"interface":true},"com.zoho.crm.api.assignment_rules.ResponseHandler":{"classes":["com.zoho.crm.api.assignment_rules.APIException","com.zoho.crm.api.assignment_rules.ResponseWrapper"],"interface":true},"com.zoho.crm.api.tags.Info":{"count":{"name":"count","type":"Integer"},"allowed_count":{"name":"allowed_count","type":"Integer"}},"com.zoho.crm.api.holidays.ResonseHandler":{"classes":["com.zoho.crm.api.holidays.APIException","com.zoho.crm.api.holidays.ResponseWrapper"],"interface":true},"com.zoho.crm.api.business_hours.BodyWrapper":{"business_hours":{"structure_name":"com.zoho.crm.api.business_hours.BusinessHours","name":"business_hours","type":"com.zoho.crm.api.business_hours.BusinessHours"}},"com.zoho.crm.api.org.ResponseWrapper":{"org":{"structure_name":"com.zoho.crm.api.org.Org","name":"org","type":"List"}},"com.zoho.crm.api.service_preference.ResponseHandler":{"classes":["com.zoho.crm.api.service_preference.APIException","com.zoho.crm.api.service_preference.ResponseWrapper"],"interface":true},"com.zoho.crm.api.timelines.RelatedRecord":{"module_1":{"structure_name":"com.zoho.crm.api.timelines.NameIdStructure","name":"module","type":"com.zoho.crm.api.timelines.NameIdStructure"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.taxes.ExpectedField":{"api_name":{"name":"api_name","type":"String"},"json_path":{"name":"json_path","type":"String"}},"com.zoho.crm.api.related_records.UpdateRelatedRecordHeader":{"x_external":{"name":"X-EXTERNAL","type":"String"}},"com.zoho.crm.api.reschedule_history.BodyWrapper":{"data":{"structure_name":"com.zoho.crm.api.reschedule_history.RescheduleHistory","name":"data","max-length":100,"type":"List"}},"com.zoho.crm.api.business_hours.ResponseHandler":{"classes":["com.zoho.crm.api.business_hours.ResponseWrapper","com.zoho.crm.api.business_hours.APIException"],"interface":true},"com.zoho.crm.api.shift_hours.Holidays":{"date":{"name":"date","type":"Date"},"year":{"name":"year","type":"Integer"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.reschedule_history.ResponseWrapper":{"data":{"structure_name":"com.zoho.crm.api.reschedule_history.RescheduleHistory","name":"data","type":"List"},"info":{"structure_name":"com.zoho.crm.api.reschedule_history.Info","name":"info","type":"com.zoho.crm.api.reschedule_history.Info"}},"com.zoho.crm.api.mail_merge.Signers":{"action_type":{"values":["sign","approve"],"name":"action_type","type":"com.zoho.crm.api.util.Choice"},"recipient":{"structure_name":"com.zoho.crm.api.mail_merge.Address","name":"recipient","type":"com.zoho.crm.api.mail_merge.Address"},"recipient_name":{"name":"recipient_name","type":"String"}},"com.zoho.crm.api.user_groups.AssociationWrapper":{"associations":{"structure_name":"com.zoho.crm.api.user_groups.AssociationResponse","name":"associations","type":"List"}},"com.zoho.crm.api.reschedule_history.GetAppointmentsRescheduledHistoryParam":{"per_page":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"sort_by":{"name":"sort_by","type":"String"},"fields":{"name":"fields","type":"String"},"sort_order":{"name":"sort_order","type":"String"}},"com.zoho.crm.api.deal_contact_roles.ContactRole":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.custom_views.ActionWrapper":{"custom_views":{"structure_name":"com.zoho.crm.api.custom_views.ActionResponse","name":"custom_views","type":"List"}},"com.zoho.crm.api.associate_email.ActionHandler":{"classes":["com.zoho.crm.api.associate_email.ActionWrapper","com.zoho.crm.api.associate_email.APIException"],"interface":true},"com.zoho.crm.api.mass_delete_cvid.ActionResponse":{"classes":["com.zoho.crm.api.mass_delete_cvid.SuccessResponse","com.zoho.crm.api.mass_delete_cvid.MassDeleteScheduled","com.zoho.crm.api.mass_delete_cvid.APIException"],"interface":true},"com.zoho.crm.api.share_records.APIException":{"code":{"values":["BAD_REQUEST","INVALID_MODULE","SHARE_LIMIT_EXCEEDED","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","ENTITY_ID_INVALID","NO_PERMISSION","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"permissions","sub-type":"String","type":"List"},{"structure_name":"com.zoho.crm.api.share_records.Dependee","name":"dependee","type":"com.zoho.crm.api.share_records.Dependee"},{"structure_name":"com.zoho.crm.api.share_records.Dependee","name":"ambiguity_due_to","type":"List"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["Scheduler is running","cannot share to the user","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","The relation name given seems to be invalid.","invalid oauth scope to access this URL","Please check if the URL trying to access is a correct one.","Permission is invalid","record is already visible to the user.","Cannot share a record to more than 10 users.","No sharing through this record is available to revoke.","ENTITY_ID_INVALID"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.record.MassUpdateActionResponse":{"classes":["com.zoho.crm.api.record.APIException","com.zoho.crm.api.record.MassUpdateSuccessResponse"],"interface":true},"com.zoho.crm.api.users_territories.TransferActionWrapper":{"transfer_and_delink":{"structure_name":"com.zoho.crm.api.users_territories.TransferActionResponse","name":"transfer_and_delink","type":"List"}},"com.zoho.crm.api.profiles.ActionResponse":{"classes":["com.zoho.crm.api.profiles.SuccessResponse","com.zoho.crm.api.profiles.APIException"],"interface":true},"com.zoho.crm.api.mail_merge.SignActionResponse":{"classes":["com.zoho.crm.api.mail_merge.SuccessResponse"],"interface":true},"com.zoho.crm.api.record_locking.APIException":{"code":{"values":["EXPECTED_FIELD_MISSING","DEPENDENT_FIELD_MISSING","LIMIT_EXCEEDED","NOT_SUPPORTED","INVALID_DATA","MANDATORY_NOT_FOUND","AMBIGUITY_DURING_PROCESSING","INVALID_MODULE","REQUIRED_PARAM_MISSING","INVALID_TOKEN","INVALID_URL_PATTERN","BAD_REQUEST","NO_PERMISSION","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","LIMIT_REACHED","NOT_ALLOWED","ALREADY_USED","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","INTERNAL_SERVER_ERROR"],"name":"code","type":"com.zoho.crm.api.util.Choice"},"details":{"keys":[{"name":"expected_fields","sub-type":"Object","type":"List"},{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"}],"name":"dependee","type":"Map"},{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"limit","type":"Integer"},{"name":"available_limit","type":"Integer"},{"name":"param","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"param_name","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"resource_path_index","type":"Integer"},{"name":"supported_values","sub-type":"String","type":"List"},{"name":"ambiguity_due_to","sub-type":"Object","type":"List"}],"name":"details","type":"Map"},"message":{"values":["Invalid data","required field not found"],"name":"message","type":"com.zoho.crm.api.util.Choice"},"status":{"values":["error"],"name":"status","type":"com.zoho.crm.api.util.Choice"}},"com.zoho.crm.api.tags.ActionResponse":{"classes":["com.zoho.crm.api.tags.APIException","com.zoho.crm.api.tags.SuccessResponse"],"interface":true},"com.zoho.crm.api.business_hours.ActionWrapper":{"business_hours":{"structure_name":"com.zoho.crm.api.business_hours.ActionResponse","name":"business_hours","interface":true,"type":"com.zoho.crm.api.business_hours.ActionResponse"}},"com.zoho.crm.api.email_related_records.ResponseHandler":{"classes":["com.zoho.crm.api.email_related_records.ResponseWrapper","com.zoho.crm.api.email_related_records.APIException"],"interface":true},"com.zoho.crm.api.backup.UrlsWrapper":{"urls":{"structure_name":"com.zoho.crm.api.backup.Urls","name":"urls","type":"com.zoho.crm.api.backup.Urls"}},"com.zoho.crm.api.deal_contact_roles.Data":{"created_time":{"name":"Created_Time","type":"DateTime"},"modified_time":{"name":"Modified_Time","type":"DateTime"},"modified_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Modified_By","type":"com.zoho.crm.api.users.MinifiedUser"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"tag":{"structure_name":"com.zoho.crm.api.tags.Tag","name":"Tag","type":"List"},"created_by":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"Created_By","type":"com.zoho.crm.api.users.MinifiedUser"},"contact_role":{"structure_name":"com.zoho.crm.api.deal_contact_roles.ContactRole","name":"Contact_Role","type":"com.zoho.crm.api.deal_contact_roles.ContactRole"}},"com.zoho.crm.api.blueprint.Field":{"system_mandatory":{"name":"system_mandatory","type":"Boolean"},"private":{"structure_name":"com.zoho.crm.api.fields.Private","name":"private","type":"com.zoho.crm.api.fields.Private"},"webhook":{"name":"webhook","type":"Boolean"},"json_type":{"name":"json_type","type":"String"},"crypt":{"structure_name":"com.zoho.crm.api.blueprint.Crypt","name":"crypt","type":"com.zoho.crm.api.blueprint.Crypt"},"field_label":{"name":"field_label","type":"String"},"tooltip":{"structure_name":"com.zoho.crm.api.blueprint.ToolTip","name":"tooltip","type":"com.zoho.crm.api.blueprint.ToolTip"},"created_source":{"name":"created_source","type":"String"},"type":{"name":"_type","type":"String"},"layouts":{"structure_name":"com.zoho.crm.api.blueprint.Layout","name":"layouts","type":"com.zoho.crm.api.blueprint.Layout"},"mandatory":{"name":"mandatory","type":"Boolean"},"field_read_only":{"name":"field_read_only","type":"Boolean"},"content":{"name":"content","type":"String"},"display_type":{"values":[-1,2],"name":"display_type","type":"com.zoho.crm.api.util.Choice"},"display_label":{"name":"display_label","type":"String"},"ui_type":{"name":"ui_type","type":"Integer"},"validation_rule":{"name":"validation_rule","type":"String"},"read_only":{"name":"read_only","type":"Boolean"},"association_details":{"structure_name":"com.zoho.crm.api.blueprint.AssociationDetails","name":"association_details","type":"com.zoho.crm.api.blueprint.AssociationDetails"},"quick_sequence_number":{"name":"quick_sequence_number","type":"Long"},"multi_module_lookup":{"structure_name":"com.zoho.crm.api.fields.MultiModuleLookup","name":"multi_module_lookup","type":"com.zoho.crm.api.fields.MultiModuleLookup"},"currency":{"structure_name":"com.zoho.crm.api.blueprint.Currency","name":"currency","type":"com.zoho.crm.api.blueprint.Currency"},"id":{"name":"id","type":"String"},"filterable":{"name":"filterable","type":"Boolean"},"custom_field":{"name":"custom_field","type":"Boolean"},"lookup":{"structure_name":"com.zoho.crm.api.blueprint.Module","name":"lookup","type":"com.zoho.crm.api.blueprint.Module"},"convert_mapping":{"structure_name":"com.zoho.crm.api.blueprint.ConvertMapping","name":"convert_mapping","type":"com.zoho.crm.api.blueprint.ConvertMapping"},"visible":{"name":"visible","type":"Boolean"},"length":{"name":"length","type":"Integer"},"column_name":{"name":"column_name","type":"String"},"profiles":{"structure_name":"com.zoho.crm.api.blueprint.Profile","name":"profiles","type":"List"},"view_type":{"structure_name":"com.zoho.crm.api.blueprint.ViewType","name":"view_type","type":"com.zoho.crm.api.blueprint.ViewType"},"pick_list_values_sorted_lexically":{"name":"pick_list_values_sorted_lexically","type":"Boolean"},"personality_name":{"name":"personality_name","type":"String"},"sortable":{"name":"sortable","type":"Boolean"},"transition_sequence":{"name":"transition_sequence","type":"Integer"},"external":{"structure_name":"com.zoho.crm.api.fields.External","name":"external","type":"com.zoho.crm.api.fields.External"},"api_name":{"name":"api_name","type":"String"},"unique":{"structure_name":"com.zoho.crm.api.fields.Unique","name":"unique","type":"com.zoho.crm.api.fields.Unique"},"history_tracking":{"name":"history_tracking","type":"Boolean"},"data_type":{"name":"data_type","type":"String"},"formula":{"structure_name":"com.zoho.crm.api.blueprint.Formula","name":"formula","type":"com.zoho.crm.api.blueprint.Formula"},"decimal_place":{"name":"decimal_place","type":"String"},"multiselectlookup":{"structure_name":"com.zoho.crm.api.blueprint.MultiSelectLookup","name":"multiselectlookup","type":"com.zoho.crm.api.blueprint.MultiSelectLookup"},"pick_list_values":{"structure_name":"com.zoho.crm.api.fields.PickListValue","name":"pick_list_values","type":"List"},"auto_number":{"structure_name":"com.zoho.crm.api.blueprint.AutoNumber","name":"auto_number","type":"com.zoho.crm.api.blueprint.AutoNumber"}},"com.zoho.crm.api.fields.ActionWrapper":{"fields":{"structure_name":"com.zoho.crm.api.fields.ActionResponse","name":"fields","type":"List"}},"com.zoho.crm.api.portals_meta.RelatedLists":{"module_1":{"structure_name":"com.zoho.crm.api.portals_meta.Modules","name":"module","type":"com.zoho.crm.api.portals_meta.Modules"}},"com.zoho.crm.api.assignment_rules.ActionWrapper":{"assignment_rules":{"structure_name":"com.zoho.crm.api.assignment_rules.ActionResponse","name":"assignment_rules","type":"List"}},"com.zoho.crm.api.scoring_rules.ActionResponse":{"classes":["com.zoho.crm.api.scoring_rules.SuccessResponse","com.zoho.crm.api.scoring_rules.APIException"],"interface":true},"com.zoho.crm.api.users_territories.ActionHandler":{"classes":["com.zoho.crm.api.users_territories.APIException","com.zoho.crm.api.users_territories.ActionWrapper"],"interface":true},"com.zoho.crm.api.share_records.BodyWrapper":{"notify_on_completion":{"name":"notify_on_completion","type":"Boolean"},"share":{"structure_name":"com.zoho.crm.api.share_records.ShareRecord","name":"share","max-length":10,"type":"List","min-length":1},"notify":{"name":"notify","type":"Boolean"}},"com.zoho.crm.api.blueprint.Escalation":{"days":{"name":"days","type":"Integer"},"status":{"name":"status","type":"String"}},"com.zoho.crm.api.associate_email.To":{"user_name":{"name":"user_name","type":"String"},"email":{"regex":"[a-z]{7}[@]zoho[.]com","name":"email","type":"String"}},"com.zoho.crm.api.variables.ActionHandler":{"classes":["com.zoho.crm.api.variables.APIException","com.zoho.crm.api.variables.ActionWrapper"],"interface":true},"com.zoho.crm.api.mass_convert.MoveAttachmentsTo":{"api_name":{"name":"api_name","type":"String"},"id":{"name":"id","type":"Long"}},"com.zoho.crm.api.layouts.GetLayoutParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.custom_views.GetCustomViewsParam":{"module_1":{"name":"module","type":"String","required":true}},"com.zoho.crm.api.pipeline.DPipeline":{"delete":{"structure_name":"com.zoho.crm.api.pipeline.Delete","name":"_delete","type":"com.zoho.crm.api.pipeline.Delete"}},"com.zoho.crm.api.portal_invite.ActionHandler":{"classes":["com.zoho.crm.api.portal_invite.ActionWrapper","com.zoho.crm.api.portal_invite.APIException"],"interface":true},"com.zoho.crm.api.record.LeadConverter":{"notify_lead_owner":{"name":"notify_lead_owner","type":"Boolean"},"assign_to":{"lookup":true,"structure_name":"com.zoho.crm.api.users.MinifiedUser","name":"assign_to","type":"com.zoho.crm.api.users.MinifiedUser"},"deals":{"structure_name":"com.zoho.crm.api.record.Record","module":"Deals","name":"Deals","type":"com.zoho.crm.api.record.Record"},"carry_over_tags":{"structure_name":"com.zoho.crm.api.record.CarryOverTags","name":"carry_over_tags","type":"com.zoho.crm.api.record.CarryOverTags"},"accounts":{"structure_name":"com.zoho.crm.api.record.Record","name":"Accounts","type":"com.zoho.crm.api.record.Record"},"overwrite":{"name":"overwrite","type":"Boolean"},"notify_new_entity_owner":{"name":"notify_new_entity_owner","type":"Boolean"},"contacts":{"structure_name":"com.zoho.crm.api.record.Record","name":"Contacts","type":"com.zoho.crm.api.record.Record"}},"com.zoho.crm.api.shift_hours.GetShiftHourHeader":{"x_crm_org":{"name":"X-CRM-ORG","type":"String"}},"com.zoho.crm.api.files.ActionWrapper":{"data":{"structure_name":"com.zoho.crm.api.files.ActionResponse","name":"data","type":"List"}},"com.zoho.crm.api.pipeline.ActionResponse":{"classes":["com.zoho.crm.api.pipeline.APIException","com.zoho.crm.api.pipeline.SuccessResponse"],"interface":true}}