ZOHOCRMSDK7_0 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1479) hide show
  1. checksums.yaml +7 -0
  2. data/src/ZOHOCRMSDK7_0.rb +1472 -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 +64 -0
  9. data/src/com/zoho/crm/api/apis/api_exception.rb +123 -0
  10. data/src/com/zoho/crm/api/apis/apis_operations.rb +40 -0
  11. data/src/com/zoho/crm/api/apis/operation_types.rb +120 -0
  12. data/src/com/zoho/crm/api/apis/response_handler.rb +12 -0
  13. data/src/com/zoho/crm/api/apis/response_wrapper.rb +65 -0
  14. data/src/com/zoho/crm/api/apis/supported_api.rb +82 -0
  15. data/src/com/zoho/crm/api/appointment_preference/action_handler.rb +12 -0
  16. data/src/com/zoho/crm/api/appointment_preference/action_response.rb +12 -0
  17. data/src/com/zoho/crm/api/appointment_preference/action_wrapper.rb +65 -0
  18. data/src/com/zoho/crm/api/appointment_preference/api_exception.rb +127 -0
  19. data/src/com/zoho/crm/api/appointment_preference/appointment_preference.rb +159 -0
  20. data/src/com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb +65 -0
  21. data/src/com/zoho/crm/api/appointment_preference/body_wrapper.rb +63 -0
  22. data/src/com/zoho/crm/api/appointment_preference/deal_record_configuration.rb +101 -0
  23. data/src/com/zoho/crm/api/appointment_preference/field.rb +82 -0
  24. data/src/com/zoho/crm/api/appointment_preference/field_mappings.rb +102 -0
  25. data/src/com/zoho/crm/api/appointment_preference/layout.rb +82 -0
  26. data/src/com/zoho/crm/api/appointment_preference/response_handler.rb +12 -0
  27. data/src/com/zoho/crm/api/appointment_preference/response_wrapper.rb +65 -0
  28. data/src/com/zoho/crm/api/appointment_preference/success_response.rb +123 -0
  29. data/src/com/zoho/crm/api/assignment_rules/action_response.rb +12 -0
  30. data/src/com/zoho/crm/api/assignment_rules/action_wrapper.rb +63 -0
  31. data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +125 -0
  32. data/src/com/zoho/crm/api/assignment_rules/assignment_rules.rb +235 -0
  33. data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +75 -0
  34. data/src/com/zoho/crm/api/assignment_rules/default_assignee.rb +82 -0
  35. data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +12 -0
  36. data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +65 -0
  37. data/src/com/zoho/crm/api/assignment_rules/success_response.rb +123 -0
  38. data/src/com/zoho/crm/api/assignment_rules/user.rb +122 -0
  39. data/src/com/zoho/crm/api/associate_email/action_handler.rb +12 -0
  40. data/src/com/zoho/crm/api/associate_email/action_response.rb +12 -0
  41. data/src/com/zoho/crm/api/associate_email/action_wrapper.rb +65 -0
  42. data/src/com/zoho/crm/api/associate_email/api_exception.rb +125 -0
  43. data/src/com/zoho/crm/api/associate_email/associate_email.rb +273 -0
  44. data/src/com/zoho/crm/api/associate_email/associate_email_operations.rb +49 -0
  45. data/src/com/zoho/crm/api/associate_email/attachments.rb +63 -0
  46. data/src/com/zoho/crm/api/associate_email/available.rb +101 -0
  47. data/src/com/zoho/crm/api/associate_email/body_wrapper.rb +63 -0
  48. data/src/com/zoho/crm/api/associate_email/from.rb +82 -0
  49. data/src/com/zoho/crm/api/associate_email/linked_record.rb +82 -0
  50. data/src/com/zoho/crm/api/associate_email/module_map.rb +82 -0
  51. data/src/com/zoho/crm/api/associate_email/record.rb +101 -0
  52. data/src/com/zoho/crm/api/associate_email/success_response.rb +123 -0
  53. data/src/com/zoho/crm/api/associate_email/to.rb +82 -0
  54. data/src/com/zoho/crm/api/attachments/action_handler.rb +12 -0
  55. data/src/com/zoho/crm/api/attachments/action_response.rb +12 -0
  56. data/src/com/zoho/crm/api/attachments/action_wrapper.rb +65 -0
  57. data/src/com/zoho/crm/api/attachments/api_exception.rb +125 -0
  58. data/src/com/zoho/crm/api/attachments/attachment.rb +368 -0
  59. data/src/com/zoho/crm/api/attachments/attachments_operations.rb +243 -0
  60. data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
  61. data/src/com/zoho/crm/api/attachments/info.rb +120 -0
  62. data/src/com/zoho/crm/api/attachments/owner.rb +101 -0
  63. data/src/com/zoho/crm/api/attachments/parent_id.rb +82 -0
  64. data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
  65. data/src/com/zoho/crm/api/attachments/response_wrapper.rb +84 -0
  66. data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
  67. data/src/com/zoho/crm/api/audit_log_export/action_handler.rb +12 -0
  68. data/src/com/zoho/crm/api/audit_log_export/action_response.rb +12 -0
  69. data/src/com/zoho/crm/api/audit_log_export/action_wrapper.rb +65 -0
  70. data/src/com/zoho/crm/api/audit_log_export/api_exception.rb +127 -0
  71. data/src/com/zoho/crm/api/audit_log_export/audit_log_export.rb +196 -0
  72. data/src/com/zoho/crm/api/audit_log_export/audit_log_export_operations.rb +70 -0
  73. data/src/com/zoho/crm/api/audit_log_export/body_wrapper.rb +63 -0
  74. data/src/com/zoho/crm/api/audit_log_export/criteria.rb +136 -0
  75. data/src/com/zoho/crm/api/audit_log_export/field.rb +63 -0
  76. data/src/com/zoho/crm/api/audit_log_export/module.rb +82 -0
  77. data/src/com/zoho/crm/api/audit_log_export/response_handler.rb +12 -0
  78. data/src/com/zoho/crm/api/audit_log_export/response_wrapper.rb +65 -0
  79. data/src/com/zoho/crm/api/audit_log_export/success_response.rb +123 -0
  80. data/src/com/zoho/crm/api/audit_log_export/user.rb +82 -0
  81. data/src/com/zoho/crm/api/available_currencies/api_exception.rb +123 -0
  82. data/src/com/zoho/crm/api/available_currencies/available_currencies_operations.rb +30 -0
  83. data/src/com/zoho/crm/api/available_currencies/currency.rb +177 -0
  84. data/src/com/zoho/crm/api/available_currencies/response_handler.rb +12 -0
  85. data/src/com/zoho/crm/api/available_currencies/response_wrapper.rb +65 -0
  86. data/src/com/zoho/crm/api/backup/action_handler.rb +12 -0
  87. data/src/com/zoho/crm/api/backup/action_response.rb +12 -0
  88. data/src/com/zoho/crm/api/backup/action_wrapper.rb +65 -0
  89. data/src/com/zoho/crm/api/backup/api_exception.rb +127 -0
  90. data/src/com/zoho/crm/api/backup/backup.rb +158 -0
  91. data/src/com/zoho/crm/api/backup/backup_operations.rb +136 -0
  92. data/src/com/zoho/crm/api/backup/body_wrapper.rb +63 -0
  93. data/src/com/zoho/crm/api/backup/file_body_wrapper.rb +66 -0
  94. data/src/com/zoho/crm/api/backup/history.rb +196 -0
  95. data/src/com/zoho/crm/api/backup/history_wrapper.rb +84 -0
  96. data/src/com/zoho/crm/api/backup/info.rb +120 -0
  97. data/src/com/zoho/crm/api/backup/requester.rb +101 -0
  98. data/src/com/zoho/crm/api/backup/response_handler.rb +12 -0
  99. data/src/com/zoho/crm/api/backup/response_wrapper.rb +65 -0
  100. data/src/com/zoho/crm/api/backup/success_response.rb +123 -0
  101. data/src/com/zoho/crm/api/backup/urls.rb +101 -0
  102. data/src/com/zoho/crm/api/backup/urls_wrapper.rb +65 -0
  103. data/src/com/zoho/crm/api/blueprint/action_handler.rb +12 -0
  104. data/src/com/zoho/crm/api/blueprint/api_exception.rb +125 -0
  105. data/src/com/zoho/crm/api/blueprint/association_details.rb +82 -0
  106. data/src/com/zoho/crm/api/blueprint/auto_number.rb +101 -0
  107. data/src/com/zoho/crm/api/blueprint/blue_print.rb +121 -0
  108. data/src/com/zoho/crm/api/blueprint/blueprint_operations.rb +69 -0
  109. data/src/com/zoho/crm/api/blueprint/body_wrapper.rb +63 -0
  110. data/src/com/zoho/crm/api/blueprint/convert_mapping.rb +101 -0
  111. data/src/com/zoho/crm/api/blueprint/crypt.rb +120 -0
  112. data/src/com/zoho/crm/api/blueprint/currency.rb +82 -0
  113. data/src/com/zoho/crm/api/blueprint/current_picklist.rb +101 -0
  114. data/src/com/zoho/crm/api/blueprint/escalation.rb +82 -0
  115. data/src/com/zoho/crm/api/blueprint/field.rb +924 -0
  116. data/src/com/zoho/crm/api/blueprint/formula.rb +82 -0
  117. data/src/com/zoho/crm/api/blueprint/layout.rb +82 -0
  118. data/src/com/zoho/crm/api/blueprint/lookup_field.rb +82 -0
  119. data/src/com/zoho/crm/api/blueprint/module.rb +120 -0
  120. data/src/com/zoho/crm/api/blueprint/module_fields.rb +120 -0
  121. data/src/com/zoho/crm/api/blueprint/module_mapping.rb +101 -0
  122. data/src/com/zoho/crm/api/blueprint/multi_select_lookup.rb +158 -0
  123. data/src/com/zoho/crm/api/blueprint/next_transition.rb +120 -0
  124. data/src/com/zoho/crm/api/blueprint/process_info.rb +272 -0
  125. data/src/com/zoho/crm/api/blueprint/profile.rb +101 -0
  126. data/src/com/zoho/crm/api/blueprint/response_handler.rb +12 -0
  127. data/src/com/zoho/crm/api/blueprint/response_wrapper.rb +65 -0
  128. data/src/com/zoho/crm/api/blueprint/success_response.rb +123 -0
  129. data/src/com/zoho/crm/api/blueprint/tool_tip.rb +82 -0
  130. data/src/com/zoho/crm/api/blueprint/transition.rb +330 -0
  131. data/src/com/zoho/crm/api/blueprint/view_type.rb +120 -0
  132. data/src/com/zoho/crm/api/bulk_read/action_handler.rb +12 -0
  133. data/src/com/zoho/crm/api/bulk_read/action_response.rb +12 -0
  134. data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +84 -0
  135. data/src/com/zoho/crm/api/bulk_read/api_exception.rb +127 -0
  136. data/src/com/zoho/crm/api/bulk_read/body_wrapper.rb +102 -0
  137. data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +76 -0
  138. data/src/com/zoho/crm/api/bulk_read/call_back.rb +83 -0
  139. data/src/com/zoho/crm/api/bulk_read/criteria.rb +176 -0
  140. data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
  141. data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
  142. data/src/com/zoho/crm/api/bulk_read/module_details.rb +82 -0
  143. data/src/com/zoho/crm/api/bulk_read/query.rb +179 -0
  144. data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
  145. data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
  146. data/src/com/zoho/crm/api/bulk_read/result.rb +158 -0
  147. data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
  148. data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
  149. data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
  150. data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
  151. data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
  152. data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
  153. data/src/com/zoho/crm/api/bulk_write/default_value.rb +98 -0
  154. data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +177 -0
  155. data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
  156. data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
  157. data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +140 -0
  158. data/src/com/zoho/crm/api/bulk_write/resource.rb +236 -0
  159. data/src/com/zoho/crm/api/bulk_write/response_handler.rb +12 -0
  160. data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +12 -0
  161. data/src/com/zoho/crm/api/bulk_write/result.rb +63 -0
  162. data/src/com/zoho/crm/api/bulk_write/success_response.rb +123 -0
  163. data/src/com/zoho/crm/api/business_hours/action_handler.rb +12 -0
  164. data/src/com/zoho/crm/api/business_hours/action_response.rb +12 -0
  165. data/src/com/zoho/crm/api/business_hours/action_wrapper.rb +65 -0
  166. data/src/com/zoho/crm/api/business_hours/api_exception.rb +127 -0
  167. data/src/com/zoho/crm/api/business_hours/body_wrapper.rb +63 -0
  168. data/src/com/zoho/crm/api/business_hours/break_hours_custom_timing.rb +83 -0
  169. data/src/com/zoho/crm/api/business_hours/business_hours.rb +178 -0
  170. data/src/com/zoho/crm/api/business_hours/business_hours_operations.rb +90 -0
  171. data/src/com/zoho/crm/api/business_hours/features.rb +82 -0
  172. data/src/com/zoho/crm/api/business_hours/resources.rb +82 -0
  173. data/src/com/zoho/crm/api/business_hours/response_handler.rb +12 -0
  174. data/src/com/zoho/crm/api/business_hours/response_wrapper.rb +65 -0
  175. data/src/com/zoho/crm/api/business_hours/success_response.rb +123 -0
  176. data/src/com/zoho/crm/api/cadences/api_exception.rb +121 -0
  177. data/src/com/zoho/crm/api/cadences/cadences.rb +310 -0
  178. data/src/com/zoho/crm/api/cadences/custom_view.rb +82 -0
  179. data/src/com/zoho/crm/api/cadences/execute_every.rb +82 -0
  180. data/src/com/zoho/crm/api/cadences/execution_detail.rb +139 -0
  181. data/src/com/zoho/crm/api/cadences/info.rb +120 -0
  182. data/src/com/zoho/crm/api/cadences/module.rb +82 -0
  183. data/src/com/zoho/crm/api/cadences/summary.rb +101 -0
  184. data/src/com/zoho/crm/api/cadences/unenroll_property.rb +82 -0
  185. data/src/com/zoho/crm/api/cadences/user.rb +82 -0
  186. data/src/com/zoho/crm/api/cadences_execution/action.rb +82 -0
  187. data/src/com/zoho/crm/api/cadences_execution/action_handler.rb +12 -0
  188. data/src/com/zoho/crm/api/cadences_execution/action_response.rb +12 -0
  189. data/src/com/zoho/crm/api/cadences_execution/action_wrapper.rb +65 -0
  190. data/src/com/zoho/crm/api/cadences_execution/analytics.rb +120 -0
  191. data/src/com/zoho/crm/api/cadences_execution/analytics_alert.rb +215 -0
  192. data/src/com/zoho/crm/api/cadences_execution/analytics_call.rb +196 -0
  193. data/src/com/zoho/crm/api/cadences_execution/analytics_task.rb +158 -0
  194. data/src/com/zoho/crm/api/cadences_execution/api_exception.rb +125 -0
  195. data/src/com/zoho/crm/api/cadences_execution/body_wrapper.rb +82 -0
  196. data/src/com/zoho/crm/api/cadences_execution/cadence.rb +82 -0
  197. data/src/com/zoho/crm/api/cadences_execution/cadences_analytics_get.rb +139 -0
  198. data/src/com/zoho/crm/api/cadences_execution/cadences_execution_operations.rb +68 -0
  199. data/src/com/zoho/crm/api/cadences_execution/details.rb +82 -0
  200. data/src/com/zoho/crm/api/cadences_execution/module.rb +82 -0
  201. data/src/com/zoho/crm/api/cadences_execution/parent_follow_up.rb +63 -0
  202. data/src/com/zoho/crm/api/cadences_execution/success_response.rb +123 -0
  203. data/src/com/zoho/crm/api/cadences_execution/template.rb +82 -0
  204. data/src/com/zoho/crm/api/cadences_execution/user.rb +82 -0
  205. data/src/com/zoho/crm/api/cancel_meetings/action_handler.rb +12 -0
  206. data/src/com/zoho/crm/api/cancel_meetings/action_response.rb +12 -0
  207. data/src/com/zoho/crm/api/cancel_meetings/action_wrapper.rb +65 -0
  208. data/src/com/zoho/crm/api/cancel_meetings/api_exception.rb +125 -0
  209. data/src/com/zoho/crm/api/cancel_meetings/body_wrapper.rb +63 -0
  210. data/src/com/zoho/crm/api/cancel_meetings/cancel_meetings_operations.rb +43 -0
  211. data/src/com/zoho/crm/api/cancel_meetings/notify.rb +63 -0
  212. data/src/com/zoho/crm/api/cancel_meetings/success_response.rb +123 -0
  213. data/src/com/zoho/crm/api/change_owner/action_handler.rb +12 -0
  214. data/src/com/zoho/crm/api/change_owner/action_response.rb +12 -0
  215. data/src/com/zoho/crm/api/change_owner/action_wrapper.rb +65 -0
  216. data/src/com/zoho/crm/api/change_owner/api_exception.rb +125 -0
  217. data/src/com/zoho/crm/api/change_owner/body_wrapper.rb +101 -0
  218. data/src/com/zoho/crm/api/change_owner/change_owner_operations.rb +71 -0
  219. data/src/com/zoho/crm/api/change_owner/error_details.rb +82 -0
  220. data/src/com/zoho/crm/api/change_owner/mass_wrapper.rb +122 -0
  221. data/src/com/zoho/crm/api/change_owner/owner.rb +63 -0
  222. data/src/com/zoho/crm/api/change_owner/related_modules.rb +82 -0
  223. data/src/com/zoho/crm/api/change_owner/success_response.rb +123 -0
  224. data/src/com/zoho/crm/api/contact_roles/action_handler.rb +12 -0
  225. data/src/com/zoho/crm/api/contact_roles/action_response.rb +12 -0
  226. data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +65 -0
  227. data/src/com/zoho/crm/api/contact_roles/api_exception.rb +127 -0
  228. data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +63 -0
  229. data/src/com/zoho/crm/api/contact_roles/contact_role.rb +101 -0
  230. data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +163 -0
  231. data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
  232. data/src/com/zoho/crm/api/contact_roles/response_wrapper.rb +65 -0
  233. data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
  234. data/src/com/zoho/crm/api/conversion_option/api_exception.rb +123 -0
  235. data/src/com/zoho/crm/api/conversion_option/conversion_option_operations.rb +40 -0
  236. data/src/com/zoho/crm/api/conversion_option/conversion_options.rb +160 -0
  237. data/src/com/zoho/crm/api/conversion_option/field.rb +82 -0
  238. data/src/com/zoho/crm/api/conversion_option/preference_field_match.rb +82 -0
  239. data/src/com/zoho/crm/api/conversion_option/preference_field_matched_value.rb +101 -0
  240. data/src/com/zoho/crm/api/conversion_option/response_handler.rb +12 -0
  241. data/src/com/zoho/crm/api/conversion_option/response_wrapper.rb +65 -0
  242. data/src/com/zoho/crm/api/convert_lead/action_handler.rb +12 -0
  243. data/src/com/zoho/crm/api/convert_lead/action_response.rb +12 -0
  244. data/src/com/zoho/crm/api/convert_lead/action_wrapper.rb +65 -0
  245. data/src/com/zoho/crm/api/convert_lead/api_exception.rb +125 -0
  246. data/src/com/zoho/crm/api/convert_lead/body_wrapper.rb +63 -0
  247. data/src/com/zoho/crm/api/convert_lead/carry_over_tags.rb +101 -0
  248. data/src/com/zoho/crm/api/convert_lead/convert_lead_operations.rb +47 -0
  249. data/src/com/zoho/crm/api/convert_lead/lead_converter.rb +237 -0
  250. data/src/com/zoho/crm/api/convert_lead/move_attachments_to.rb +82 -0
  251. data/src/com/zoho/crm/api/convert_lead/success_response.rb +123 -0
  252. data/src/com/zoho/crm/api/coql/api_exception.rb +123 -0
  253. data/src/com/zoho/crm/api/coql/body_wrapper.rb +63 -0
  254. data/src/com/zoho/crm/api/coql/clause_details.rb +65 -0
  255. data/src/com/zoho/crm/api/coql/coql_operations.rb +36 -0
  256. data/src/com/zoho/crm/api/coql/details_wrapper.rb +12 -0
  257. data/src/com/zoho/crm/api/coql/parse_error_details.rb +103 -0
  258. data/src/com/zoho/crm/api/coql/response_handler.rb +12 -0
  259. data/src/com/zoho/crm/api/coql/response_wrapper.rb +86 -0
  260. data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
  261. data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
  262. data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
  263. data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
  264. data/src/com/zoho/crm/api/currencies/base_currency.rb +292 -0
  265. data/src/com/zoho/crm/api/currencies/base_currency_action_response.rb +12 -0
  266. data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +65 -0
  267. data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +63 -0
  268. data/src/com/zoho/crm/api/currencies/body_wrapper.rb +63 -0
  269. data/src/com/zoho/crm/api/currencies/currencies_operations.rb +158 -0
  270. data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
  271. data/src/com/zoho/crm/api/currencies/error_details.rb +82 -0
  272. data/src/com/zoho/crm/api/currencies/format.rb +102 -0
  273. data/src/com/zoho/crm/api/currencies/response_handler.rb +12 -0
  274. data/src/com/zoho/crm/api/currencies/response_wrapper.rb +65 -0
  275. data/src/com/zoho/crm/api/currencies/success_response.rb +125 -0
  276. data/src/com/zoho/crm/api/custom_views/action_handler.rb +12 -0
  277. data/src/com/zoho/crm/api/custom_views/action_response.rb +12 -0
  278. data/src/com/zoho/crm/api/custom_views/action_wrapper.rb +65 -0
  279. data/src/com/zoho/crm/api/custom_views/api_exception.rb +127 -0
  280. data/src/com/zoho/crm/api/custom_views/body_wrapper.rb +63 -0
  281. data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
  282. data/src/com/zoho/crm/api/custom_views/custom_views.rb +463 -0
  283. data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +154 -0
  284. data/src/com/zoho/crm/api/custom_views/field.rb +82 -0
  285. data/src/com/zoho/crm/api/custom_views/fields.rb +101 -0
  286. data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
  287. data/src/com/zoho/crm/api/custom_views/owner.rb +101 -0
  288. data/src/com/zoho/crm/api/custom_views/pin_fields.rb +101 -0
  289. data/src/com/zoho/crm/api/custom_views/pin_unpin_fields.rb +63 -0
  290. data/src/com/zoho/crm/api/custom_views/response_handler.rb +12 -0
  291. data/src/com/zoho/crm/api/custom_views/response_wrapper.rb +84 -0
  292. data/src/com/zoho/crm/api/custom_views/shared_to.rb +121 -0
  293. data/src/com/zoho/crm/api/custom_views/sort_by.rb +82 -0
  294. data/src/com/zoho/crm/api/custom_views/success_response.rb +123 -0
  295. data/src/com/zoho/crm/api/custom_views/translation.rb +120 -0
  296. data/src/com/zoho/crm/api/dc/au_datacenter.rb +21 -0
  297. data/src/com/zoho/crm/api/dc/ca_datacenter.rb +21 -0
  298. data/src/com/zoho/crm/api/dc/cn_datacenter.rb +21 -0
  299. data/src/com/zoho/crm/api/dc/datacenter.rb +76 -0
  300. data/src/com/zoho/crm/api/dc/eu_datacenter.rb +21 -0
  301. data/src/com/zoho/crm/api/dc/in_datacenter.rb +21 -0
  302. data/src/com/zoho/crm/api/dc/jp_datacenter.rb +21 -0
  303. data/src/com/zoho/crm/api/dc/us_datacenter.rb +21 -0
  304. data/src/com/zoho/crm/api/deal_contact_roles/action_handler.rb +12 -0
  305. data/src/com/zoho/crm/api/deal_contact_roles/action_response.rb +12 -0
  306. data/src/com/zoho/crm/api/deal_contact_roles/action_wrapper.rb +65 -0
  307. data/src/com/zoho/crm/api/deal_contact_roles/api_exception.rb +127 -0
  308. data/src/com/zoho/crm/api/deal_contact_roles/body_wrapper.rb +63 -0
  309. data/src/com/zoho/crm/api/deal_contact_roles/contact_role.rb +82 -0
  310. data/src/com/zoho/crm/api/deal_contact_roles/data.rb +154 -0
  311. data/src/com/zoho/crm/api/deal_contact_roles/deal_contact_roles_operations.rb +141 -0
  312. data/src/com/zoho/crm/api/deal_contact_roles/error_details.rb +82 -0
  313. data/src/com/zoho/crm/api/deal_contact_roles/info.rb +177 -0
  314. data/src/com/zoho/crm/api/deal_contact_roles/response_handler.rb +12 -0
  315. data/src/com/zoho/crm/api/deal_contact_roles/response_wrapper.rb +84 -0
  316. data/src/com/zoho/crm/api/deal_contact_roles/success_response.rb +123 -0
  317. data/src/com/zoho/crm/api/definition/api_exception.rb +121 -0
  318. data/src/com/zoho/crm/api/definition/definition.rb +101 -0
  319. data/src/com/zoho/crm/api/definition/minified_property.rb +158 -0
  320. data/src/com/zoho/crm/api/definition/minified_property1.rb +139 -0
  321. data/src/com/zoho/crm/api/definition/property.rb +272 -0
  322. data/src/com/zoho/crm/api/definition/response_wrapper.rb +63 -0
  323. data/src/com/zoho/crm/api/digest/action_handler.rb +12 -0
  324. data/src/com/zoho/crm/api/digest/action_response.rb +12 -0
  325. data/src/com/zoho/crm/api/digest/action_wrapper.rb +65 -0
  326. data/src/com/zoho/crm/api/digest/api_exception.rb +125 -0
  327. data/src/com/zoho/crm/api/digest/body_wrapper.rb +63 -0
  328. data/src/com/zoho/crm/api/digest/dependee.rb +82 -0
  329. data/src/com/zoho/crm/api/digest/digest.rb +101 -0
  330. data/src/com/zoho/crm/api/digest/digest_operations.rb +37 -0
  331. data/src/com/zoho/crm/api/digest/success_response.rb +123 -0
  332. data/src/com/zoho/crm/api/download_attachments/api_exception.rb +123 -0
  333. data/src/com/zoho/crm/api/download_attachments/download_attachments_operations.rb +68 -0
  334. data/src/com/zoho/crm/api/download_attachments/file_body_wrapper.rb +66 -0
  335. data/src/com/zoho/crm/api/download_attachments/response_handler.rb +12 -0
  336. data/src/com/zoho/crm/api/download_inline_images/api_exception.rb +123 -0
  337. data/src/com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb +64 -0
  338. data/src/com/zoho/crm/api/download_inline_images/file_body_wrapper.rb +66 -0
  339. data/src/com/zoho/crm/api/download_inline_images/response_handler.rb +12 -0
  340. data/src/com/zoho/crm/api/duplicate_check_preference/action_handler.rb +12 -0
  341. data/src/com/zoho/crm/api/duplicate_check_preference/action_response.rb +12 -0
  342. data/src/com/zoho/crm/api/duplicate_check_preference/action_wrapper.rb +65 -0
  343. data/src/com/zoho/crm/api/duplicate_check_preference/api_exception.rb +127 -0
  344. data/src/com/zoho/crm/api/duplicate_check_preference/body_wrapper.rb +63 -0
  345. data/src/com/zoho/crm/api/duplicate_check_preference/current_field.rb +101 -0
  346. data/src/com/zoho/crm/api/duplicate_check_preference/duplicate_check_preference.rb +83 -0
  347. data/src/com/zoho/crm/api/duplicate_check_preference/duplicate_check_preference_operations.rb +108 -0
  348. data/src/com/zoho/crm/api/duplicate_check_preference/expected_fields.rb +82 -0
  349. data/src/com/zoho/crm/api/duplicate_check_preference/field_mappings.rb +82 -0
  350. data/src/com/zoho/crm/api/duplicate_check_preference/mapped_field.rb +101 -0
  351. data/src/com/zoho/crm/api/duplicate_check_preference/mapped_module.rb +101 -0
  352. data/src/com/zoho/crm/api/duplicate_check_preference/response_handler.rb +12 -0
  353. data/src/com/zoho/crm/api/duplicate_check_preference/response_wrapper.rb +65 -0
  354. data/src/com/zoho/crm/api/duplicate_check_preference/success_response.rb +123 -0
  355. data/src/com/zoho/crm/api/duplicate_check_preference/type_configuration.rb +82 -0
  356. data/src/com/zoho/crm/api/email_compose_meta/data.rb +63 -0
  357. data/src/com/zoho/crm/api/email_compose_meta/data_map.rb +139 -0
  358. data/src/com/zoho/crm/api/email_compose_meta/features_available.rb +349 -0
  359. data/src/com/zoho/crm/api/email_compose_meta/from_address.rb +140 -0
  360. data/src/com/zoho/crm/api/email_compose_meta/signature.rb +82 -0
  361. data/src/com/zoho/crm/api/email_compose_meta/user.rb +139 -0
  362. data/src/com/zoho/crm/api/email_drafts/action_response.rb +12 -0
  363. data/src/com/zoho/crm/api/email_drafts/action_wrapper.rb +63 -0
  364. data/src/com/zoho/crm/api/email_drafts/api_exception.rb +123 -0
  365. data/src/com/zoho/crm/api/email_drafts/attachments.rb +120 -0
  366. data/src/com/zoho/crm/api/email_drafts/body_wrapper.rb +63 -0
  367. data/src/com/zoho/crm/api/email_drafts/email_drafts.rb +367 -0
  368. data/src/com/zoho/crm/api/email_drafts/inventory_details.rb +121 -0
  369. data/src/com/zoho/crm/api/email_drafts/inventory_template.rb +82 -0
  370. data/src/com/zoho/crm/api/email_drafts/response_wrapper.rb +63 -0
  371. data/src/com/zoho/crm/api/email_drafts/schedule_details.rb +101 -0
  372. data/src/com/zoho/crm/api/email_drafts/success_response.rb +123 -0
  373. data/src/com/zoho/crm/api/email_drafts/template.rb +82 -0
  374. data/src/com/zoho/crm/api/email_drafts/to.rb +82 -0
  375. data/src/com/zoho/crm/api/email_related_records/api_exception.rb +123 -0
  376. data/src/com/zoho/crm/api/email_related_records/attachments.rb +101 -0
  377. data/src/com/zoho/crm/api/email_related_records/criteria.rb +102 -0
  378. data/src/com/zoho/crm/api/email_related_records/email.rb +537 -0
  379. data/src/com/zoho/crm/api/email_related_records/email_related_records_operations.rb +102 -0
  380. data/src/com/zoho/crm/api/email_related_records/field.rb +63 -0
  381. data/src/com/zoho/crm/api/email_related_records/info.rb +139 -0
  382. data/src/com/zoho/crm/api/email_related_records/linked_record.rb +101 -0
  383. data/src/com/zoho/crm/api/email_related_records/module.rb +82 -0
  384. data/src/com/zoho/crm/api/email_related_records/response_handler.rb +12 -0
  385. data/src/com/zoho/crm/api/email_related_records/response_wrapper.rb +84 -0
  386. data/src/com/zoho/crm/api/email_related_records/status.rb +196 -0
  387. data/src/com/zoho/crm/api/email_related_records/user_details.rb +82 -0
  388. data/src/com/zoho/crm/api/email_sharing_details/api_exception.rb +123 -0
  389. data/src/com/zoho/crm/api/email_sharing_details/email_sharing_details_operations.rb +44 -0
  390. data/src/com/zoho/crm/api/email_sharing_details/email_sharings.rb +82 -0
  391. data/src/com/zoho/crm/api/email_sharing_details/response_handler.rb +12 -0
  392. data/src/com/zoho/crm/api/email_sharing_details/response_wrapper.rb +65 -0
  393. data/src/com/zoho/crm/api/email_sharing_details/share_from_user.rb +101 -0
  394. data/src/com/zoho/crm/api/email_templates/api_exception.rb +123 -0
  395. data/src/com/zoho/crm/api/email_templates/attachment.rb +120 -0
  396. data/src/com/zoho/crm/api/email_templates/email_template.rb +452 -0
  397. data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +63 -0
  398. data/src/com/zoho/crm/api/email_templates/info.rb +120 -0
  399. data/src/com/zoho/crm/api/email_templates/last_version_statistics.rb +158 -0
  400. data/src/com/zoho/crm/api/email_templates/response_handler.rb +12 -0
  401. data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +84 -0
  402. data/src/com/zoho/crm/api/entity_scores/api_exception.rb +123 -0
  403. data/src/com/zoho/crm/api/entity_scores/entity.rb +101 -0
  404. data/src/com/zoho/crm/api/entity_scores/entity_scores.rb +253 -0
  405. data/src/com/zoho/crm/api/entity_scores/entity_scores_operations.rb +114 -0
  406. data/src/com/zoho/crm/api/entity_scores/info.rb +215 -0
  407. data/src/com/zoho/crm/api/entity_scores/module.rb +82 -0
  408. data/src/com/zoho/crm/api/entity_scores/response_handler.rb +12 -0
  409. data/src/com/zoho/crm/api/entity_scores/response_wrapper.rb +84 -0
  410. data/src/com/zoho/crm/api/entity_scores/scoring_rule.rb +82 -0
  411. data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
  412. data/src/com/zoho/crm/api/features/api_exception.rb +123 -0
  413. data/src/com/zoho/crm/api/features/component.rb +120 -0
  414. data/src/com/zoho/crm/api/features/detail.rb +101 -0
  415. data/src/com/zoho/crm/api/features/feature.rb +158 -0
  416. data/src/com/zoho/crm/api/features/features_operations.rb +107 -0
  417. data/src/com/zoho/crm/api/features/info.rb +120 -0
  418. data/src/com/zoho/crm/api/features/limit.rb +82 -0
  419. data/src/com/zoho/crm/api/features/response_handler.rb +12 -0
  420. data/src/com/zoho/crm/api/features/response_wrapper.rb +84 -0
  421. data/src/com/zoho/crm/api/field_attachments/api_exception.rb +123 -0
  422. data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +54 -0
  423. data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +66 -0
  424. data/src/com/zoho/crm/api/field_attachments/response_handler.rb +12 -0
  425. data/src/com/zoho/crm/api/field_map_dependency/action_handler.rb +12 -0
  426. data/src/com/zoho/crm/api/field_map_dependency/action_response.rb +12 -0
  427. data/src/com/zoho/crm/api/field_map_dependency/action_wrapper.rb +65 -0
  428. data/src/com/zoho/crm/api/field_map_dependency/api_exception.rb +127 -0
  429. data/src/com/zoho/crm/api/field_map_dependency/body_wrapper.rb +63 -0
  430. data/src/com/zoho/crm/api/field_map_dependency/child.rb +82 -0
  431. data/src/com/zoho/crm/api/field_map_dependency/field_map_dependency_operations.rb +177 -0
  432. data/src/com/zoho/crm/api/field_map_dependency/info.rb +120 -0
  433. data/src/com/zoho/crm/api/field_map_dependency/map_dependency.rb +215 -0
  434. data/src/com/zoho/crm/api/field_map_dependency/parent.rb +82 -0
  435. data/src/com/zoho/crm/api/field_map_dependency/pick_list_mapping.rb +120 -0
  436. data/src/com/zoho/crm/api/field_map_dependency/picklist_map.rb +120 -0
  437. data/src/com/zoho/crm/api/field_map_dependency/response_handler.rb +12 -0
  438. data/src/com/zoho/crm/api/field_map_dependency/response_wrapper.rb +84 -0
  439. data/src/com/zoho/crm/api/field_map_dependency/sub_module.rb +82 -0
  440. data/src/com/zoho/crm/api/field_map_dependency/success_response.rb +123 -0
  441. data/src/com/zoho/crm/api/fields/action_handler.rb +12 -0
  442. data/src/com/zoho/crm/api/fields/action_response.rb +12 -0
  443. data/src/com/zoho/crm/api/fields/action_wrapper.rb +65 -0
  444. data/src/com/zoho/crm/api/fields/api_exception.rb +127 -0
  445. data/src/com/zoho/crm/api/fields/association_details.rb +83 -0
  446. data/src/com/zoho/crm/api/fields/auto_number.rb +120 -0
  447. data/src/com/zoho/crm/api/fields/body_wrapper.rb +63 -0
  448. data/src/com/zoho/crm/api/fields/convert_mapping.rb +101 -0
  449. data/src/com/zoho/crm/api/fields/criteria.rb +136 -0
  450. data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
  451. data/src/com/zoho/crm/api/fields/currency.rb +83 -0
  452. data/src/com/zoho/crm/api/fields/email_parser.rb +82 -0
  453. data/src/com/zoho/crm/api/fields/expression.rb +101 -0
  454. data/src/com/zoho/crm/api/fields/external.rb +101 -0
  455. data/src/com/zoho/crm/api/fields/fields.rb +1525 -0
  456. data/src/com/zoho/crm/api/fields/fields_operations.rb +245 -0
  457. data/src/com/zoho/crm/api/fields/file_upolad_option.rb +82 -0
  458. data/src/com/zoho/crm/api/fields/forecast_category.rb +82 -0
  459. data/src/com/zoho/crm/api/fields/formula.rb +82 -0
  460. data/src/com/zoho/crm/api/fields/function_parameter.rb +63 -0
  461. data/src/com/zoho/crm/api/fields/hipaa_compliance.rb +82 -0
  462. data/src/com/zoho/crm/api/fields/history_tracking.rb +83 -0
  463. data/src/com/zoho/crm/api/fields/history_tracking_module.rb +159 -0
  464. data/src/com/zoho/crm/api/fields/layout_association.rb +101 -0
  465. data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
  466. data/src/com/zoho/crm/api/fields/mandatory_details.rb +82 -0
  467. data/src/com/zoho/crm/api/fields/maps.rb +82 -0
  468. data/src/com/zoho/crm/api/fields/minified_field.rb +82 -0
  469. data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +102 -0
  470. data/src/com/zoho/crm/api/fields/multiselectlookup.rb +216 -0
  471. data/src/com/zoho/crm/api/fields/operation_type.rb +120 -0
  472. data/src/com/zoho/crm/api/fields/pick_list_value.rb +273 -0
  473. data/src/com/zoho/crm/api/fields/private.rb +101 -0
  474. data/src/com/zoho/crm/api/fields/profile.rb +101 -0
  475. data/src/com/zoho/crm/api/fields/query_details.rb +82 -0
  476. data/src/com/zoho/crm/api/fields/refer_from_field.rb +82 -0
  477. data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
  478. data/src/com/zoho/crm/api/fields/response_wrapper.rb +65 -0
  479. data/src/com/zoho/crm/api/fields/rollup_criteria.rb +98 -0
  480. data/src/com/zoho/crm/api/fields/rollup_summary.rb +139 -0
  481. data/src/com/zoho/crm/api/fields/sharing_properties.rb +102 -0
  482. data/src/com/zoho/crm/api/fields/show_fields.rb +82 -0
  483. data/src/com/zoho/crm/api/fields/subform.rb +82 -0
  484. data/src/com/zoho/crm/api/fields/success_response.rb +123 -0
  485. data/src/com/zoho/crm/api/fields/textarea.rb +63 -0
  486. data/src/com/zoho/crm/api/fields/tooltip.rb +82 -0
  487. data/src/com/zoho/crm/api/fields/unique.rb +63 -0
  488. data/src/com/zoho/crm/api/fields/view_type.rb +120 -0
  489. data/src/com/zoho/crm/api/files/action_handler.rb +12 -0
  490. data/src/com/zoho/crm/api/files/action_response.rb +12 -0
  491. data/src/com/zoho/crm/api/files/action_wrapper.rb +65 -0
  492. data/src/com/zoho/crm/api/files/api_exception.rb +125 -0
  493. data/src/com/zoho/crm/api/files/body_wrapper.rb +64 -0
  494. data/src/com/zoho/crm/api/files/file_body_wrapper.rb +66 -0
  495. data/src/com/zoho/crm/api/files/files_operations.rb +80 -0
  496. data/src/com/zoho/crm/api/files/response_handler.rb +12 -0
  497. data/src/com/zoho/crm/api/files/success_response.rb +123 -0
  498. data/src/com/zoho/crm/api/find_and_merge/action_handler.rb +12 -0
  499. data/src/com/zoho/crm/api/find_and_merge/action_response.rb +12 -0
  500. data/src/com/zoho/crm/api/find_and_merge/action_wrapper.rb +65 -0
  501. data/src/com/zoho/crm/api/find_and_merge/api_exception.rb +127 -0
  502. data/src/com/zoho/crm/api/find_and_merge/body_wrapper.rb +63 -0
  503. data/src/com/zoho/crm/api/find_and_merge/data_fields.rb +82 -0
  504. data/src/com/zoho/crm/api/find_and_merge/find_and_merge_operations.rb +83 -0
  505. data/src/com/zoho/crm/api/find_and_merge/image_data.rb +63 -0
  506. data/src/com/zoho/crm/api/find_and_merge/master_record_fields.rb +82 -0
  507. data/src/com/zoho/crm/api/find_and_merge/merge.rb +120 -0
  508. data/src/com/zoho/crm/api/find_and_merge/merge_data.rb +82 -0
  509. data/src/com/zoho/crm/api/find_and_merge/response_handler.rb +12 -0
  510. data/src/com/zoho/crm/api/find_and_merge/response_wrapper.rb +65 -0
  511. data/src/com/zoho/crm/api/find_and_merge/success_response.rb +123 -0
  512. data/src/com/zoho/crm/api/fiscal_year/action_handler.rb +12 -0
  513. data/src/com/zoho/crm/api/fiscal_year/action_response.rb +12 -0
  514. data/src/com/zoho/crm/api/fiscal_year/action_wrapper.rb +65 -0
  515. data/src/com/zoho/crm/api/fiscal_year/api_exception.rb +127 -0
  516. data/src/com/zoho/crm/api/fiscal_year/body_wrapper.rb +63 -0
  517. data/src/com/zoho/crm/api/fiscal_year/fiscal_year_operations.rb +51 -0
  518. data/src/com/zoho/crm/api/fiscal_year/response_handler.rb +12 -0
  519. data/src/com/zoho/crm/api/fiscal_year/response_wrapper.rb +65 -0
  520. data/src/com/zoho/crm/api/fiscal_year/success_response.rb +123 -0
  521. data/src/com/zoho/crm/api/fiscal_year/year.rb +102 -0
  522. data/src/com/zoho/crm/api/from_addresses/address.rb +139 -0
  523. data/src/com/zoho/crm/api/from_addresses/api_exception.rb +123 -0
  524. data/src/com/zoho/crm/api/from_addresses/from_addresses_operations.rb +30 -0
  525. data/src/com/zoho/crm/api/from_addresses/response_handler.rb +12 -0
  526. data/src/com/zoho/crm/api/from_addresses/response_wrapper.rb +65 -0
  527. data/src/com/zoho/crm/api/functions/api_exception.rb +123 -0
  528. data/src/com/zoho/crm/api/functions/body_wrapper.rb +63 -0
  529. data/src/com/zoho/crm/api/functions/file_body_wrapper.rb +64 -0
  530. data/src/com/zoho/crm/api/functions/functions_operations.rb +175 -0
  531. data/src/com/zoho/crm/api/functions/response_wrapper.rb +12 -0
  532. data/src/com/zoho/crm/api/functions/success_response.rb +104 -0
  533. data/src/com/zoho/crm/api/global_picklists/action_handler.rb +12 -0
  534. data/src/com/zoho/crm/api/global_picklists/action_response.rb +12 -0
  535. data/src/com/zoho/crm/api/global_picklists/action_wrapper.rb +65 -0
  536. data/src/com/zoho/crm/api/global_picklists/api_exception.rb +137 -0
  537. data/src/com/zoho/crm/api/global_picklists/association.rb +101 -0
  538. data/src/com/zoho/crm/api/global_picklists/associations_response_handler.rb +12 -0
  539. data/src/com/zoho/crm/api/global_picklists/associations_response_wrapper.rb +84 -0
  540. data/src/com/zoho/crm/api/global_picklists/body_wrapper.rb +63 -0
  541. data/src/com/zoho/crm/api/global_picklists/field.rb +82 -0
  542. data/src/com/zoho/crm/api/global_picklists/global_picklists_operations.rb +313 -0
  543. data/src/com/zoho/crm/api/global_picklists/info.rb +120 -0
  544. data/src/com/zoho/crm/api/global_picklists/layout.rb +101 -0
  545. data/src/com/zoho/crm/api/global_picklists/module.rb +101 -0
  546. data/src/com/zoho/crm/api/global_picklists/pick_list_values.rb +140 -0
  547. data/src/com/zoho/crm/api/global_picklists/pick_list_values_association.rb +82 -0
  548. data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_handler.rb +12 -0
  549. data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_wrapper.rb +65 -0
  550. data/src/com/zoho/crm/api/global_picklists/picklist.rb +273 -0
  551. data/src/com/zoho/crm/api/global_picklists/replace_action_handler.rb +12 -0
  552. data/src/com/zoho/crm/api/global_picklists/replace_action_response.rb +12 -0
  553. data/src/com/zoho/crm/api/global_picklists/replace_action_wrapper.rb +65 -0
  554. data/src/com/zoho/crm/api/global_picklists/replace_body_wrapper.rb +63 -0
  555. data/src/com/zoho/crm/api/global_picklists/replace_picklist_value.rb +82 -0
  556. data/src/com/zoho/crm/api/global_picklists/replace_picklist_values.rb +82 -0
  557. data/src/com/zoho/crm/api/global_picklists/replace_success_response.rb +123 -0
  558. data/src/com/zoho/crm/api/global_picklists/replaced_response_handler.rb +12 -0
  559. data/src/com/zoho/crm/api/global_picklists/replaced_response_wrapper.rb +65 -0
  560. data/src/com/zoho/crm/api/global_picklists/replaced_value.rb +82 -0
  561. data/src/com/zoho/crm/api/global_picklists/resource.rb +102 -0
  562. data/src/com/zoho/crm/api/global_picklists/response_handler.rb +12 -0
  563. data/src/com/zoho/crm/api/global_picklists/response_wrapper.rb +65 -0
  564. data/src/com/zoho/crm/api/global_picklists/success_response.rb +123 -0
  565. data/src/com/zoho/crm/api/header.rb +12 -0
  566. data/src/com/zoho/crm/api/header_map.rb +63 -0
  567. data/src/com/zoho/crm/api/hipaa_compliance/action_handler.rb +12 -0
  568. data/src/com/zoho/crm/api/hipaa_compliance/action_response.rb +12 -0
  569. data/src/com/zoho/crm/api/hipaa_compliance/action_wrapper.rb +63 -0
  570. data/src/com/zoho/crm/api/hipaa_compliance/api_exception.rb +123 -0
  571. data/src/com/zoho/crm/api/hipaa_compliance/hipaa_compliance.rb +158 -0
  572. data/src/com/zoho/crm/api/hipaa_compliance/modules.rb +82 -0
  573. data/src/com/zoho/crm/api/hipaa_compliance/response_wrapper.rb +63 -0
  574. data/src/com/zoho/crm/api/hipaa_compliance/success_response.rb +123 -0
  575. data/src/com/zoho/crm/api/holidays/action_handler.rb +12 -0
  576. data/src/com/zoho/crm/api/holidays/action_response.rb +12 -0
  577. data/src/com/zoho/crm/api/holidays/action_wrapper.rb +65 -0
  578. data/src/com/zoho/crm/api/holidays/api_exception.rb +129 -0
  579. data/src/com/zoho/crm/api/holidays/body_wrapper.rb +12 -0
  580. data/src/com/zoho/crm/api/holidays/business_holiday.rb +101 -0
  581. data/src/com/zoho/crm/api/holidays/create_business_holiday.rb +65 -0
  582. data/src/com/zoho/crm/api/holidays/create_shift_holiday.rb +65 -0
  583. data/src/com/zoho/crm/api/holidays/holiday.rb +158 -0
  584. data/src/com/zoho/crm/api/holidays/holidays.rb +63 -0
  585. data/src/com/zoho/crm/api/holidays/holidays_operations.rb +189 -0
  586. data/src/com/zoho/crm/api/holidays/info.rb +120 -0
  587. data/src/com/zoho/crm/api/holidays/resonse_handler.rb +12 -0
  588. data/src/com/zoho/crm/api/holidays/response_handler.rb +12 -0
  589. data/src/com/zoho/crm/api/holidays/response_wrapper.rb +86 -0
  590. data/src/com/zoho/crm/api/holidays/shift_holiday.rb +121 -0
  591. data/src/com/zoho/crm/api/holidays/shift_hour.rb +82 -0
  592. data/src/com/zoho/crm/api/holidays/success_response.rb +123 -0
  593. data/src/com/zoho/crm/api/initializer.rb +232 -0
  594. data/src/com/zoho/crm/api/inventory_convert/api_exception.rb +121 -0
  595. data/src/com/zoho/crm/api/inventory_convert/convert_to.rb +82 -0
  596. data/src/com/zoho/crm/api/inventory_convert/inventory_converter.rb +63 -0
  597. data/src/com/zoho/crm/api/inventory_convert/module.rb +82 -0
  598. data/src/com/zoho/crm/api/inventory_convert/record.rb +82 -0
  599. data/src/com/zoho/crm/api/inventory_convert/success_response.rb +121 -0
  600. data/src/com/zoho/crm/api/inventory_mass_convert/api_exception.rb +121 -0
  601. data/src/com/zoho/crm/api/inventory_mass_convert/body_wrapper.rb +120 -0
  602. data/src/com/zoho/crm/api/inventory_mass_convert/convert_to.rb +82 -0
  603. data/src/com/zoho/crm/api/inventory_mass_convert/module.rb +82 -0
  604. data/src/com/zoho/crm/api/inventory_mass_convert/related_modules.rb +82 -0
  605. data/src/com/zoho/crm/api/inventory_mass_convert/success_response.rb +121 -0
  606. data/src/com/zoho/crm/api/inventory_mass_convert/user.rb +82 -0
  607. data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +123 -0
  608. data/src/com/zoho/crm/api/inventory_templates/folder.rb +82 -0
  609. data/src/com/zoho/crm/api/inventory_templates/info.rb +120 -0
  610. data/src/com/zoho/crm/api/inventory_templates/inventory_templates.rb +333 -0
  611. data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +75 -0
  612. data/src/com/zoho/crm/api/inventory_templates/module_map.rb +82 -0
  613. data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +12 -0
  614. data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +84 -0
  615. data/src/com/zoho/crm/api/inventory_templates/user.rb +82 -0
  616. data/src/com/zoho/crm/api/isc_signature/signature.rb +60 -0
  617. data/src/com/zoho/crm/api/layouts/action_response.rb +12 -0
  618. data/src/com/zoho/crm/api/layouts/action_wrapper.rb +63 -0
  619. data/src/com/zoho/crm/api/layouts/actions_allowed.rb +177 -0
  620. data/src/com/zoho/crm/api/layouts/api_exception.rb +123 -0
  621. data/src/com/zoho/crm/api/layouts/body_wrapper.rb +63 -0
  622. data/src/com/zoho/crm/api/layouts/convert_mapping.rb +139 -0
  623. data/src/com/zoho/crm/api/layouts/deal_field.rb +120 -0
  624. data/src/com/zoho/crm/api/layouts/deal_layout_mapping.rb +103 -0
  625. data/src/com/zoho/crm/api/layouts/default_assignment_view.rb +101 -0
  626. data/src/com/zoho/crm/api/layouts/default_view.rb +101 -0
  627. data/src/com/zoho/crm/api/layouts/layouts.rb +463 -0
  628. data/src/com/zoho/crm/api/layouts/layouts_operations.rb +81 -0
  629. data/src/com/zoho/crm/api/layouts/minified_layout.rb +82 -0
  630. data/src/com/zoho/crm/api/layouts/profiles.rb +139 -0
  631. data/src/com/zoho/crm/api/layouts/properties.rb +101 -0
  632. data/src/com/zoho/crm/api/layouts/response_handler.rb +12 -0
  633. data/src/com/zoho/crm/api/layouts/response_wrapper.rb +65 -0
  634. data/src/com/zoho/crm/api/layouts/section_field.rb +1629 -0
  635. data/src/com/zoho/crm/api/layouts/section_subform_field.rb +101 -0
  636. data/src/com/zoho/crm/api/layouts/sections.rb +272 -0
  637. data/src/com/zoho/crm/api/layouts/static_values.rb +101 -0
  638. data/src/com/zoho/crm/api/layouts/subform_property.rb +63 -0
  639. data/src/com/zoho/crm/api/layouts/success_response.rb +123 -0
  640. data/src/com/zoho/crm/api/layouts/tooltip.rb +83 -0
  641. data/src/com/zoho/crm/api/mail_merge/action_handler.rb +12 -0
  642. data/src/com/zoho/crm/api/mail_merge/action_response.rb +12 -0
  643. data/src/com/zoho/crm/api/mail_merge/action_wrapper.rb +65 -0
  644. data/src/com/zoho/crm/api/mail_merge/address.rb +82 -0
  645. data/src/com/zoho/crm/api/mail_merge/api_exception.rb +131 -0
  646. data/src/com/zoho/crm/api/mail_merge/download_mail_merge.rb +121 -0
  647. data/src/com/zoho/crm/api/mail_merge/download_mail_merge_wrapper.rb +63 -0
  648. data/src/com/zoho/crm/api/mail_merge/download_response_handler.rb +12 -0
  649. data/src/com/zoho/crm/api/mail_merge/file_body_wrapper.rb +66 -0
  650. data/src/com/zoho/crm/api/mail_merge/mail_merge.rb +215 -0
  651. data/src/com/zoho/crm/api/mail_merge/mail_merge_operations.rb +101 -0
  652. data/src/com/zoho/crm/api/mail_merge/mail_merge_template.rb +82 -0
  653. data/src/com/zoho/crm/api/mail_merge/mail_merge_wrapper.rb +63 -0
  654. data/src/com/zoho/crm/api/mail_merge/sign_action_handler.rb +12 -0
  655. data/src/com/zoho/crm/api/mail_merge/sign_action_response.rb +12 -0
  656. data/src/com/zoho/crm/api/mail_merge/sign_action_wrapper.rb +65 -0
  657. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge.rb +120 -0
  658. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge_wrapper.rb +63 -0
  659. data/src/com/zoho/crm/api/mail_merge/signers.rb +102 -0
  660. data/src/com/zoho/crm/api/mail_merge/success_response.rb +125 -0
  661. data/src/com/zoho/crm/api/mass_change_owner/action_handler.rb +12 -0
  662. data/src/com/zoho/crm/api/mass_change_owner/action_response.rb +12 -0
  663. data/src/com/zoho/crm/api/mass_change_owner/action_wrapper.rb +65 -0
  664. data/src/com/zoho/crm/api/mass_change_owner/api_exception.rb +125 -0
  665. data/src/com/zoho/crm/api/mass_change_owner/body_wrapper.rb +120 -0
  666. data/src/com/zoho/crm/api/mass_change_owner/criteria.rb +136 -0
  667. data/src/com/zoho/crm/api/mass_change_owner/field.rb +82 -0
  668. data/src/com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb +73 -0
  669. data/src/com/zoho/crm/api/mass_change_owner/owner.rb +82 -0
  670. data/src/com/zoho/crm/api/mass_change_owner/response_handler.rb +12 -0
  671. data/src/com/zoho/crm/api/mass_change_owner/response_wrapper.rb +65 -0
  672. data/src/com/zoho/crm/api/mass_change_owner/status.rb +140 -0
  673. data/src/com/zoho/crm/api/mass_change_owner/success_response.rb +123 -0
  674. data/src/com/zoho/crm/api/mass_change_owner/territory.rb +82 -0
  675. data/src/com/zoho/crm/api/mass_convert/action_response.rb +12 -0
  676. data/src/com/zoho/crm/api/mass_convert/api_exception.rb +125 -0
  677. data/src/com/zoho/crm/api/mass_convert/assign_to.rb +63 -0
  678. data/src/com/zoho/crm/api/mass_convert/body_wrapper.rb +197 -0
  679. data/src/com/zoho/crm/api/mass_convert/error_details.rb +82 -0
  680. data/src/com/zoho/crm/api/mass_convert/mass_convert_operations.rb +68 -0
  681. data/src/com/zoho/crm/api/mass_convert/move_attachments_to.rb +82 -0
  682. data/src/com/zoho/crm/api/mass_convert/portal_user_type.rb +82 -0
  683. data/src/com/zoho/crm/api/mass_convert/related_module.rb +82 -0
  684. data/src/com/zoho/crm/api/mass_convert/response_handler.rb +12 -0
  685. data/src/com/zoho/crm/api/mass_convert/response_wrapper.rb +65 -0
  686. data/src/com/zoho/crm/api/mass_convert/status.rb +139 -0
  687. data/src/com/zoho/crm/api/mass_convert/success_response.rb +123 -0
  688. data/src/com/zoho/crm/api/mass_delete_cvid/action_handler.rb +12 -0
  689. data/src/com/zoho/crm/api/mass_delete_cvid/action_response.rb +12 -0
  690. data/src/com/zoho/crm/api/mass_delete_cvid/action_wrapper.rb +65 -0
  691. data/src/com/zoho/crm/api/mass_delete_cvid/api_exception.rb +127 -0
  692. data/src/com/zoho/crm/api/mass_delete_cvid/cvid_body_wrapper.rb +82 -0
  693. data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_cvid_operations.rb +95 -0
  694. data/src/com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb +82 -0
  695. data/src/com/zoho/crm/api/mass_delete_cvid/response_handler.rb +12 -0
  696. data/src/com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb +65 -0
  697. data/src/com/zoho/crm/api/mass_delete_cvid/status.rb +121 -0
  698. data/src/com/zoho/crm/api/mass_delete_cvid/success_response.rb +123 -0
  699. data/src/com/zoho/crm/api/mass_delete_cvid/territory.rb +82 -0
  700. data/src/com/zoho/crm/api/mass_delete_tags/action_response.rb +12 -0
  701. data/src/com/zoho/crm/api/mass_delete_tags/api_exception.rb +127 -0
  702. data/src/com/zoho/crm/api/mass_delete_tags/body_wrapper.rb +63 -0
  703. data/src/com/zoho/crm/api/mass_delete_tags/mass_delete.rb +82 -0
  704. data/src/com/zoho/crm/api/mass_delete_tags/mass_delete_details.rb +142 -0
  705. data/src/com/zoho/crm/api/mass_delete_tags/mass_delete_tags_operations.rb +64 -0
  706. data/src/com/zoho/crm/api/mass_delete_tags/module.rb +82 -0
  707. data/src/com/zoho/crm/api/mass_delete_tags/status_action_response.rb +12 -0
  708. data/src/com/zoho/crm/api/mass_delete_tags/status_response_handler.rb +12 -0
  709. data/src/com/zoho/crm/api/mass_delete_tags/status_response_wrapper.rb +65 -0
  710. data/src/com/zoho/crm/api/mass_delete_tags/success_response.rb +123 -0
  711. data/src/com/zoho/crm/api/mass_delete_tags/tag.rb +63 -0
  712. data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
  713. data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
  714. data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
  715. data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
  716. data/src/com/zoho/crm/api/modules/argument.rb +82 -0
  717. data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
  718. data/src/com/zoho/crm/api/modules/lookup_field.rb +103 -0
  719. data/src/com/zoho/crm/api/modules/lookup_field_properties.rb +63 -0
  720. data/src/com/zoho/crm/api/modules/minified_module.rb +120 -0
  721. data/src/com/zoho/crm/api/modules/module_field_lookup.rb +181 -0
  722. data/src/com/zoho/crm/api/modules/module_fields.rb +1551 -0
  723. data/src/com/zoho/crm/api/modules/modules.rb +1305 -0
  724. data/src/com/zoho/crm/api/modules/modules_operations.rb +133 -0
  725. data/src/com/zoho/crm/api/modules/related_list_properties.rb +102 -0
  726. data/src/com/zoho/crm/api/modules/response_handler.rb +12 -0
  727. data/src/com/zoho/crm/api/modules/response_wrapper.rb +65 -0
  728. data/src/com/zoho/crm/api/modules/sharing_properties.rb +102 -0
  729. data/src/com/zoho/crm/api/modules/static_subform_field.rb +82 -0
  730. data/src/com/zoho/crm/api/modules/static_subform_properties.rb +63 -0
  731. data/src/com/zoho/crm/api/modules/success_response.rb +123 -0
  732. data/src/com/zoho/crm/api/modules/territory.rb +101 -0
  733. data/src/com/zoho/crm/api/notes/action_handler.rb +12 -0
  734. data/src/com/zoho/crm/api/notes/action_response.rb +12 -0
  735. data/src/com/zoho/crm/api/notes/action_wrapper.rb +65 -0
  736. data/src/com/zoho/crm/api/notes/api_exception.rb +127 -0
  737. data/src/com/zoho/crm/api/notes/body_wrapper.rb +63 -0
  738. data/src/com/zoho/crm/api/notes/info.rb +215 -0
  739. data/src/com/zoho/crm/api/notes/note.rb +350 -0
  740. data/src/com/zoho/crm/api/notes/notes_operations.rb +233 -0
  741. data/src/com/zoho/crm/api/notes/parent_id.rb +102 -0
  742. data/src/com/zoho/crm/api/notes/response_handler.rb +12 -0
  743. data/src/com/zoho/crm/api/notes/response_wrapper.rb +84 -0
  744. data/src/com/zoho/crm/api/notes/success_response.rb +123 -0
  745. data/src/com/zoho/crm/api/notifications/action_handler.rb +12 -0
  746. data/src/com/zoho/crm/api/notifications/action_response.rb +12 -0
  747. data/src/com/zoho/crm/api/notifications/action_wrapper.rb +65 -0
  748. data/src/com/zoho/crm/api/notifications/api_exception.rb +127 -0
  749. data/src/com/zoho/crm/api/notifications/body_wrapper.rb +63 -0
  750. data/src/com/zoho/crm/api/notifications/criteria.rb +136 -0
  751. data/src/com/zoho/crm/api/notifications/event.rb +158 -0
  752. data/src/com/zoho/crm/api/notifications/field.rb +82 -0
  753. data/src/com/zoho/crm/api/notifications/info.rb +120 -0
  754. data/src/com/zoho/crm/api/notifications/module.rb +82 -0
  755. data/src/com/zoho/crm/api/notifications/notification.rb +294 -0
  756. data/src/com/zoho/crm/api/notifications/notification_condition.rb +101 -0
  757. data/src/com/zoho/crm/api/notifications/notifications_operations.rb +165 -0
  758. data/src/com/zoho/crm/api/notifications/response_handler.rb +12 -0
  759. data/src/com/zoho/crm/api/notifications/response_wrapper.rb +84 -0
  760. data/src/com/zoho/crm/api/notifications/success_response.rb +123 -0
  761. data/src/com/zoho/crm/api/org/action_handler.rb +12 -0
  762. data/src/com/zoho/crm/api/org/action_wrapper.rb +63 -0
  763. data/src/com/zoho/crm/api/org/api_exception.rb +182 -0
  764. data/src/com/zoho/crm/api/org/checkin_preferences.rb +63 -0
  765. data/src/com/zoho/crm/api/org/feature.rb +82 -0
  766. data/src/com/zoho/crm/api/org/file_body_wrapper.rb +66 -0
  767. data/src/com/zoho/crm/api/org/hierarchy_preferences.rb +83 -0
  768. data/src/com/zoho/crm/api/org/license_details.rb +177 -0
  769. data/src/com/zoho/crm/api/org/org.rb +862 -0
  770. data/src/com/zoho/crm/api/org/org_operations.rb +82 -0
  771. data/src/com/zoho/crm/api/org/resource.rb +82 -0
  772. data/src/com/zoho/crm/api/org/response_handler.rb +12 -0
  773. data/src/com/zoho/crm/api/org/response_wrapper.rb +65 -0
  774. data/src/com/zoho/crm/api/org/success_response.rb +123 -0
  775. data/src/com/zoho/crm/api/param.rb +12 -0
  776. data/src/com/zoho/crm/api/parameter_map.rb +62 -0
  777. data/src/com/zoho/crm/api/pick_list_values/api_exception.rb +123 -0
  778. data/src/com/zoho/crm/api/pick_list_values/layout_association.rb +101 -0
  779. data/src/com/zoho/crm/api/pick_list_values/pick_list_values.rb +196 -0
  780. data/src/com/zoho/crm/api/pick_list_values/pick_list_values_operations.rb +47 -0
  781. data/src/com/zoho/crm/api/pick_list_values/response_handler.rb +12 -0
  782. data/src/com/zoho/crm/api/pick_list_values/response_wrapper.rb +65 -0
  783. data/src/com/zoho/crm/api/pipeline/action_handler.rb +12 -0
  784. data/src/com/zoho/crm/api/pipeline/action_response.rb +12 -0
  785. data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +65 -0
  786. data/src/com/zoho/crm/api/pipeline/api_exception.rb +131 -0
  787. data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +63 -0
  788. data/src/com/zoho/crm/api/pipeline/d_pipeline.rb +63 -0
  789. data/src/com/zoho/crm/api/pipeline/d_pipeline_wrapper.rb +63 -0
  790. data/src/com/zoho/crm/api/pipeline/delete.rb +63 -0
  791. data/src/com/zoho/crm/api/pipeline/forecast_category.rb +82 -0
  792. data/src/com/zoho/crm/api/pipeline/json_details.rb +101 -0
  793. data/src/com/zoho/crm/api/pipeline/maps.rb +196 -0
  794. data/src/com/zoho/crm/api/pipeline/pipeline.rb +177 -0
  795. data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +195 -0
  796. data/src/com/zoho/crm/api/pipeline/response_handler.rb +12 -0
  797. data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +65 -0
  798. data/src/com/zoho/crm/api/pipeline/stages.rb +82 -0
  799. data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
  800. data/src/com/zoho/crm/api/pipeline/t_pipeline.rb +82 -0
  801. data/src/com/zoho/crm/api/pipeline/transfer_pipeline.rb +82 -0
  802. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_handler.rb +12 -0
  803. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_response.rb +12 -0
  804. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_wrapper.rb +65 -0
  805. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_success_response.rb +123 -0
  806. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_wrapper.rb +63 -0
  807. data/src/com/zoho/crm/api/portal_invite/action_handler.rb +12 -0
  808. data/src/com/zoho/crm/api/portal_invite/action_response.rb +12 -0
  809. data/src/com/zoho/crm/api/portal_invite/action_wrapper.rb +65 -0
  810. data/src/com/zoho/crm/api/portal_invite/api_exception.rb +127 -0
  811. data/src/com/zoho/crm/api/portal_invite/body_wrapper.rb +63 -0
  812. data/src/com/zoho/crm/api/portal_invite/data.rb +12 -0
  813. data/src/com/zoho/crm/api/portal_invite/job_response.rb +101 -0
  814. data/src/com/zoho/crm/api/portal_invite/portal.rb +121 -0
  815. data/src/com/zoho/crm/api/portal_invite/portal_invite.rb +63 -0
  816. data/src/com/zoho/crm/api/portal_invite/portal_invite_operations.rb +66 -0
  817. data/src/com/zoho/crm/api/portal_invite/response_wrapper.rb +63 -0
  818. data/src/com/zoho/crm/api/portal_invite/success_response.rb +125 -0
  819. data/src/com/zoho/crm/api/portal_user_type/action_handler.rb +12 -0
  820. data/src/com/zoho/crm/api/portal_user_type/action_response.rb +12 -0
  821. data/src/com/zoho/crm/api/portal_user_type/action_wrapper.rb +65 -0
  822. data/src/com/zoho/crm/api/portal_user_type/api_exception.rb +127 -0
  823. data/src/com/zoho/crm/api/portal_user_type/body_wrapper.rb +63 -0
  824. data/src/com/zoho/crm/api/portal_user_type/fields.rb +101 -0
  825. data/src/com/zoho/crm/api/portal_user_type/filters.rb +101 -0
  826. data/src/com/zoho/crm/api/portal_user_type/layouts.rb +120 -0
  827. data/src/com/zoho/crm/api/portal_user_type/modules.rb +215 -0
  828. data/src/com/zoho/crm/api/portal_user_type/owner.rb +82 -0
  829. data/src/com/zoho/crm/api/portal_user_type/permissions.rb +177 -0
  830. data/src/com/zoho/crm/api/portal_user_type/personality_module.rb +101 -0
  831. data/src/com/zoho/crm/api/portal_user_type/portal_user_type_operations.rb +144 -0
  832. data/src/com/zoho/crm/api/portal_user_type/response_handler.rb +12 -0
  833. data/src/com/zoho/crm/api/portal_user_type/response_wrapper.rb +65 -0
  834. data/src/com/zoho/crm/api/portal_user_type/success_response.rb +123 -0
  835. data/src/com/zoho/crm/api/portal_user_type/user_type.rb +253 -0
  836. data/src/com/zoho/crm/api/portal_user_type/views.rb +120 -0
  837. data/src/com/zoho/crm/api/portals/action_handler.rb +12 -0
  838. data/src/com/zoho/crm/api/portals/action_response.rb +12 -0
  839. data/src/com/zoho/crm/api/portals/action_wrapper.rb +65 -0
  840. data/src/com/zoho/crm/api/portals/api_exception.rb +127 -0
  841. data/src/com/zoho/crm/api/portals/body_wrapper.rb +63 -0
  842. data/src/com/zoho/crm/api/portals/owner.rb +82 -0
  843. data/src/com/zoho/crm/api/portals/portals.rb +177 -0
  844. data/src/com/zoho/crm/api/portals/portals_operations.rb +96 -0
  845. data/src/com/zoho/crm/api/portals/response_handler.rb +12 -0
  846. data/src/com/zoho/crm/api/portals/response_wrapper.rb +65 -0
  847. data/src/com/zoho/crm/api/portals/success_response.rb +123 -0
  848. data/src/com/zoho/crm/api/portals_meta/filters.rb +101 -0
  849. data/src/com/zoho/crm/api/portals_meta/layouts.rb +101 -0
  850. data/src/com/zoho/crm/api/portals_meta/modules.rb +177 -0
  851. data/src/com/zoho/crm/api/portals_meta/related_lists.rb +63 -0
  852. data/src/com/zoho/crm/api/portals_meta/views.rb +120 -0
  853. data/src/com/zoho/crm/api/portals_meta/wrapper.rb +63 -0
  854. data/src/com/zoho/crm/api/privacy_configurable_apps/apps.rb +63 -0
  855. data/src/com/zoho/crm/api/privacy_configurable_apps/wrapper.rb +63 -0
  856. data/src/com/zoho/crm/api/privacy_preference/config.rb +101 -0
  857. data/src/com/zoho/crm/api/privacy_preference/option.rb +120 -0
  858. data/src/com/zoho/crm/api/privacy_preference/preference.rb +462 -0
  859. data/src/com/zoho/crm/api/privacy_preference/privacy_preference.rb +82 -0
  860. data/src/com/zoho/crm/api/privacy_preference/section.rb +139 -0
  861. data/src/com/zoho/crm/api/privacy_preference/tpt.rb +101 -0
  862. data/src/com/zoho/crm/api/privacy_preference/wrapper.rb +63 -0
  863. data/src/com/zoho/crm/api/profiles/action_handler.rb +12 -0
  864. data/src/com/zoho/crm/api/profiles/action_response.rb +12 -0
  865. data/src/com/zoho/crm/api/profiles/action_wrapper.rb +65 -0
  866. data/src/com/zoho/crm/api/profiles/api_exception.rb +127 -0
  867. data/src/com/zoho/crm/api/profiles/body_wrapper.rb +63 -0
  868. data/src/com/zoho/crm/api/profiles/category.rb +12 -0
  869. data/src/com/zoho/crm/api/profiles/category_module.rb +122 -0
  870. data/src/com/zoho/crm/api/profiles/category_others.rb +103 -0
  871. data/src/com/zoho/crm/api/profiles/default_view.rb +101 -0
  872. data/src/com/zoho/crm/api/profiles/info.rb +63 -0
  873. data/src/com/zoho/crm/api/profiles/minified_profile.rb +101 -0
  874. data/src/com/zoho/crm/api/profiles/permission_detail.rb +177 -0
  875. data/src/com/zoho/crm/api/profiles/profile.rb +369 -0
  876. data/src/com/zoho/crm/api/profiles/profiles_operations.rb +152 -0
  877. data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
  878. data/src/com/zoho/crm/api/profiles/response_wrapper.rb +84 -0
  879. data/src/com/zoho/crm/api/profiles/section.rb +82 -0
  880. data/src/com/zoho/crm/api/profiles/success_response.rb +125 -0
  881. data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
  882. data/src/com/zoho/crm/api/record/action_response.rb +12 -0
  883. data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
  884. data/src/com/zoho/crm/api/record/api_exception.rb +143 -0
  885. data/src/com/zoho/crm/api/record/body_wrapper.rb +158 -0
  886. data/src/com/zoho/crm/api/record/comment.rb +120 -0
  887. data/src/com/zoho/crm/api/record/consent.rb +307 -0
  888. data/src/com/zoho/crm/api/record/count_handler.rb +12 -0
  889. data/src/com/zoho/crm/api/record/count_wrapper.rb +65 -0
  890. data/src/com/zoho/crm/api/record/criteria.rb +137 -0
  891. data/src/com/zoho/crm/api/record/deleted_record.rb +159 -0
  892. data/src/com/zoho/crm/api/record/deleted_records_handler.rb +12 -0
  893. data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +84 -0
  894. data/src/com/zoho/crm/api/record/download_handler.rb +12 -0
  895. data/src/com/zoho/crm/api/record/duplicate_record.rb +103 -0
  896. data/src/com/zoho/crm/api/record/field.rb +2899 -0
  897. data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
  898. data/src/com/zoho/crm/api/record/file_details.rb +235 -0
  899. data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
  900. data/src/com/zoho/crm/api/record/image_upload.rb +311 -0
  901. data/src/com/zoho/crm/api/record/info.rb +253 -0
  902. data/src/com/zoho/crm/api/record/line_item_product.rb +171 -0
  903. data/src/com/zoho/crm/api/record/line_tax.rb +139 -0
  904. data/src/com/zoho/crm/api/record/mass_update.rb +142 -0
  905. data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +12 -0
  906. data/src/com/zoho/crm/api/record/mass_update_action_response.rb +12 -0
  907. data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +65 -0
  908. data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +158 -0
  909. data/src/com/zoho/crm/api/record/mass_update_response.rb +12 -0
  910. data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +12 -0
  911. data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +65 -0
  912. data/src/com/zoho/crm/api/record/mass_update_success_response.rb +123 -0
  913. data/src/com/zoho/crm/api/record/mass_update_territory.rb +82 -0
  914. data/src/com/zoho/crm/api/record/multi_select_lookup.rb +101 -0
  915. data/src/com/zoho/crm/api/record/multi_select_picklist.rb +82 -0
  916. data/src/com/zoho/crm/api/record/options.rb +32 -0
  917. data/src/com/zoho/crm/api/record/participants.rb +222 -0
  918. data/src/com/zoho/crm/api/record/price_book.rb +137 -0
  919. data/src/com/zoho/crm/api/record/pricing_details.rb +188 -0
  920. data/src/com/zoho/crm/api/record/record.rb +211 -0
  921. data/src/com/zoho/crm/api/record/record_operations.rb +1070 -0
  922. data/src/com/zoho/crm/api/record/recurring_activity.rb +82 -0
  923. data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
  924. data/src/com/zoho/crm/api/record/reminder.rb +101 -0
  925. data/src/com/zoho/crm/api/record/response_handler.rb +12 -0
  926. data/src/com/zoho/crm/api/record/response_wrapper.rb +84 -0
  927. data/src/com/zoho/crm/api/record/success_response.rb +163 -0
  928. data/src/com/zoho/crm/api/record/tax.rb +82 -0
  929. data/src/com/zoho/crm/api/record/territory.rb +140 -0
  930. data/src/com/zoho/crm/api/record/time_range.rb +82 -0
  931. data/src/com/zoho/crm/api/record/widget.rb +82 -0
  932. data/src/com/zoho/crm/api/record/wizard.rb +82 -0
  933. data/src/com/zoho/crm/api/record_locking/action_handler.rb +12 -0
  934. data/src/com/zoho/crm/api/record_locking/action_response.rb +12 -0
  935. data/src/com/zoho/crm/api/record_locking/action_wrapper.rb +65 -0
  936. data/src/com/zoho/crm/api/record_locking/api_exception.rb +127 -0
  937. data/src/com/zoho/crm/api/record_locking/body_wrapper.rb +63 -0
  938. data/src/com/zoho/crm/api/record_locking/info.rb +253 -0
  939. data/src/com/zoho/crm/api/record_locking/lock_record.rb +63 -0
  940. data/src/com/zoho/crm/api/record_locking/locked_for_s.rb +101 -0
  941. data/src/com/zoho/crm/api/record_locking/record_lock.rb +257 -0
  942. data/src/com/zoho/crm/api/record_locking/record_locking_operations.rb +186 -0
  943. data/src/com/zoho/crm/api/record_locking/response_handler.rb +12 -0
  944. data/src/com/zoho/crm/api/record_locking/response_wrapper.rb +84 -0
  945. data/src/com/zoho/crm/api/record_locking/success_response.rb +161 -0
  946. data/src/com/zoho/crm/api/record_locking_configuration/action_response.rb +12 -0
  947. data/src/com/zoho/crm/api/record_locking_configuration/action_wrapper.rb +63 -0
  948. data/src/com/zoho/crm/api/record_locking_configuration/api_exception.rb +123 -0
  949. data/src/com/zoho/crm/api/record_locking_configuration/body_wrapper.rb +63 -0
  950. data/src/com/zoho/crm/api/record_locking_configuration/criteria.rb +136 -0
  951. data/src/com/zoho/crm/api/record_locking_configuration/dependee.rb +82 -0
  952. data/src/com/zoho/crm/api/record_locking_configuration/field.rb +82 -0
  953. data/src/com/zoho/crm/api/record_locking_configuration/lock_excluded_profile.rb +82 -0
  954. data/src/com/zoho/crm/api/record_locking_configuration/locking_rules.rb +120 -0
  955. data/src/com/zoho/crm/api/record_locking_configuration/record_lock.rb +351 -0
  956. data/src/com/zoho/crm/api/record_locking_configuration/response_wrapper.rb +63 -0
  957. data/src/com/zoho/crm/api/record_locking_configuration/restricted_custom_button.rb +82 -0
  958. data/src/com/zoho/crm/api/record_locking_configuration/success_response.rb +123 -0
  959. data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
  960. data/src/com/zoho/crm/api/related_lists/field.rb +82 -0
  961. data/src/com/zoho/crm/api/related_lists/module_map.rb +82 -0
  962. data/src/com/zoho/crm/api/related_lists/related_list.rb +406 -0
  963. data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +82 -0
  964. data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
  965. data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
  966. data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
  967. data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
  968. data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
  969. data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
  970. data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
  971. data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
  972. data/src/com/zoho/crm/api/related_records/related_records_operations.rb +677 -0
  973. data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
  974. data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
  975. data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
  976. data/src/com/zoho/crm/api/request_proxy.rb +17 -0
  977. data/src/com/zoho/crm/api/reschedule_history/action_handler.rb +12 -0
  978. data/src/com/zoho/crm/api/reschedule_history/action_response.rb +12 -0
  979. data/src/com/zoho/crm/api/reschedule_history/action_wrapper.rb +65 -0
  980. data/src/com/zoho/crm/api/reschedule_history/api_exception.rb +127 -0
  981. data/src/com/zoho/crm/api/reschedule_history/appointment_name.rb +82 -0
  982. data/src/com/zoho/crm/api/reschedule_history/approval.rb +120 -0
  983. data/src/com/zoho/crm/api/reschedule_history/body_wrapper.rb +63 -0
  984. data/src/com/zoho/crm/api/reschedule_history/info.rb +177 -0
  985. data/src/com/zoho/crm/api/reschedule_history/reschedule_history.rb +557 -0
  986. data/src/com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb +181 -0
  987. data/src/com/zoho/crm/api/reschedule_history/response_handler.rb +12 -0
  988. data/src/com/zoho/crm/api/reschedule_history/response_wrapper.rb +84 -0
  989. data/src/com/zoho/crm/api/reschedule_history/success_response.rb +123 -0
  990. data/src/com/zoho/crm/api/reschedule_history/user.rb +101 -0
  991. data/src/com/zoho/crm/api/roles/action_handler.rb +12 -0
  992. data/src/com/zoho/crm/api/roles/action_response.rb +12 -0
  993. data/src/com/zoho/crm/api/roles/action_wrapper.rb +65 -0
  994. data/src/com/zoho/crm/api/roles/api_exception.rb +127 -0
  995. data/src/com/zoho/crm/api/roles/body_wrapper.rb +63 -0
  996. data/src/com/zoho/crm/api/roles/reporting_to.rb +82 -0
  997. data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
  998. data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
  999. data/src/com/zoho/crm/api/roles/role.rb +273 -0
  1000. data/src/com/zoho/crm/api/roles/roles_operations.rb +150 -0
  1001. data/src/com/zoho/crm/api/roles/success_response.rb +123 -0
  1002. data/src/com/zoho/crm/api/scoring_rules/action_handler.rb +12 -0
  1003. data/src/com/zoho/crm/api/scoring_rules/action_response.rb +12 -0
  1004. data/src/com/zoho/crm/api/scoring_rules/action_wrapper.rb +65 -0
  1005. data/src/com/zoho/crm/api/scoring_rules/api_exception.rb +127 -0
  1006. data/src/com/zoho/crm/api/scoring_rules/body_wrapper.rb +63 -0
  1007. data/src/com/zoho/crm/api/scoring_rules/criteria.rb +136 -0
  1008. data/src/com/zoho/crm/api/scoring_rules/expected_field.rb +82 -0
  1009. data/src/com/zoho/crm/api/scoring_rules/field.rb +82 -0
  1010. data/src/com/zoho/crm/api/scoring_rules/field_rule.rb +101 -0
  1011. data/src/com/zoho/crm/api/scoring_rules/info.rb +215 -0
  1012. data/src/com/zoho/crm/api/scoring_rules/layout.rb +82 -0
  1013. data/src/com/zoho/crm/api/scoring_rules/layout_request_wrapper.rb +63 -0
  1014. data/src/com/zoho/crm/api/scoring_rules/response_handler.rb +12 -0
  1015. data/src/com/zoho/crm/api/scoring_rules/response_wrapper.rb +84 -0
  1016. data/src/com/zoho/crm/api/scoring_rules/role_request_wrapper.rb +63 -0
  1017. data/src/com/zoho/crm/api/scoring_rules/scoring_rule.rb +274 -0
  1018. data/src/com/zoho/crm/api/scoring_rules/scoring_rules_operations.rb +332 -0
  1019. data/src/com/zoho/crm/api/scoring_rules/signal.rb +82 -0
  1020. data/src/com/zoho/crm/api/scoring_rules/signal_rule.rb +101 -0
  1021. data/src/com/zoho/crm/api/scoring_rules/success_response.rb +125 -0
  1022. data/src/com/zoho/crm/api/sdk_config.rb +15 -0
  1023. data/src/com/zoho/crm/api/send_mail/action_handler.rb +12 -0
  1024. data/src/com/zoho/crm/api/send_mail/action_response.rb +12 -0
  1025. data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +65 -0
  1026. data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
  1027. data/src/com/zoho/crm/api/send_mail/attachment.rb +63 -0
  1028. data/src/com/zoho/crm/api/send_mail/blocked_email_address.rb +82 -0
  1029. data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +63 -0
  1030. data/src/com/zoho/crm/api/send_mail/cc.rb +82 -0
  1031. data/src/com/zoho/crm/api/send_mail/data.rb +368 -0
  1032. data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +82 -0
  1033. data/src/com/zoho/crm/api/send_mail/from.rb +82 -0
  1034. data/src/com/zoho/crm/api/send_mail/in_reply_to.rb +82 -0
  1035. data/src/com/zoho/crm/api/send_mail/inventory_details.rb +63 -0
  1036. data/src/com/zoho/crm/api/send_mail/inventory_template.rb +82 -0
  1037. data/src/com/zoho/crm/api/send_mail/linked_module.rb +82 -0
  1038. data/src/com/zoho/crm/api/send_mail/linked_record.rb +101 -0
  1039. data/src/com/zoho/crm/api/send_mail/owner.rb +82 -0
  1040. data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +51 -0
  1041. data/src/com/zoho/crm/api/send_mail/success_response.rb +123 -0
  1042. data/src/com/zoho/crm/api/send_mail/template.rb +12 -0
  1043. data/src/com/zoho/crm/api/send_mail/to.rb +82 -0
  1044. data/src/com/zoho/crm/api/service_preference/action_handler.rb +12 -0
  1045. data/src/com/zoho/crm/api/service_preference/action_response.rb +12 -0
  1046. data/src/com/zoho/crm/api/service_preference/action_wrapper.rb +65 -0
  1047. data/src/com/zoho/crm/api/service_preference/api_exception.rb +125 -0
  1048. data/src/com/zoho/crm/api/service_preference/body_wrapper.rb +63 -0
  1049. data/src/com/zoho/crm/api/service_preference/response_handler.rb +12 -0
  1050. data/src/com/zoho/crm/api/service_preference/response_wrapper.rb +65 -0
  1051. data/src/com/zoho/crm/api/service_preference/service_preference.rb +63 -0
  1052. data/src/com/zoho/crm/api/service_preference/service_preference_operations.rb +51 -0
  1053. data/src/com/zoho/crm/api/service_preference/success_response.rb +123 -0
  1054. data/src/com/zoho/crm/api/share_records/action_handler.rb +12 -0
  1055. data/src/com/zoho/crm/api/share_records/action_response.rb +12 -0
  1056. data/src/com/zoho/crm/api/share_records/action_wrapper.rb +84 -0
  1057. data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
  1058. data/src/com/zoho/crm/api/share_records/body_wrapper.rb +101 -0
  1059. data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +12 -0
  1060. data/src/com/zoho/crm/api/share_records/delete_action_response.rb +12 -0
  1061. data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +65 -0
  1062. data/src/com/zoho/crm/api/share_records/dependee.rb +82 -0
  1063. data/src/com/zoho/crm/api/share_records/module.rb +101 -0
  1064. data/src/com/zoho/crm/api/share_records/response_handler.rb +12 -0
  1065. data/src/com/zoho/crm/api/share_records/response_wrapper.rb +85 -0
  1066. data/src/com/zoho/crm/api/share_records/share_record.rb +198 -0
  1067. data/src/com/zoho/crm/api/share_records/share_records_operations.rb +130 -0
  1068. data/src/com/zoho/crm/api/share_records/shared_through.rb +120 -0
  1069. data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
  1070. data/src/com/zoho/crm/api/shift_hours/action_handler.rb +12 -0
  1071. data/src/com/zoho/crm/api/shift_hours/action_response.rb +12 -0
  1072. data/src/com/zoho/crm/api/shift_hours/action_wrapper.rb +65 -0
  1073. data/src/com/zoho/crm/api/shift_hours/api_exception.rb +127 -0
  1074. data/src/com/zoho/crm/api/shift_hours/body_wrapper.rb +63 -0
  1075. data/src/com/zoho/crm/api/shift_hours/break_custom_timing.rb +82 -0
  1076. data/src/com/zoho/crm/api/shift_hours/break_hours.rb +139 -0
  1077. data/src/com/zoho/crm/api/shift_hours/holidays.rb +120 -0
  1078. data/src/com/zoho/crm/api/shift_hours/mandatory_details.rb +82 -0
  1079. data/src/com/zoho/crm/api/shift_hours/response_handler.rb +12 -0
  1080. data/src/com/zoho/crm/api/shift_hours/response_wrapper.rb +84 -0
  1081. data/src/com/zoho/crm/api/shift_hours/role.rb +82 -0
  1082. data/src/com/zoho/crm/api/shift_hours/shift_count.rb +82 -0
  1083. data/src/com/zoho/crm/api/shift_hours/shift_custom_timing.rb +82 -0
  1084. data/src/com/zoho/crm/api/shift_hours/shift_hours.rb +253 -0
  1085. data/src/com/zoho/crm/api/shift_hours/shift_hours_operations.rb +166 -0
  1086. data/src/com/zoho/crm/api/shift_hours/success_response.rb +123 -0
  1087. data/src/com/zoho/crm/api/shift_hours/users.rb +158 -0
  1088. data/src/com/zoho/crm/api/tags/action_handler.rb +12 -0
  1089. data/src/com/zoho/crm/api/tags/action_response.rb +12 -0
  1090. data/src/com/zoho/crm/api/tags/action_wrapper.rb +65 -0
  1091. data/src/com/zoho/crm/api/tags/api_exception.rb +131 -0
  1092. data/src/com/zoho/crm/api/tags/associated_places.rb +82 -0
  1093. data/src/com/zoho/crm/api/tags/body_wrapper.rb +63 -0
  1094. data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +63 -0
  1095. data/src/com/zoho/crm/api/tags/count_response_wrapper.rb +65 -0
  1096. data/src/com/zoho/crm/api/tags/error_details.rb +82 -0
  1097. data/src/com/zoho/crm/api/tags/existing_tag.rb +82 -0
  1098. data/src/com/zoho/crm/api/tags/existing_tag_request_wrapper.rb +82 -0
  1099. data/src/com/zoho/crm/api/tags/info.rb +82 -0
  1100. data/src/com/zoho/crm/api/tags/merge_wrapper.rb +63 -0
  1101. data/src/com/zoho/crm/api/tags/new_tag_request_wrapper.rb +101 -0
  1102. data/src/com/zoho/crm/api/tags/record_action_handler.rb +12 -0
  1103. data/src/com/zoho/crm/api/tags/record_action_response.rb +12 -0
  1104. data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +122 -0
  1105. data/src/com/zoho/crm/api/tags/record_detail_tag.rb +101 -0
  1106. data/src/com/zoho/crm/api/tags/record_success_response.rb +123 -0
  1107. data/src/com/zoho/crm/api/tags/resources.rb +101 -0
  1108. data/src/com/zoho/crm/api/tags/response_handler.rb +12 -0
  1109. data/src/com/zoho/crm/api/tags/response_wrapper.rb +84 -0
  1110. data/src/com/zoho/crm/api/tags/success_response.rb +123 -0
  1111. data/src/com/zoho/crm/api/tags/success_wrapper.rb +65 -0
  1112. data/src/com/zoho/crm/api/tags/tag.rb +179 -0
  1113. data/src/com/zoho/crm/api/tags/tags_operations.rb +389 -0
  1114. data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
  1115. data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
  1116. data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
  1117. data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
  1118. data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
  1119. data/src/com/zoho/crm/api/taxes/expected_field.rb +82 -0
  1120. data/src/com/zoho/crm/api/taxes/org_tax.rb +82 -0
  1121. data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
  1122. data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
  1123. data/src/com/zoho/crm/api/taxes/response_wrapper.rb +65 -0
  1124. data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
  1125. data/src/com/zoho/crm/api/taxes/tax.rb +158 -0
  1126. data/src/com/zoho/crm/api/taxes/taxes_operations.rb +70 -0
  1127. data/src/com/zoho/crm/api/templates/api_exception.rb +121 -0
  1128. data/src/com/zoho/crm/api/templates/folder.rb +82 -0
  1129. data/src/com/zoho/crm/api/templates/templates.rb +234 -0
  1130. data/src/com/zoho/crm/api/templates/wrapper.rb +63 -0
  1131. data/src/com/zoho/crm/api/territories/action_handler.rb +12 -0
  1132. data/src/com/zoho/crm/api/territories/action_response.rb +12 -0
  1133. data/src/com/zoho/crm/api/territories/action_wrapper.rb +65 -0
  1134. data/src/com/zoho/crm/api/territories/api_exception.rb +127 -0
  1135. data/src/com/zoho/crm/api/territories/associated_users_count.rb +82 -0
  1136. data/src/com/zoho/crm/api/territories/associated_users_count_wrapper.rb +84 -0
  1137. data/src/com/zoho/crm/api/territories/body_wrapper.rb +63 -0
  1138. data/src/com/zoho/crm/api/territories/criteria.rb +136 -0
  1139. data/src/com/zoho/crm/api/territories/deleted_associated_territories.rb +121 -0
  1140. data/src/com/zoho/crm/api/territories/deleted_associated_wrapper.rb +82 -0
  1141. data/src/com/zoho/crm/api/territories/field.rb +82 -0
  1142. data/src/com/zoho/crm/api/territories/info.rb +120 -0
  1143. data/src/com/zoho/crm/api/territories/manager.rb +82 -0
  1144. data/src/com/zoho/crm/api/territories/minified_territory.rb +101 -0
  1145. data/src/com/zoho/crm/api/territories/reporting_to.rb +82 -0
  1146. data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
  1147. data/src/com/zoho/crm/api/territories/response_wrapper.rb +84 -0
  1148. data/src/com/zoho/crm/api/territories/success_response.rb +123 -0
  1149. data/src/com/zoho/crm/api/territories/territories.rb +312 -0
  1150. data/src/com/zoho/crm/api/territories/territories_operations.rb +295 -0
  1151. data/src/com/zoho/crm/api/territories/transfer_body_wrapper.rb +63 -0
  1152. data/src/com/zoho/crm/api/territories/transfer_territory.rb +101 -0
  1153. data/src/com/zoho/crm/api/territory_users/action_handler.rb +12 -0
  1154. data/src/com/zoho/crm/api/territory_users/action_response.rb +12 -0
  1155. data/src/com/zoho/crm/api/territory_users/action_wrapper.rb +65 -0
  1156. data/src/com/zoho/crm/api/territory_users/api_exception.rb +127 -0
  1157. data/src/com/zoho/crm/api/territory_users/body_wrapper.rb +64 -0
  1158. data/src/com/zoho/crm/api/territory_users/info.rb +120 -0
  1159. data/src/com/zoho/crm/api/territory_users/response_handler.rb +12 -0
  1160. data/src/com/zoho/crm/api/territory_users/response_wrapper.rb +85 -0
  1161. data/src/com/zoho/crm/api/territory_users/success_response.rb +123 -0
  1162. data/src/com/zoho/crm/api/territory_users/territory_users_operations.rb +172 -0
  1163. data/src/com/zoho/crm/api/timelines/api_exception.rb +123 -0
  1164. data/src/com/zoho/crm/api/timelines/automation_detail.rb +101 -0
  1165. data/src/com/zoho/crm/api/timelines/field_history.rb +177 -0
  1166. data/src/com/zoho/crm/api/timelines/field_history_value.rb +82 -0
  1167. data/src/com/zoho/crm/api/timelines/info.rb +158 -0
  1168. data/src/com/zoho/crm/api/timelines/module.rb +82 -0
  1169. data/src/com/zoho/crm/api/timelines/name_id_structure.rb +82 -0
  1170. data/src/com/zoho/crm/api/timelines/path_finder.rb +101 -0
  1171. data/src/com/zoho/crm/api/timelines/picklist_detail.rb +158 -0
  1172. data/src/com/zoho/crm/api/timelines/record.rb +101 -0
  1173. data/src/com/zoho/crm/api/timelines/related_record.rb +101 -0
  1174. data/src/com/zoho/crm/api/timelines/response_handler.rb +12 -0
  1175. data/src/com/zoho/crm/api/timelines/response_wrapper.rb +84 -0
  1176. data/src/com/zoho/crm/api/timelines/state.rb +120 -0
  1177. data/src/com/zoho/crm/api/timelines/timeline.rb +253 -0
  1178. data/src/com/zoho/crm/api/timelines/timelines_operations.rb +89 -0
  1179. data/src/com/zoho/crm/api/unblock_email/action_handler.rb +12 -0
  1180. data/src/com/zoho/crm/api/unblock_email/action_response.rb +12 -0
  1181. data/src/com/zoho/crm/api/unblock_email/action_wrapper.rb +65 -0
  1182. data/src/com/zoho/crm/api/unblock_email/api_exception.rb +123 -0
  1183. data/src/com/zoho/crm/api/unblock_email/body_wrapper.rb +82 -0
  1184. data/src/com/zoho/crm/api/unblock_email/success_response.rb +122 -0
  1185. data/src/com/zoho/crm/api/unblock_email/unblock_email_operations.rb +71 -0
  1186. data/src/com/zoho/crm/api/unsubscribe_links/action_handler.rb +12 -0
  1187. data/src/com/zoho/crm/api/unsubscribe_links/action_response.rb +12 -0
  1188. data/src/com/zoho/crm/api/unsubscribe_links/action_wrapper.rb +65 -0
  1189. data/src/com/zoho/crm/api/unsubscribe_links/api_exception.rb +129 -0
  1190. data/src/com/zoho/crm/api/unsubscribe_links/associated_places.rb +101 -0
  1191. data/src/com/zoho/crm/api/unsubscribe_links/association_details.rb +82 -0
  1192. data/src/com/zoho/crm/api/unsubscribe_links/associations_response_handler.rb +12 -0
  1193. data/src/com/zoho/crm/api/unsubscribe_links/associations_response_wrapper.rb +65 -0
  1194. data/src/com/zoho/crm/api/unsubscribe_links/body_wrapper.rb +63 -0
  1195. data/src/com/zoho/crm/api/unsubscribe_links/detail.rb +63 -0
  1196. data/src/com/zoho/crm/api/unsubscribe_links/module.rb +82 -0
  1197. data/src/com/zoho/crm/api/unsubscribe_links/resource.rb +82 -0
  1198. data/src/com/zoho/crm/api/unsubscribe_links/response_handler.rb +12 -0
  1199. data/src/com/zoho/crm/api/unsubscribe_links/response_wrapper.rb +65 -0
  1200. data/src/com/zoho/crm/api/unsubscribe_links/success_response.rb +123 -0
  1201. data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links.rb +330 -0
  1202. data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links_operations.rb +149 -0
  1203. data/src/com/zoho/crm/api/unsubscribe_links/user.rb +82 -0
  1204. data/src/com/zoho/crm/api/user_groups/action_handler.rb +12 -0
  1205. data/src/com/zoho/crm/api/user_groups/action_response.rb +12 -0
  1206. data/src/com/zoho/crm/api/user_groups/action_wrapper.rb +65 -0
  1207. data/src/com/zoho/crm/api/user_groups/api_exception.rb +131 -0
  1208. data/src/com/zoho/crm/api/user_groups/assign.rb +159 -0
  1209. data/src/com/zoho/crm/api/user_groups/assigned_action_response.rb +12 -0
  1210. data/src/com/zoho/crm/api/user_groups/assigned_action_wrapper.rb +63 -0
  1211. data/src/com/zoho/crm/api/user_groups/associated_user.rb +82 -0
  1212. data/src/com/zoho/crm/api/user_groups/associated_user_count.rb +84 -0
  1213. data/src/com/zoho/crm/api/user_groups/association_module.rb +64 -0
  1214. data/src/com/zoho/crm/api/user_groups/association_response.rb +101 -0
  1215. data/src/com/zoho/crm/api/user_groups/association_wrapper.rb +65 -0
  1216. data/src/com/zoho/crm/api/user_groups/body_wrapper.rb +63 -0
  1217. data/src/com/zoho/crm/api/user_groups/criteria.rb +137 -0
  1218. data/src/com/zoho/crm/api/user_groups/field.rb +82 -0
  1219. data/src/com/zoho/crm/api/user_groups/get_assign_body_wrapper.rb +63 -0
  1220. data/src/com/zoho/crm/api/user_groups/get_unassign_body_wrapper.rb +63 -0
  1221. data/src/com/zoho/crm/api/user_groups/grouped_count.rb +83 -0
  1222. data/src/com/zoho/crm/api/user_groups/grouped_count_wrapper.rb +84 -0
  1223. data/src/com/zoho/crm/api/user_groups/groups.rb +215 -0
  1224. data/src/com/zoho/crm/api/user_groups/info.rb +120 -0
  1225. data/src/com/zoho/crm/api/user_groups/jobs.rb +63 -0
  1226. data/src/com/zoho/crm/api/user_groups/jobs_wrapper.rb +63 -0
  1227. data/src/com/zoho/crm/api/user_groups/owner.rb +82 -0
  1228. data/src/com/zoho/crm/api/user_groups/resource.rb +82 -0
  1229. data/src/com/zoho/crm/api/user_groups/response_handler.rb +12 -0
  1230. data/src/com/zoho/crm/api/user_groups/response_wrapper.rb +84 -0
  1231. data/src/com/zoho/crm/api/user_groups/source.rb +82 -0
  1232. data/src/com/zoho/crm/api/user_groups/sources.rb +121 -0
  1233. data/src/com/zoho/crm/api/user_groups/sources_count.rb +120 -0
  1234. data/src/com/zoho/crm/api/user_groups/sources_count_wrapper.rb +65 -0
  1235. data/src/com/zoho/crm/api/user_groups/sources_wrapper.rb +84 -0
  1236. data/src/com/zoho/crm/api/user_groups/success_response.rb +123 -0
  1237. data/src/com/zoho/crm/api/user_groups/un_assigned_action_response.rb +12 -0
  1238. data/src/com/zoho/crm/api/user_groups/un_assigned_action_wrapper.rb +63 -0
  1239. data/src/com/zoho/crm/api/user_groups/user_group.rb +82 -0
  1240. data/src/com/zoho/crm/api/user_groups/user_groups_operations.rb +296 -0
  1241. data/src/com/zoho/crm/api/user_groups/users.rb +101 -0
  1242. data/src/com/zoho/crm/api/user_signature.rb +15 -0
  1243. data/src/com/zoho/crm/api/user_type_users/action_handler.rb +12 -0
  1244. data/src/com/zoho/crm/api/user_type_users/action_response.rb +12 -0
  1245. data/src/com/zoho/crm/api/user_type_users/action_wrapper.rb +65 -0
  1246. data/src/com/zoho/crm/api/user_type_users/api_exception.rb +131 -0
  1247. data/src/com/zoho/crm/api/user_type_users/body_wrapper.rb +63 -0
  1248. data/src/com/zoho/crm/api/user_type_users/info.rb +139 -0
  1249. data/src/com/zoho/crm/api/user_type_users/response_handler.rb +12 -0
  1250. data/src/com/zoho/crm/api/user_type_users/response_wrapper.rb +84 -0
  1251. data/src/com/zoho/crm/api/user_type_users/status_action_handler.rb +12 -0
  1252. data/src/com/zoho/crm/api/user_type_users/status_action_response.rb +12 -0
  1253. data/src/com/zoho/crm/api/user_type_users/status_action_wrapper.rb +65 -0
  1254. data/src/com/zoho/crm/api/user_type_users/success_response.rb +125 -0
  1255. data/src/com/zoho/crm/api/user_type_users/user_type_users_operations.rb +164 -0
  1256. data/src/com/zoho/crm/api/user_type_users/users.rb +196 -0
  1257. data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
  1258. data/src/com/zoho/crm/api/users/action_response.rb +12 -0
  1259. data/src/com/zoho/crm/api/users/action_wrapper.rb +67 -0
  1260. data/src/com/zoho/crm/api/users/api_exception.rb +129 -0
  1261. data/src/com/zoho/crm/api/users/associated_group.rb +177 -0
  1262. data/src/com/zoho/crm/api/users/associated_groups_wrapper.rb +84 -0
  1263. data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
  1264. data/src/com/zoho/crm/api/users/count_handler.rb +12 -0
  1265. data/src/com/zoho/crm/api/users/count_wrapper.rb +65 -0
  1266. data/src/com/zoho/crm/api/users/customize_info.rb +146 -0
  1267. data/src/com/zoho/crm/api/users/info.rb +120 -0
  1268. data/src/com/zoho/crm/api/users/minified_user.rb +101 -0
  1269. data/src/com/zoho/crm/api/users/owner.rb +120 -0
  1270. data/src/com/zoho/crm/api/users/profile.rb +82 -0
  1271. data/src/com/zoho/crm/api/users/response_handler.rb +12 -0
  1272. data/src/com/zoho/crm/api/users/response_wrapper.rb +84 -0
  1273. data/src/com/zoho/crm/api/users/role.rb +82 -0
  1274. data/src/com/zoho/crm/api/users/shift.rb +82 -0
  1275. data/src/com/zoho/crm/api/users/success_response.rb +123 -0
  1276. data/src/com/zoho/crm/api/users/tab.rb +83 -0
  1277. data/src/com/zoho/crm/api/users/theme.rb +159 -0
  1278. data/src/com/zoho/crm/api/users/users.rb +1086 -0
  1279. data/src/com/zoho/crm/api/users/users_operations.rb +247 -0
  1280. data/src/com/zoho/crm/api/users_territories/action_handler.rb +12 -0
  1281. data/src/com/zoho/crm/api/users_territories/action_response.rb +12 -0
  1282. data/src/com/zoho/crm/api/users_territories/action_wrappe.rb +65 -0
  1283. data/src/com/zoho/crm/api/users_territories/action_wrapper.rb +84 -0
  1284. data/src/com/zoho/crm/api/users_territories/api_exception.rb +131 -0
  1285. data/src/com/zoho/crm/api/users_territories/body_wrapper.rb +63 -0
  1286. data/src/com/zoho/crm/api/users_territories/bulk_validation.rb +141 -0
  1287. data/src/com/zoho/crm/api/users_territories/info.rb +120 -0
  1288. data/src/com/zoho/crm/api/users_territories/manager.rb +82 -0
  1289. data/src/com/zoho/crm/api/users_territories/response_handler.rb +12 -0
  1290. data/src/com/zoho/crm/api/users_territories/response_wrapper.rb +84 -0
  1291. data/src/com/zoho/crm/api/users_territories/success_response.rb +125 -0
  1292. data/src/com/zoho/crm/api/users_territories/territory.rb +120 -0
  1293. data/src/com/zoho/crm/api/users_territories/transfer_action_handler.rb +12 -0
  1294. data/src/com/zoho/crm/api/users_territories/transfer_action_response.rb +12 -0
  1295. data/src/com/zoho/crm/api/users_territories/transfer_action_wrapper.rb +65 -0
  1296. data/src/com/zoho/crm/api/users_territories/transfer_and_delink.rb +82 -0
  1297. data/src/com/zoho/crm/api/users_territories/transfer_to_user.rb +63 -0
  1298. data/src/com/zoho/crm/api/users_territories/transfer_wrapper.rb +63 -0
  1299. data/src/com/zoho/crm/api/users_territories/users_territories_operations.rb +169 -0
  1300. data/src/com/zoho/crm/api/users_territories/validation.rb +103 -0
  1301. data/src/com/zoho/crm/api/users_territories/validation_group.rb +12 -0
  1302. data/src/com/zoho/crm/api/users_territories/validation_handler.rb +12 -0
  1303. data/src/com/zoho/crm/api/users_territories/validation_wrapper.rb +65 -0
  1304. data/src/com/zoho/crm/api/users_transfer_delete/action_handler.rb +12 -0
  1305. data/src/com/zoho/crm/api/users_transfer_delete/action_response.rb +12 -0
  1306. data/src/com/zoho/crm/api/users_transfer_delete/action_wrapper.rb +65 -0
  1307. data/src/com/zoho/crm/api/users_transfer_delete/api_exception.rb +127 -0
  1308. data/src/com/zoho/crm/api/users_transfer_delete/body_wrapper.rb +63 -0
  1309. data/src/com/zoho/crm/api/users_transfer_delete/move_subordinate.rb +63 -0
  1310. data/src/com/zoho/crm/api/users_transfer_delete/response_handler.rb +12 -0
  1311. data/src/com/zoho/crm/api/users_transfer_delete/response_wrapper.rb +65 -0
  1312. data/src/com/zoho/crm/api/users_transfer_delete/status.rb +63 -0
  1313. data/src/com/zoho/crm/api/users_transfer_delete/success_response.rb +123 -0
  1314. data/src/com/zoho/crm/api/users_transfer_delete/transfer.rb +120 -0
  1315. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete.rb +101 -0
  1316. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete_by_id.rb +82 -0
  1317. data/src/com/zoho/crm/api/users_transfer_delete/users_transfer_delete_operations.rb +92 -0
  1318. data/src/com/zoho/crm/api/users_unavailability/action_handler.rb +12 -0
  1319. data/src/com/zoho/crm/api/users_unavailability/action_response.rb +12 -0
  1320. data/src/com/zoho/crm/api/users_unavailability/action_wrapper.rb +65 -0
  1321. data/src/com/zoho/crm/api/users_unavailability/api_exception.rb +127 -0
  1322. data/src/com/zoho/crm/api/users_unavailability/body_wrapper.rb +63 -0
  1323. data/src/com/zoho/crm/api/users_unavailability/info.rb +120 -0
  1324. data/src/com/zoho/crm/api/users_unavailability/response_handler.rb +12 -0
  1325. data/src/com/zoho/crm/api/users_unavailability/response_wrapper.rb +84 -0
  1326. data/src/com/zoho/crm/api/users_unavailability/success_response.rb +123 -0
  1327. data/src/com/zoho/crm/api/users_unavailability/user.rb +101 -0
  1328. data/src/com/zoho/crm/api/users_unavailability/users_unavailability.rb +234 -0
  1329. data/src/com/zoho/crm/api/users_unavailability/users_unavailability_operations.rb +181 -0
  1330. data/src/com/zoho/crm/api/util/api_http_connector.rb +125 -0
  1331. data/src/com/zoho/crm/api/util/api_response.rb +18 -0
  1332. data/src/com/zoho/crm/api/util/choice.rb +11 -0
  1333. data/src/com/zoho/crm/api/util/common_api_handler.rb +240 -0
  1334. data/src/com/zoho/crm/api/util/constants.rb +757 -0
  1335. data/src/com/zoho/crm/api/util/converter.rb +297 -0
  1336. data/src/com/zoho/crm/api/util/data_type_converter.rb +194 -0
  1337. data/src/com/zoho/crm/api/util/downloader.rb +86 -0
  1338. data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
  1339. data/src/com/zoho/crm/api/util/header_param_validator.rb +86 -0
  1340. data/src/com/zoho/crm/api/util/json_converter.rb +780 -0
  1341. data/src/com/zoho/crm/api/util/model.rb +7 -0
  1342. data/src/com/zoho/crm/api/util/module_fields_handler.rb +91 -0
  1343. data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
  1344. data/src/com/zoho/crm/api/util/utility.rb +1009 -0
  1345. data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
  1346. data/src/com/zoho/crm/api/variable_groups/minified_variable_group.rb +82 -0
  1347. data/src/com/zoho/crm/api/variable_groups/response_handler.rb +12 -0
  1348. data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +65 -0
  1349. data/src/com/zoho/crm/api/variable_groups/variable_group.rb +158 -0
  1350. data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +68 -0
  1351. data/src/com/zoho/crm/api/variables/action_handler.rb +12 -0
  1352. data/src/com/zoho/crm/api/variables/action_response.rb +12 -0
  1353. data/src/com/zoho/crm/api/variables/action_wrapper.rb +65 -0
  1354. data/src/com/zoho/crm/api/variables/api_exception.rb +127 -0
  1355. data/src/com/zoho/crm/api/variables/body_wrapper.rb +63 -0
  1356. data/src/com/zoho/crm/api/variables/response_handler.rb +12 -0
  1357. data/src/com/zoho/crm/api/variables/response_wrapper.rb +65 -0
  1358. data/src/com/zoho/crm/api/variables/success_response.rb +123 -0
  1359. data/src/com/zoho/crm/api/variables/variable.rb +213 -0
  1360. data/src/com/zoho/crm/api/variables/variable_group.rb +101 -0
  1361. data/src/com/zoho/crm/api/variables/variables_operations.rb +267 -0
  1362. data/src/com/zoho/crm/api/webforms/abtesting.rb +120 -0
  1363. data/src/com/zoho/crm/api/webforms/acknowledge_visitor.rb +82 -0
  1364. data/src/com/zoho/crm/api/webforms/acknowledge_visitors.rb +101 -0
  1365. data/src/com/zoho/crm/api/webforms/action_handler.rb +12 -0
  1366. data/src/com/zoho/crm/api/webforms/action_response.rb +12 -0
  1367. data/src/com/zoho/crm/api/webforms/action_wrapper.rb +65 -0
  1368. data/src/com/zoho/crm/api/webforms/analytics_data.rb +139 -0
  1369. data/src/com/zoho/crm/api/webforms/api_exception.rb +127 -0
  1370. data/src/com/zoho/crm/api/webforms/assignment_rule.rb +82 -0
  1371. data/src/com/zoho/crm/api/webforms/auto_response_rule.rb +63 -0
  1372. data/src/com/zoho/crm/api/webforms/body_wrapper.rb +63 -0
  1373. data/src/com/zoho/crm/api/webforms/button_attributes.rb +82 -0
  1374. data/src/com/zoho/crm/api/webforms/fields.rb +348 -0
  1375. data/src/com/zoho/crm/api/webforms/font_attributes.rb +101 -0
  1376. data/src/com/zoho/crm/api/webforms/form_attributes.rb +139 -0
  1377. data/src/com/zoho/crm/api/webforms/from_address.rb +82 -0
  1378. data/src/com/zoho/crm/api/webforms/layout.rb +82 -0
  1379. data/src/com/zoho/crm/api/webforms/module.rb +101 -0
  1380. data/src/com/zoho/crm/api/webforms/owner.rb +82 -0
  1381. data/src/com/zoho/crm/api/webforms/response_handler.rb +12 -0
  1382. data/src/com/zoho/crm/api/webforms/response_wrapper.rb +65 -0
  1383. data/src/com/zoho/crm/api/webforms/spam_controll.rb +82 -0
  1384. data/src/com/zoho/crm/api/webforms/success_response.rb +123 -0
  1385. data/src/com/zoho/crm/api/webforms/suggestion.rb +82 -0
  1386. data/src/com/zoho/crm/api/webforms/tags.rb +82 -0
  1387. data/src/com/zoho/crm/api/webforms/user.rb +82 -0
  1388. data/src/com/zoho/crm/api/webforms/web_form.rb +804 -0
  1389. data/src/com/zoho/crm/api/webforms/webforms_operations.rb +190 -0
  1390. data/src/com/zoho/crm/api/wizards/actions.rb +176 -0
  1391. data/src/com/zoho/crm/api/wizards/api_exception.rb +123 -0
  1392. data/src/com/zoho/crm/api/wizards/button.rb +326 -0
  1393. data/src/com/zoho/crm/api/wizards/button_background.rb +63 -0
  1394. data/src/com/zoho/crm/api/wizards/chart_data.rb +139 -0
  1395. data/src/com/zoho/crm/api/wizards/conditional_rules.rb +121 -0
  1396. data/src/com/zoho/crm/api/wizards/connection.rb +101 -0
  1397. data/src/com/zoho/crm/api/wizards/container.rb +121 -0
  1398. data/src/com/zoho/crm/api/wizards/criteria.rb +136 -0
  1399. data/src/com/zoho/crm/api/wizards/element.rb +82 -0
  1400. data/src/com/zoho/crm/api/wizards/exempted_portal_user_type.rb +63 -0
  1401. data/src/com/zoho/crm/api/wizards/field.rb +82 -0
  1402. data/src/com/zoho/crm/api/wizards/message.rb +82 -0
  1403. data/src/com/zoho/crm/api/wizards/node.rb +120 -0
  1404. data/src/com/zoho/crm/api/wizards/portal_user_type.rb +121 -0
  1405. data/src/com/zoho/crm/api/wizards/resource.rb +82 -0
  1406. data/src/com/zoho/crm/api/wizards/response_handler.rb +12 -0
  1407. data/src/com/zoho/crm/api/wizards/response_wrapper.rb +65 -0
  1408. data/src/com/zoho/crm/api/wizards/screen.rb +158 -0
  1409. data/src/com/zoho/crm/api/wizards/segment.rb +197 -0
  1410. data/src/com/zoho/crm/api/wizards/transition.rb +82 -0
  1411. data/src/com/zoho/crm/api/wizards/wizard.rb +313 -0
  1412. data/src/com/zoho/crm/api/wizards/wizards_operations.rb +63 -0
  1413. data/src/com/zoho/crm/api/zia_allowed_field_mappings/allowed_field_map.rb +82 -0
  1414. data/src/com/zoho/crm/api/zia_allowed_field_mappings/allowed_output_data.rb +82 -0
  1415. data/src/com/zoho/crm/api/zia_allowed_field_mappings/api_exception.rb +121 -0
  1416. data/src/com/zoho/crm/api/zia_allowed_field_mappings/crm_field.rb +82 -0
  1417. data/src/com/zoho/crm/api/zia_allowed_field_mappings/enrich_field.rb +82 -0
  1418. data/src/com/zoho/crm/api/zia_allowed_field_mappings/response_wrapper.rb +63 -0
  1419. data/src/com/zoho/crm/api/zia_enrichment/action_response.rb +12 -0
  1420. data/src/com/zoho/crm/api/zia_enrichment/action_wrapper.rb +63 -0
  1421. data/src/com/zoho/crm/api/zia_enrichment/api_exception.rb +125 -0
  1422. data/src/com/zoho/crm/api/zia_enrichment/body_wrapper.rb +63 -0
  1423. data/src/com/zoho/crm/api/zia_enrichment/crm_field.rb +101 -0
  1424. data/src/com/zoho/crm/api/zia_enrichment/data_enrichment.rb +234 -0
  1425. data/src/com/zoho/crm/api/zia_enrichment/enrich_field.rb +82 -0
  1426. data/src/com/zoho/crm/api/zia_enrichment/input_data.rb +82 -0
  1427. data/src/com/zoho/crm/api/zia_enrichment/module.rb +82 -0
  1428. data/src/com/zoho/crm/api/zia_enrichment/output_data.rb +82 -0
  1429. data/src/com/zoho/crm/api/zia_enrichment/response_wrapper.rb +63 -0
  1430. data/src/com/zoho/crm/api/zia_enrichment/scrapy_action_response.rb +12 -0
  1431. data/src/com/zoho/crm/api/zia_enrichment/scrapy_action_wrapper.rb +63 -0
  1432. data/src/com/zoho/crm/api/zia_enrichment/scrapy_body_wrapper.rb +63 -0
  1433. data/src/com/zoho/crm/api/zia_enrichment/scrapy_feedback.rb +121 -0
  1434. data/src/com/zoho/crm/api/zia_enrichment/scrapy_success.rb +123 -0
  1435. data/src/com/zoho/crm/api/zia_enrichment/success_response.rb +121 -0
  1436. data/src/com/zoho/crm/api/zia_enrichment/user.rb +82 -0
  1437. data/src/com/zoho/crm/api/zia_org_enrichment/action_handler.rb +12 -0
  1438. data/src/com/zoho/crm/api/zia_org_enrichment/action_response.rb +12 -0
  1439. data/src/com/zoho/crm/api/zia_org_enrichment/action_wrapper.rb +65 -0
  1440. data/src/com/zoho/crm/api/zia_org_enrichment/address.rb +139 -0
  1441. data/src/com/zoho/crm/api/zia_org_enrichment/api_exception.rb +127 -0
  1442. data/src/com/zoho/crm/api/zia_org_enrichment/body_wrapper.rb +63 -0
  1443. data/src/com/zoho/crm/api/zia_org_enrichment/description.rb +82 -0
  1444. data/src/com/zoho/crm/api/zia_org_enrichment/enrich_based_on.rb +101 -0
  1445. data/src/com/zoho/crm/api/zia_org_enrichment/enriched_data.rb +557 -0
  1446. data/src/com/zoho/crm/api/zia_org_enrichment/industry.rb +82 -0
  1447. data/src/com/zoho/crm/api/zia_org_enrichment/info.rb +120 -0
  1448. data/src/com/zoho/crm/api/zia_org_enrichment/response_handler.rb +12 -0
  1449. data/src/com/zoho/crm/api/zia_org_enrichment/response_wrapper.rb +84 -0
  1450. data/src/com/zoho/crm/api/zia_org_enrichment/social_media.rb +82 -0
  1451. data/src/com/zoho/crm/api/zia_org_enrichment/success_response.rb +123 -0
  1452. data/src/com/zoho/crm/api/zia_org_enrichment/user.rb +82 -0
  1453. data/src/com/zoho/crm/api/zia_org_enrichment/zia_org_enrichment.rb +158 -0
  1454. data/src/com/zoho/crm/api/zia_org_enrichment/zia_org_enrichment_operations.rb +117 -0
  1455. data/src/com/zoho/crm/api/zia_people_enrichment/action_handler.rb +12 -0
  1456. data/src/com/zoho/crm/api/zia_people_enrichment/action_response.rb +12 -0
  1457. data/src/com/zoho/crm/api/zia_people_enrichment/action_wrapper.rb +65 -0
  1458. data/src/com/zoho/crm/api/zia_people_enrichment/address.rb +139 -0
  1459. data/src/com/zoho/crm/api/zia_people_enrichment/api_exception.rb +127 -0
  1460. data/src/com/zoho/crm/api/zia_people_enrichment/body_wrapper.rb +63 -0
  1461. data/src/com/zoho/crm/api/zia_people_enrichment/company.rb +82 -0
  1462. data/src/com/zoho/crm/api/zia_people_enrichment/company_info.rb +101 -0
  1463. data/src/com/zoho/crm/api/zia_people_enrichment/email_info.rb +82 -0
  1464. data/src/com/zoho/crm/api/zia_people_enrichment/enrich_based_on.rb +120 -0
  1465. data/src/com/zoho/crm/api/zia_people_enrichment/enriched_data.rb +424 -0
  1466. data/src/com/zoho/crm/api/zia_people_enrichment/experience.rb +139 -0
  1467. data/src/com/zoho/crm/api/zia_people_enrichment/industry.rb +82 -0
  1468. data/src/com/zoho/crm/api/zia_people_enrichment/info.rb +120 -0
  1469. data/src/com/zoho/crm/api/zia_people_enrichment/response_handler.rb +12 -0
  1470. data/src/com/zoho/crm/api/zia_people_enrichment/response_wrapper.rb +84 -0
  1471. data/src/com/zoho/crm/api/zia_people_enrichment/social.rb +101 -0
  1472. data/src/com/zoho/crm/api/zia_people_enrichment/social_media.rb +82 -0
  1473. data/src/com/zoho/crm/api/zia_people_enrichment/success_response.rb +123 -0
  1474. data/src/com/zoho/crm/api/zia_people_enrichment/user.rb +82 -0
  1475. data/src/com/zoho/crm/api/zia_people_enrichment/zia_people_enrichment.rb +158 -0
  1476. data/src/com/zoho/crm/api/zia_people_enrichment/zia_people_enrichment_operations.rb +121 -0
  1477. data/src/resources/json_details.json +1 -0
  1478. data/src/version.rb +3 -0
  1479. metadata +1634 -0
@@ -0,0 +1,1629 @@
1
+ require_relative '../fields/association_details'
2
+ require_relative '../fields/auto_number'
3
+ require_relative '../fields/convert_mapping'
4
+ require_relative '../fields/crypt'
5
+ require_relative '../fields/currency'
6
+ require_relative '../fields/email_parser'
7
+ require_relative '../fields/external'
8
+ require_relative '../fields/fields'
9
+ require_relative '../fields/file_upolad_option'
10
+ require_relative '../fields/formula'
11
+ require_relative '../fields/hipaa_compliance'
12
+ require_relative '../fields/history_tracking'
13
+ require_relative '../fields/layout_association'
14
+ require_relative '../fields/lookup'
15
+ require_relative '../fields/multi_module_lookup'
16
+ require_relative '../fields/multiselectlookup'
17
+ require_relative '../fields/operation_type'
18
+ require_relative '../fields/pick_list_value'
19
+ require_relative '../fields/private'
20
+ require_relative '../fields/profile'
21
+ require_relative '../fields/refer_from_field'
22
+ require_relative '../fields/rollup_summary'
23
+ require_relative '../fields/subform'
24
+ require_relative '../fields/textarea'
25
+ require_relative '../fields/tooltip'
26
+ require_relative '../fields/unique'
27
+ require_relative '../fields/view_type'
28
+ require_relative '../modules/minified_module'
29
+ require_relative '../modules/sharing_properties'
30
+ require_relative '../util/model'
31
+
32
+ module ZOHOCRMSDK
33
+ module Layouts
34
+ class SectionField < Fields::Fields
35
+ include Util::Model
36
+
37
+ # Creates an instance of SectionField
38
+ def initialize
39
+ super
40
+ @required = nil
41
+ @validation_rule = nil
42
+ @default_value = nil
43
+ @sequence_number = nil
44
+ @section_id = nil
45
+ @blueprint_supported = nil
46
+ @json_type = nil
47
+ @length = nil
48
+ @decimal_place = nil
49
+ @multi_module_lookup = nil
50
+ @sharing_properties = nil
51
+ @currency = nil
52
+ @file_upolad_optionlist = nil
53
+ @lookup = nil
54
+ @subform = nil
55
+ @formula = nil
56
+ @multiselectlookup = nil
57
+ @multiuserlookup = nil
58
+ @pick_list_values = nil
59
+ @allowed_modules = nil
60
+ @hipaa_compliance_enabled = nil
61
+ @hipaa_compliance = nil
62
+ @static_values = nil
63
+ @static_field = nil
64
+ @layout_associations = nil
65
+ @associated_module = nil
66
+ @data_type = nil
67
+ @operation_type = nil
68
+ @system_mandatory = nil
69
+ @webhook = nil
70
+ @virtual_field = nil
71
+ @field_read_only = nil
72
+ @customizable_properties = nil
73
+ @read_only = nil
74
+ @custom_field = nil
75
+ @businesscard_supported = nil
76
+ @filterable = nil
77
+ @visible = nil
78
+ @available_in_user_layout = nil
79
+ @display_field = nil
80
+ @pick_list_values_sorted_lexically = nil
81
+ @sortable = nil
82
+ @separator = nil
83
+ @searchable = nil
84
+ @enable_colour_code = nil
85
+ @mass_update = nil
86
+ @created_source = nil
87
+ @type = nil
88
+ @display_label = nil
89
+ @column_name = nil
90
+ @api_name = nil
91
+ @display_type = nil
92
+ @ui_type = nil
93
+ @colour_code_enabled_by_system = nil
94
+ @quick_sequence_number = nil
95
+ @email_parser = nil
96
+ @rollup_summary = nil
97
+ @refer_from_field = nil
98
+ @created_time = nil
99
+ @modified_time = nil
100
+ @show_type = nil
101
+ @category = nil
102
+ @id = nil
103
+ @profiles = nil
104
+ @view_type = nil
105
+ @unique = nil
106
+ @sub_module = nil
107
+ @external = nil
108
+ @private = nil
109
+ @convert_mapping = nil
110
+ @autonumber = nil
111
+ @auto_number_70 = nil
112
+ @crypt = nil
113
+ @tooltip = nil
114
+ @history_tracking = nil
115
+ @association_details = nil
116
+ @additional_column = nil
117
+ @field_label = nil
118
+ @global_picklist = nil
119
+ @updateexistingrecords = nil
120
+ @number_separator = nil
121
+ @textarea = nil
122
+ @key_modified = Hash.new
123
+ end
124
+
125
+ # The method to get the required
126
+ # @return A Boolean value
127
+
128
+ def required
129
+ @required
130
+ end
131
+
132
+ # The method to set the value to required
133
+ # @param required [Boolean] A Boolean
134
+
135
+ def required=(required)
136
+ if required!=nil and ! [true, false].include?required
137
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: required EXPECTED TYPE: Boolean', nil, nil)
138
+ end
139
+ @required = required
140
+ @key_modified['required'] = 1
141
+ end
142
+
143
+ # The method to get the validation_rule
144
+ # @return An instance of Hash
145
+
146
+ def validation_rule
147
+ @validation_rule
148
+ end
149
+
150
+ # The method to set the value to validation_rule
151
+ # @param validation_rule [Hash] An instance of Hash
152
+
153
+ def validation_rule=(validation_rule)
154
+ if validation_rule!=nil and !validation_rule.is_a? Hash
155
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: validation_rule EXPECTED TYPE: Hash', nil, nil)
156
+ end
157
+ @validation_rule = validation_rule
158
+ @key_modified['validation_rule'] = 1
159
+ end
160
+
161
+ # The method to get the default_value
162
+ # @return A String value
163
+
164
+ def default_value
165
+ @default_value
166
+ end
167
+
168
+ # The method to set the value to default_value
169
+ # @param default_value [String] A String
170
+
171
+ def default_value=(default_value)
172
+ if default_value!=nil and !default_value.is_a? String
173
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: default_value EXPECTED TYPE: String', nil, nil)
174
+ end
175
+ @default_value = default_value
176
+ @key_modified['default_value'] = 1
177
+ end
178
+
179
+ # The method to get the sequence_number
180
+ # @return A Integer value
181
+
182
+ def sequence_number
183
+ @sequence_number
184
+ end
185
+
186
+ # The method to set the value to sequence_number
187
+ # @param sequence_number [Integer] A Integer
188
+
189
+ def sequence_number=(sequence_number)
190
+ if sequence_number!=nil and !sequence_number.is_a? Integer
191
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sequence_number EXPECTED TYPE: Integer', nil, nil)
192
+ end
193
+ @sequence_number = sequence_number
194
+ @key_modified['sequence_number'] = 1
195
+ end
196
+
197
+ # The method to get the section_id
198
+ # @return A Integer value
199
+
200
+ def section_id
201
+ @section_id
202
+ end
203
+
204
+ # The method to set the value to section_id
205
+ # @param section_id [Integer] A Integer
206
+
207
+ def section_id=(section_id)
208
+ if section_id!=nil and !section_id.is_a? Integer
209
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: section_id EXPECTED TYPE: Integer', nil, nil)
210
+ end
211
+ @section_id = section_id
212
+ @key_modified['section_id'] = 1
213
+ end
214
+
215
+ # The method to get the blueprint_supported
216
+ # @return A Boolean value
217
+
218
+ def blueprint_supported
219
+ @blueprint_supported
220
+ end
221
+
222
+ # The method to set the value to blueprint_supported
223
+ # @param blueprint_supported [Boolean] A Boolean
224
+
225
+ def blueprint_supported=(blueprint_supported)
226
+ if blueprint_supported!=nil and ! [true, false].include?blueprint_supported
227
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: blueprint_supported EXPECTED TYPE: Boolean', nil, nil)
228
+ end
229
+ @blueprint_supported = blueprint_supported
230
+ @key_modified['blueprint_supported'] = 1
231
+ end
232
+
233
+ # The method to get the json_type
234
+ # @return A String value
235
+
236
+ def json_type
237
+ @json_type
238
+ end
239
+
240
+ # The method to set the value to json_type
241
+ # @param json_type [String] A String
242
+
243
+ def json_type=(json_type)
244
+ if json_type!=nil and !json_type.is_a? String
245
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: json_type EXPECTED TYPE: String', nil, nil)
246
+ end
247
+ @json_type = json_type
248
+ @key_modified['json_type'] = 1
249
+ end
250
+
251
+ # The method to get the length
252
+ # @return A Integer value
253
+
254
+ def length
255
+ @length
256
+ end
257
+
258
+ # The method to set the value to length
259
+ # @param length [Integer] A Integer
260
+
261
+ def length=(length)
262
+ if length!=nil and !length.is_a? Integer
263
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: length EXPECTED TYPE: Integer', nil, nil)
264
+ end
265
+ @length = length
266
+ @key_modified['length'] = 1
267
+ end
268
+
269
+ # The method to get the decimal_place
270
+ # @return A Integer value
271
+
272
+ def decimal_place
273
+ @decimal_place
274
+ end
275
+
276
+ # The method to set the value to decimal_place
277
+ # @param decimal_place [Integer] A Integer
278
+
279
+ def decimal_place=(decimal_place)
280
+ if decimal_place!=nil and !decimal_place.is_a? Integer
281
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: decimal_place EXPECTED TYPE: Integer', nil, nil)
282
+ end
283
+ @decimal_place = decimal_place
284
+ @key_modified['decimal_place'] = 1
285
+ end
286
+
287
+ # The method to get the multi_module_lookup
288
+ # @return An instance of Fields::MultiModuleLookup
289
+
290
+ def multi_module_lookup
291
+ @multi_module_lookup
292
+ end
293
+
294
+ # The method to set the value to multi_module_lookup
295
+ # @param multi_module_lookup [Fields::MultiModuleLookup] An instance of Fields::MultiModuleLookup
296
+
297
+ def multi_module_lookup=(multi_module_lookup)
298
+ if multi_module_lookup!=nil and !multi_module_lookup.is_a? Fields::MultiModuleLookup
299
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multi_module_lookup EXPECTED TYPE: MultiModuleLookup', nil, nil)
300
+ end
301
+ @multi_module_lookup = multi_module_lookup
302
+ @key_modified['multi_module_lookup'] = 1
303
+ end
304
+
305
+ # The method to get the sharing_properties
306
+ # @return An instance of Modules::SharingProperties
307
+
308
+ def sharing_properties
309
+ @sharing_properties
310
+ end
311
+
312
+ # The method to set the value to sharing_properties
313
+ # @param sharing_properties [Modules::SharingProperties] An instance of Modules::SharingProperties
314
+
315
+ def sharing_properties=(sharing_properties)
316
+ if sharing_properties!=nil and !sharing_properties.is_a? Modules::SharingProperties
317
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sharing_properties EXPECTED TYPE: SharingProperties', nil, nil)
318
+ end
319
+ @sharing_properties = sharing_properties
320
+ @key_modified['sharing_properties'] = 1
321
+ end
322
+
323
+ # The method to get the currency
324
+ # @return An instance of Fields::Currency
325
+
326
+ def currency
327
+ @currency
328
+ end
329
+
330
+ # The method to set the value to currency
331
+ # @param currency [Fields::Currency] An instance of Fields::Currency
332
+
333
+ def currency=(currency)
334
+ if currency!=nil and !currency.is_a? Fields::Currency
335
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: currency EXPECTED TYPE: Currency', nil, nil)
336
+ end
337
+ @currency = currency
338
+ @key_modified['currency'] = 1
339
+ end
340
+
341
+ # The method to get the file_upolad_optionlist
342
+ # @return An instance of Array
343
+
344
+ def file_upolad_optionlist
345
+ @file_upolad_optionlist
346
+ end
347
+
348
+ # The method to set the value to file_upolad_optionlist
349
+ # @param file_upolad_optionlist [Array] An instance of Array
350
+
351
+ def file_upolad_optionlist=(file_upolad_optionlist)
352
+ if file_upolad_optionlist!=nil and !file_upolad_optionlist.is_a? Array
353
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: file_upolad_optionlist EXPECTED TYPE: Array', nil, nil)
354
+ end
355
+ @file_upolad_optionlist = file_upolad_optionlist
356
+ @key_modified['file_upolad_optionlist'] = 1
357
+ end
358
+
359
+ # The method to get the lookup
360
+ # @return An instance of Fields::Lookup
361
+
362
+ def lookup
363
+ @lookup
364
+ end
365
+
366
+ # The method to set the value to lookup
367
+ # @param lookup [Fields::Lookup] An instance of Fields::Lookup
368
+
369
+ def lookup=(lookup)
370
+ if lookup!=nil and !lookup.is_a? Fields::Lookup
371
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: lookup EXPECTED TYPE: Lookup', nil, nil)
372
+ end
373
+ @lookup = lookup
374
+ @key_modified['lookup'] = 1
375
+ end
376
+
377
+ # The method to get the subform
378
+ # @return An instance of Fields::Subform
379
+
380
+ def subform
381
+ @subform
382
+ end
383
+
384
+ # The method to set the value to subform
385
+ # @param subform [Fields::Subform] An instance of Fields::Subform
386
+
387
+ def subform=(subform)
388
+ if subform!=nil and !subform.is_a? Fields::Subform
389
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: subform EXPECTED TYPE: Subform', nil, nil)
390
+ end
391
+ @subform = subform
392
+ @key_modified['subform'] = 1
393
+ end
394
+
395
+ # The method to get the formula
396
+ # @return An instance of Fields::Formula
397
+
398
+ def formula
399
+ @formula
400
+ end
401
+
402
+ # The method to set the value to formula
403
+ # @param formula [Fields::Formula] An instance of Fields::Formula
404
+
405
+ def formula=(formula)
406
+ if formula!=nil and !formula.is_a? Fields::Formula
407
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: formula EXPECTED TYPE: Formula', nil, nil)
408
+ end
409
+ @formula = formula
410
+ @key_modified['formula'] = 1
411
+ end
412
+
413
+ # The method to get the multiselectlookup
414
+ # @return An instance of Fields::Multiselectlookup
415
+
416
+ def multiselectlookup
417
+ @multiselectlookup
418
+ end
419
+
420
+ # The method to set the value to multiselectlookup
421
+ # @param multiselectlookup [Fields::Multiselectlookup] An instance of Fields::Multiselectlookup
422
+
423
+ def multiselectlookup=(multiselectlookup)
424
+ if multiselectlookup!=nil and !multiselectlookup.is_a? Fields::Multiselectlookup
425
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multiselectlookup EXPECTED TYPE: Multiselectlookup', nil, nil)
426
+ end
427
+ @multiselectlookup = multiselectlookup
428
+ @key_modified['multiselectlookup'] = 1
429
+ end
430
+
431
+ # The method to get the multiuserlookup
432
+ # @return An instance of Fields::Multiselectlookup
433
+
434
+ def multiuserlookup
435
+ @multiuserlookup
436
+ end
437
+
438
+ # The method to set the value to multiuserlookup
439
+ # @param multiuserlookup [Fields::Multiselectlookup] An instance of Fields::Multiselectlookup
440
+
441
+ def multiuserlookup=(multiuserlookup)
442
+ if multiuserlookup!=nil and !multiuserlookup.is_a? Fields::Multiselectlookup
443
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multiuserlookup EXPECTED TYPE: Multiselectlookup', nil, nil)
444
+ end
445
+ @multiuserlookup = multiuserlookup
446
+ @key_modified['multiuserlookup'] = 1
447
+ end
448
+
449
+ # The method to get the pick_list_values
450
+ # @return An instance of Array
451
+
452
+ def pick_list_values
453
+ @pick_list_values
454
+ end
455
+
456
+ # The method to set the value to pick_list_values
457
+ # @param pick_list_values [Array] An instance of Array
458
+
459
+ def pick_list_values=(pick_list_values)
460
+ if pick_list_values!=nil and !pick_list_values.is_a? Array
461
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: pick_list_values EXPECTED TYPE: Array', nil, nil)
462
+ end
463
+ @pick_list_values = pick_list_values
464
+ @key_modified['pick_list_values'] = 1
465
+ end
466
+
467
+ # The method to get the allowed_modules
468
+ # @return An instance of Array
469
+
470
+ def allowed_modules
471
+ @allowed_modules
472
+ end
473
+
474
+ # The method to set the value to allowed_modules
475
+ # @param allowed_modules [Array] An instance of Array
476
+
477
+ def allowed_modules=(allowed_modules)
478
+ if allowed_modules!=nil and !allowed_modules.is_a? Array
479
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: allowed_modules EXPECTED TYPE: Array', nil, nil)
480
+ end
481
+ @allowed_modules = allowed_modules
482
+ @key_modified['allowed_modules'] = 1
483
+ end
484
+
485
+ # The method to get the hipaa_compliance_enabled
486
+ # @return A Boolean value
487
+
488
+ def hipaa_compliance_enabled
489
+ @hipaa_compliance_enabled
490
+ end
491
+
492
+ # The method to set the value to hipaa_compliance_enabled
493
+ # @param hipaa_compliance_enabled [Boolean] A Boolean
494
+
495
+ def hipaa_compliance_enabled=(hipaa_compliance_enabled)
496
+ if hipaa_compliance_enabled!=nil and ! [true, false].include?hipaa_compliance_enabled
497
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: hipaa_compliance_enabled EXPECTED TYPE: Boolean', nil, nil)
498
+ end
499
+ @hipaa_compliance_enabled = hipaa_compliance_enabled
500
+ @key_modified['hipaa_compliance_enabled'] = 1
501
+ end
502
+
503
+ # The method to get the hipaa_compliance
504
+ # @return An instance of Fields::HipaaCompliance
505
+
506
+ def hipaa_compliance
507
+ @hipaa_compliance
508
+ end
509
+
510
+ # The method to set the value to hipaa_compliance
511
+ # @param hipaa_compliance [Fields::HipaaCompliance] An instance of Fields::HipaaCompliance
512
+
513
+ def hipaa_compliance=(hipaa_compliance)
514
+ if hipaa_compliance!=nil and !hipaa_compliance.is_a? Fields::HipaaCompliance
515
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: hipaa_compliance EXPECTED TYPE: HipaaCompliance', nil, nil)
516
+ end
517
+ @hipaa_compliance = hipaa_compliance
518
+ @key_modified['hipaa_compliance'] = 1
519
+ end
520
+
521
+ # The method to get the static_values
522
+ # @return An instance of Array
523
+
524
+ def static_values
525
+ @static_values
526
+ end
527
+
528
+ # The method to set the value to static_values
529
+ # @param static_values [Array] An instance of Array
530
+
531
+ def static_values=(static_values)
532
+ if static_values!=nil and !static_values.is_a? Array
533
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: static_values EXPECTED TYPE: Array', nil, nil)
534
+ end
535
+ @static_values = static_values
536
+ @key_modified['static_values'] = 1
537
+ end
538
+
539
+ # The method to get the static_field
540
+ # @return A Boolean value
541
+
542
+ def static_field
543
+ @static_field
544
+ end
545
+
546
+ # The method to set the value to static_field
547
+ # @param static_field [Boolean] A Boolean
548
+
549
+ def static_field=(static_field)
550
+ if static_field!=nil and ! [true, false].include?static_field
551
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: static_field EXPECTED TYPE: Boolean', nil, nil)
552
+ end
553
+ @static_field = static_field
554
+ @key_modified['static_field'] = 1
555
+ end
556
+
557
+ # The method to get the layout_associations
558
+ # @return An instance of Array
559
+
560
+ def layout_associations
561
+ @layout_associations
562
+ end
563
+
564
+ # The method to set the value to layout_associations
565
+ # @param layout_associations [Array] An instance of Array
566
+
567
+ def layout_associations=(layout_associations)
568
+ if layout_associations!=nil and !layout_associations.is_a? Array
569
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: layout_associations EXPECTED TYPE: Array', nil, nil)
570
+ end
571
+ @layout_associations = layout_associations
572
+ @key_modified['layout_associations'] = 1
573
+ end
574
+
575
+ # The method to get the associated_module
576
+ # @return An instance of Modules::MinifiedModule
577
+
578
+ def associated_module
579
+ @associated_module
580
+ end
581
+
582
+ # The method to set the value to associated_module
583
+ # @param associated_module [Modules::MinifiedModule] An instance of Modules::MinifiedModule
584
+
585
+ def associated_module=(associated_module)
586
+ if associated_module!=nil and !associated_module.is_a? Modules::MinifiedModule
587
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: associated_module EXPECTED TYPE: MinifiedModule', nil, nil)
588
+ end
589
+ @associated_module = associated_module
590
+ @key_modified['associated_module'] = 1
591
+ end
592
+
593
+ # The method to get the data_type
594
+ # @return A String value
595
+
596
+ def data_type
597
+ @data_type
598
+ end
599
+
600
+ # The method to set the value to data_type
601
+ # @param data_type [String] A String
602
+
603
+ def data_type=(data_type)
604
+ if data_type!=nil and !data_type.is_a? String
605
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: data_type EXPECTED TYPE: String', nil, nil)
606
+ end
607
+ @data_type = data_type
608
+ @key_modified['data_type'] = 1
609
+ end
610
+
611
+ # The method to get the operation_type
612
+ # @return An instance of Fields::OperationType
613
+
614
+ def operation_type
615
+ @operation_type
616
+ end
617
+
618
+ # The method to set the value to operation_type
619
+ # @param operation_type [Fields::OperationType] An instance of Fields::OperationType
620
+
621
+ def operation_type=(operation_type)
622
+ if operation_type!=nil and !operation_type.is_a? Fields::OperationType
623
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: operation_type EXPECTED TYPE: OperationType', nil, nil)
624
+ end
625
+ @operation_type = operation_type
626
+ @key_modified['operation_type'] = 1
627
+ end
628
+
629
+ # The method to get the system_mandatory
630
+ # @return A Boolean value
631
+
632
+ def system_mandatory
633
+ @system_mandatory
634
+ end
635
+
636
+ # The method to set the value to system_mandatory
637
+ # @param system_mandatory [Boolean] A Boolean
638
+
639
+ def system_mandatory=(system_mandatory)
640
+ if system_mandatory!=nil and ! [true, false].include?system_mandatory
641
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: system_mandatory EXPECTED TYPE: Boolean', nil, nil)
642
+ end
643
+ @system_mandatory = system_mandatory
644
+ @key_modified['system_mandatory'] = 1
645
+ end
646
+
647
+ # The method to get the webhook
648
+ # @return A Boolean value
649
+
650
+ def webhook
651
+ @webhook
652
+ end
653
+
654
+ # The method to set the value to webhook
655
+ # @param webhook [Boolean] A Boolean
656
+
657
+ def webhook=(webhook)
658
+ if webhook!=nil and ! [true, false].include?webhook
659
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: webhook EXPECTED TYPE: Boolean', nil, nil)
660
+ end
661
+ @webhook = webhook
662
+ @key_modified['webhook'] = 1
663
+ end
664
+
665
+ # The method to get the virtual_field
666
+ # @return A Boolean value
667
+
668
+ def virtual_field
669
+ @virtual_field
670
+ end
671
+
672
+ # The method to set the value to virtual_field
673
+ # @param virtual_field [Boolean] A Boolean
674
+
675
+ def virtual_field=(virtual_field)
676
+ if virtual_field!=nil and ! [true, false].include?virtual_field
677
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: virtual_field EXPECTED TYPE: Boolean', nil, nil)
678
+ end
679
+ @virtual_field = virtual_field
680
+ @key_modified['virtual_field'] = 1
681
+ end
682
+
683
+ # The method to get the field_read_only
684
+ # @return A Boolean value
685
+
686
+ def field_read_only
687
+ @field_read_only
688
+ end
689
+
690
+ # The method to set the value to field_read_only
691
+ # @param field_read_only [Boolean] A Boolean
692
+
693
+ def field_read_only=(field_read_only)
694
+ if field_read_only!=nil and ! [true, false].include?field_read_only
695
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_read_only EXPECTED TYPE: Boolean', nil, nil)
696
+ end
697
+ @field_read_only = field_read_only
698
+ @key_modified['field_read_only'] = 1
699
+ end
700
+
701
+ # The method to get the customizable_properties
702
+ # @return An instance of Array
703
+
704
+ def customizable_properties
705
+ @customizable_properties
706
+ end
707
+
708
+ # The method to set the value to customizable_properties
709
+ # @param customizable_properties [Array] An instance of Array
710
+
711
+ def customizable_properties=(customizable_properties)
712
+ if customizable_properties!=nil and !customizable_properties.is_a? Array
713
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: customizable_properties EXPECTED TYPE: Array', nil, nil)
714
+ end
715
+ @customizable_properties = customizable_properties
716
+ @key_modified['customizable_properties'] = 1
717
+ end
718
+
719
+ # The method to get the read_only
720
+ # @return A Boolean value
721
+
722
+ def read_only
723
+ @read_only
724
+ end
725
+
726
+ # The method to set the value to read_only
727
+ # @param read_only [Boolean] A Boolean
728
+
729
+ def read_only=(read_only)
730
+ if read_only!=nil and ! [true, false].include?read_only
731
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: read_only EXPECTED TYPE: Boolean', nil, nil)
732
+ end
733
+ @read_only = read_only
734
+ @key_modified['read_only'] = 1
735
+ end
736
+
737
+ # The method to get the custom_field
738
+ # @return A Boolean value
739
+
740
+ def custom_field
741
+ @custom_field
742
+ end
743
+
744
+ # The method to set the value to custom_field
745
+ # @param custom_field [Boolean] A Boolean
746
+
747
+ def custom_field=(custom_field)
748
+ if custom_field!=nil and ! [true, false].include?custom_field
749
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: custom_field EXPECTED TYPE: Boolean', nil, nil)
750
+ end
751
+ @custom_field = custom_field
752
+ @key_modified['custom_field'] = 1
753
+ end
754
+
755
+ # The method to get the businesscard_supported
756
+ # @return A Boolean value
757
+
758
+ def businesscard_supported
759
+ @businesscard_supported
760
+ end
761
+
762
+ # The method to set the value to businesscard_supported
763
+ # @param businesscard_supported [Boolean] A Boolean
764
+
765
+ def businesscard_supported=(businesscard_supported)
766
+ if businesscard_supported!=nil and ! [true, false].include?businesscard_supported
767
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: businesscard_supported EXPECTED TYPE: Boolean', nil, nil)
768
+ end
769
+ @businesscard_supported = businesscard_supported
770
+ @key_modified['businesscard_supported'] = 1
771
+ end
772
+
773
+ # The method to get the filterable
774
+ # @return A Boolean value
775
+
776
+ def filterable
777
+ @filterable
778
+ end
779
+
780
+ # The method to set the value to filterable
781
+ # @param filterable [Boolean] A Boolean
782
+
783
+ def filterable=(filterable)
784
+ if filterable!=nil and ! [true, false].include?filterable
785
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filterable EXPECTED TYPE: Boolean', nil, nil)
786
+ end
787
+ @filterable = filterable
788
+ @key_modified['filterable'] = 1
789
+ end
790
+
791
+ # The method to get the visible
792
+ # @return A Boolean value
793
+
794
+ def visible
795
+ @visible
796
+ end
797
+
798
+ # The method to set the value to visible
799
+ # @param visible [Boolean] A Boolean
800
+
801
+ def visible=(visible)
802
+ if visible!=nil and ! [true, false].include?visible
803
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visible EXPECTED TYPE: Boolean', nil, nil)
804
+ end
805
+ @visible = visible
806
+ @key_modified['visible'] = 1
807
+ end
808
+
809
+ # The method to get the available_in_user_layout
810
+ # @return A Boolean value
811
+
812
+ def available_in_user_layout
813
+ @available_in_user_layout
814
+ end
815
+
816
+ # The method to set the value to available_in_user_layout
817
+ # @param available_in_user_layout [Boolean] A Boolean
818
+
819
+ def available_in_user_layout=(available_in_user_layout)
820
+ if available_in_user_layout!=nil and ! [true, false].include?available_in_user_layout
821
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: available_in_user_layout EXPECTED TYPE: Boolean', nil, nil)
822
+ end
823
+ @available_in_user_layout = available_in_user_layout
824
+ @key_modified['available_in_user_layout'] = 1
825
+ end
826
+
827
+ # The method to get the display_field
828
+ # @return A Boolean value
829
+
830
+ def display_field
831
+ @display_field
832
+ end
833
+
834
+ # The method to set the value to display_field
835
+ # @param display_field [Boolean] A Boolean
836
+
837
+ def display_field=(display_field)
838
+ if display_field!=nil and ! [true, false].include?display_field
839
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_field EXPECTED TYPE: Boolean', nil, nil)
840
+ end
841
+ @display_field = display_field
842
+ @key_modified['display_field'] = 1
843
+ end
844
+
845
+ # The method to get the pick_list_values_sorted_lexically
846
+ # @return A Boolean value
847
+
848
+ def pick_list_values_sorted_lexically
849
+ @pick_list_values_sorted_lexically
850
+ end
851
+
852
+ # The method to set the value to pick_list_values_sorted_lexically
853
+ # @param pick_list_values_sorted_lexically [Boolean] A Boolean
854
+
855
+ def pick_list_values_sorted_lexically=(pick_list_values_sorted_lexically)
856
+ if pick_list_values_sorted_lexically!=nil and ! [true, false].include?pick_list_values_sorted_lexically
857
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: pick_list_values_sorted_lexically EXPECTED TYPE: Boolean', nil, nil)
858
+ end
859
+ @pick_list_values_sorted_lexically = pick_list_values_sorted_lexically
860
+ @key_modified['pick_list_values_sorted_lexically'] = 1
861
+ end
862
+
863
+ # The method to get the sortable
864
+ # @return A Boolean value
865
+
866
+ def sortable
867
+ @sortable
868
+ end
869
+
870
+ # The method to set the value to sortable
871
+ # @param sortable [Boolean] A Boolean
872
+
873
+ def sortable=(sortable)
874
+ if sortable!=nil and ! [true, false].include?sortable
875
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sortable EXPECTED TYPE: Boolean', nil, nil)
876
+ end
877
+ @sortable = sortable
878
+ @key_modified['sortable'] = 1
879
+ end
880
+
881
+ # The method to get the separator
882
+ # @return A Boolean value
883
+
884
+ def separator
885
+ @separator
886
+ end
887
+
888
+ # The method to set the value to separator
889
+ # @param separator [Boolean] A Boolean
890
+
891
+ def separator=(separator)
892
+ if separator!=nil and ! [true, false].include?separator
893
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: separator EXPECTED TYPE: Boolean', nil, nil)
894
+ end
895
+ @separator = separator
896
+ @key_modified['separator'] = 1
897
+ end
898
+
899
+ # The method to get the searchable
900
+ # @return A Boolean value
901
+
902
+ def searchable
903
+ @searchable
904
+ end
905
+
906
+ # The method to set the value to searchable
907
+ # @param searchable [Boolean] A Boolean
908
+
909
+ def searchable=(searchable)
910
+ if searchable!=nil and ! [true, false].include?searchable
911
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: searchable EXPECTED TYPE: Boolean', nil, nil)
912
+ end
913
+ @searchable = searchable
914
+ @key_modified['searchable'] = 1
915
+ end
916
+
917
+ # The method to get the enable_colour_code
918
+ # @return A Boolean value
919
+
920
+ def enable_colour_code
921
+ @enable_colour_code
922
+ end
923
+
924
+ # The method to set the value to enable_colour_code
925
+ # @param enable_colour_code [Boolean] A Boolean
926
+
927
+ def enable_colour_code=(enable_colour_code)
928
+ if enable_colour_code!=nil and ! [true, false].include?enable_colour_code
929
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: enable_colour_code EXPECTED TYPE: Boolean', nil, nil)
930
+ end
931
+ @enable_colour_code = enable_colour_code
932
+ @key_modified['enable_colour_code'] = 1
933
+ end
934
+
935
+ # The method to get the mass_update
936
+ # @return A Boolean value
937
+
938
+ def mass_update
939
+ @mass_update
940
+ end
941
+
942
+ # The method to set the value to mass_update
943
+ # @param mass_update [Boolean] A Boolean
944
+
945
+ def mass_update=(mass_update)
946
+ if mass_update!=nil and ! [true, false].include?mass_update
947
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: mass_update EXPECTED TYPE: Boolean', nil, nil)
948
+ end
949
+ @mass_update = mass_update
950
+ @key_modified['mass_update'] = 1
951
+ end
952
+
953
+ # The method to get the created_source
954
+ # @return A String value
955
+
956
+ def created_source
957
+ @created_source
958
+ end
959
+
960
+ # The method to set the value to created_source
961
+ # @param created_source [String] A String
962
+
963
+ def created_source=(created_source)
964
+ if created_source!=nil and !created_source.is_a? String
965
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_source EXPECTED TYPE: String', nil, nil)
966
+ end
967
+ @created_source = created_source
968
+ @key_modified['created_source'] = 1
969
+ end
970
+
971
+ # The method to get the type
972
+ # @return A String value
973
+
974
+ def type
975
+ @type
976
+ end
977
+
978
+ # The method to set the value to type
979
+ # @param type [String] A String
980
+
981
+ def type=(type)
982
+ if type!=nil and !type.is_a? String
983
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: type EXPECTED TYPE: String', nil, nil)
984
+ end
985
+ @type = type
986
+ @key_modified['type'] = 1
987
+ end
988
+
989
+ # The method to get the display_label
990
+ # @return A String value
991
+
992
+ def display_label
993
+ @display_label
994
+ end
995
+
996
+ # The method to set the value to display_label
997
+ # @param display_label [String] A String
998
+
999
+ def display_label=(display_label)
1000
+ if display_label!=nil and !display_label.is_a? String
1001
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_label EXPECTED TYPE: String', nil, nil)
1002
+ end
1003
+ @display_label = display_label
1004
+ @key_modified['display_label'] = 1
1005
+ end
1006
+
1007
+ # The method to get the column_name
1008
+ # @return A String value
1009
+
1010
+ def column_name
1011
+ @column_name
1012
+ end
1013
+
1014
+ # The method to set the value to column_name
1015
+ # @param column_name [String] A String
1016
+
1017
+ def column_name=(column_name)
1018
+ if column_name!=nil and !column_name.is_a? String
1019
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: column_name EXPECTED TYPE: String', nil, nil)
1020
+ end
1021
+ @column_name = column_name
1022
+ @key_modified['column_name'] = 1
1023
+ end
1024
+
1025
+ # The method to get the api_name
1026
+ # @return A String value
1027
+
1028
+ def api_name
1029
+ @api_name
1030
+ end
1031
+
1032
+ # The method to set the value to api_name
1033
+ # @param api_name [String] A String
1034
+
1035
+ def api_name=(api_name)
1036
+ if api_name!=nil and !api_name.is_a? String
1037
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
1038
+ end
1039
+ @api_name = api_name
1040
+ @key_modified['api_name'] = 1
1041
+ end
1042
+
1043
+ # The method to get the display_type
1044
+ # @return A Integer value
1045
+
1046
+ def display_type
1047
+ @display_type
1048
+ end
1049
+
1050
+ # The method to set the value to display_type
1051
+ # @param display_type [Integer] A Integer
1052
+
1053
+ def display_type=(display_type)
1054
+ if display_type!=nil and !display_type.is_a? Integer
1055
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_type EXPECTED TYPE: Integer', nil, nil)
1056
+ end
1057
+ @display_type = display_type
1058
+ @key_modified['display_type'] = 1
1059
+ end
1060
+
1061
+ # The method to get the ui_type
1062
+ # @return A Integer value
1063
+
1064
+ def ui_type
1065
+ @ui_type
1066
+ end
1067
+
1068
+ # The method to set the value to ui_type
1069
+ # @param ui_type [Integer] A Integer
1070
+
1071
+ def ui_type=(ui_type)
1072
+ if ui_type!=nil and !ui_type.is_a? Integer
1073
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: ui_type EXPECTED TYPE: Integer', nil, nil)
1074
+ end
1075
+ @ui_type = ui_type
1076
+ @key_modified['ui_type'] = 1
1077
+ end
1078
+
1079
+ # The method to get the colour_code_enabled_by_system
1080
+ # @return A Boolean value
1081
+
1082
+ def colour_code_enabled_by_system
1083
+ @colour_code_enabled_by_system
1084
+ end
1085
+
1086
+ # The method to set the value to colour_code_enabled_by_system
1087
+ # @param colour_code_enabled_by_system [Boolean] A Boolean
1088
+
1089
+ def colour_code_enabled_by_system=(colour_code_enabled_by_system)
1090
+ if colour_code_enabled_by_system!=nil and ! [true, false].include?colour_code_enabled_by_system
1091
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: colour_code_enabled_by_system EXPECTED TYPE: Boolean', nil, nil)
1092
+ end
1093
+ @colour_code_enabled_by_system = colour_code_enabled_by_system
1094
+ @key_modified['colour_code_enabled_by_system'] = 1
1095
+ end
1096
+
1097
+ # The method to get the quick_sequence_number
1098
+ # @return A String value
1099
+
1100
+ def quick_sequence_number
1101
+ @quick_sequence_number
1102
+ end
1103
+
1104
+ # The method to set the value to quick_sequence_number
1105
+ # @param quick_sequence_number [String] A String
1106
+
1107
+ def quick_sequence_number=(quick_sequence_number)
1108
+ if quick_sequence_number!=nil and !quick_sequence_number.is_a? String
1109
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quick_sequence_number EXPECTED TYPE: String', nil, nil)
1110
+ end
1111
+ @quick_sequence_number = quick_sequence_number
1112
+ @key_modified['quick_sequence_number'] = 1
1113
+ end
1114
+
1115
+ # The method to get the email_parser
1116
+ # @return An instance of Fields::EmailParser
1117
+
1118
+ def email_parser
1119
+ @email_parser
1120
+ end
1121
+
1122
+ # The method to set the value to email_parser
1123
+ # @param email_parser [Fields::EmailParser] An instance of Fields::EmailParser
1124
+
1125
+ def email_parser=(email_parser)
1126
+ if email_parser!=nil and !email_parser.is_a? Fields::EmailParser
1127
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: email_parser EXPECTED TYPE: EmailParser', nil, nil)
1128
+ end
1129
+ @email_parser = email_parser
1130
+ @key_modified['email_parser'] = 1
1131
+ end
1132
+
1133
+ # The method to get the rollup_summary
1134
+ # @return An instance of Fields::RollupSummary
1135
+
1136
+ def rollup_summary
1137
+ @rollup_summary
1138
+ end
1139
+
1140
+ # The method to set the value to rollup_summary
1141
+ # @param rollup_summary [Fields::RollupSummary] An instance of Fields::RollupSummary
1142
+
1143
+ def rollup_summary=(rollup_summary)
1144
+ if rollup_summary!=nil and !rollup_summary.is_a? Fields::RollupSummary
1145
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: rollup_summary EXPECTED TYPE: RollupSummary', nil, nil)
1146
+ end
1147
+ @rollup_summary = rollup_summary
1148
+ @key_modified['rollup_summary'] = 1
1149
+ end
1150
+
1151
+ # The method to get the refer_from_field
1152
+ # @return An instance of Fields::ReferFromField
1153
+
1154
+ def refer_from_field
1155
+ @refer_from_field
1156
+ end
1157
+
1158
+ # The method to set the value to refer_from_field
1159
+ # @param refer_from_field [Fields::ReferFromField] An instance of Fields::ReferFromField
1160
+
1161
+ def refer_from_field=(refer_from_field)
1162
+ if refer_from_field!=nil and !refer_from_field.is_a? Fields::ReferFromField
1163
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: refer_from_field EXPECTED TYPE: ReferFromField', nil, nil)
1164
+ end
1165
+ @refer_from_field = refer_from_field
1166
+ @key_modified['refer_from_field'] = 1
1167
+ end
1168
+
1169
+ # The method to get the created_time
1170
+ # @return An instance of DateTime
1171
+
1172
+ def created_time
1173
+ @created_time
1174
+ end
1175
+
1176
+ # The method to set the value to created_time
1177
+ # @param created_time [DateTime] An instance of DateTime
1178
+
1179
+ def created_time=(created_time)
1180
+ if created_time!=nil and !created_time.is_a? DateTime
1181
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_time EXPECTED TYPE: DateTime', nil, nil)
1182
+ end
1183
+ @created_time = created_time
1184
+ @key_modified['created_time'] = 1
1185
+ end
1186
+
1187
+ # The method to get the modified_time
1188
+ # @return An instance of DateTime
1189
+
1190
+ def modified_time
1191
+ @modified_time
1192
+ end
1193
+
1194
+ # The method to set the value to modified_time
1195
+ # @param modified_time [DateTime] An instance of DateTime
1196
+
1197
+ def modified_time=(modified_time)
1198
+ if modified_time!=nil and !modified_time.is_a? DateTime
1199
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_time EXPECTED TYPE: DateTime', nil, nil)
1200
+ end
1201
+ @modified_time = modified_time
1202
+ @key_modified['modified_time'] = 1
1203
+ end
1204
+
1205
+ # The method to get the show_type
1206
+ # @return A Integer value
1207
+
1208
+ def show_type
1209
+ @show_type
1210
+ end
1211
+
1212
+ # The method to set the value to show_type
1213
+ # @param show_type [Integer] A Integer
1214
+
1215
+ def show_type=(show_type)
1216
+ if show_type!=nil and !show_type.is_a? Integer
1217
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: show_type EXPECTED TYPE: Integer', nil, nil)
1218
+ end
1219
+ @show_type = show_type
1220
+ @key_modified['show_type'] = 1
1221
+ end
1222
+
1223
+ # The method to get the category
1224
+ # @return A Integer value
1225
+
1226
+ def category
1227
+ @category
1228
+ end
1229
+
1230
+ # The method to set the value to category
1231
+ # @param category [Integer] A Integer
1232
+
1233
+ def category=(category)
1234
+ if category!=nil and !category.is_a? Integer
1235
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: category EXPECTED TYPE: Integer', nil, nil)
1236
+ end
1237
+ @category = category
1238
+ @key_modified['category'] = 1
1239
+ end
1240
+
1241
+ # The method to get the id
1242
+ # @return A Integer value
1243
+
1244
+ def id
1245
+ @id
1246
+ end
1247
+
1248
+ # The method to set the value to id
1249
+ # @param id [Integer] A Integer
1250
+
1251
+ def id=(id)
1252
+ if id!=nil and !id.is_a? Integer
1253
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
1254
+ end
1255
+ @id = id
1256
+ @key_modified['id'] = 1
1257
+ end
1258
+
1259
+ # The method to get the profiles
1260
+ # @return An instance of Array
1261
+
1262
+ def profiles
1263
+ @profiles
1264
+ end
1265
+
1266
+ # The method to set the value to profiles
1267
+ # @param profiles [Array] An instance of Array
1268
+
1269
+ def profiles=(profiles)
1270
+ if profiles!=nil and !profiles.is_a? Array
1271
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: profiles EXPECTED TYPE: Array', nil, nil)
1272
+ end
1273
+ @profiles = profiles
1274
+ @key_modified['profiles'] = 1
1275
+ end
1276
+
1277
+ # The method to get the view_type
1278
+ # @return An instance of Fields::ViewType
1279
+
1280
+ def view_type
1281
+ @view_type
1282
+ end
1283
+
1284
+ # The method to set the value to view_type
1285
+ # @param view_type [Fields::ViewType] An instance of Fields::ViewType
1286
+
1287
+ def view_type=(view_type)
1288
+ if view_type!=nil and !view_type.is_a? Fields::ViewType
1289
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: view_type EXPECTED TYPE: ViewType', nil, nil)
1290
+ end
1291
+ @view_type = view_type
1292
+ @key_modified['view_type'] = 1
1293
+ end
1294
+
1295
+ # The method to get the unique
1296
+ # @return An instance of Fields::Unique
1297
+
1298
+ def unique
1299
+ @unique
1300
+ end
1301
+
1302
+ # The method to set the value to unique
1303
+ # @param unique [Fields::Unique] An instance of Fields::Unique
1304
+
1305
+ def unique=(unique)
1306
+ if unique!=nil and !unique.is_a? Fields::Unique
1307
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: unique EXPECTED TYPE: Unique', nil, nil)
1308
+ end
1309
+ @unique = unique
1310
+ @key_modified['unique'] = 1
1311
+ end
1312
+
1313
+ # The method to get the sub_module
1314
+ # @return An instance of Modules::MinifiedModule
1315
+
1316
+ def sub_module
1317
+ @sub_module
1318
+ end
1319
+
1320
+ # The method to set the value to sub_module
1321
+ # @param sub_module [Modules::MinifiedModule] An instance of Modules::MinifiedModule
1322
+
1323
+ def sub_module=(sub_module)
1324
+ if sub_module!=nil and !sub_module.is_a? Modules::MinifiedModule
1325
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sub_module EXPECTED TYPE: MinifiedModule', nil, nil)
1326
+ end
1327
+ @sub_module = sub_module
1328
+ @key_modified['sub_module'] = 1
1329
+ end
1330
+
1331
+ # The method to get the external
1332
+ # @return An instance of Fields::External
1333
+
1334
+ def external
1335
+ @external
1336
+ end
1337
+
1338
+ # The method to set the value to external
1339
+ # @param external [Fields::External] An instance of Fields::External
1340
+
1341
+ def external=(external)
1342
+ if external!=nil and !external.is_a? Fields::External
1343
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: external EXPECTED TYPE: External', nil, nil)
1344
+ end
1345
+ @external = external
1346
+ @key_modified['external'] = 1
1347
+ end
1348
+
1349
+ # The method to get the private
1350
+ # @return An instance of Fields::Private
1351
+
1352
+ def private
1353
+ @private
1354
+ end
1355
+
1356
+ # The method to set the value to private
1357
+ # @param private [Fields::Private] An instance of Fields::Private
1358
+
1359
+ def private=(private)
1360
+ if private!=nil and !private.is_a? Fields::Private
1361
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: private EXPECTED TYPE: Private', nil, nil)
1362
+ end
1363
+ @private = private
1364
+ @key_modified['private'] = 1
1365
+ end
1366
+
1367
+ # The method to get the convert_mapping
1368
+ # @return An instance of Fields::ConvertMapping
1369
+
1370
+ def convert_mapping
1371
+ @convert_mapping
1372
+ end
1373
+
1374
+ # The method to set the value to convert_mapping
1375
+ # @param convert_mapping [Fields::ConvertMapping] An instance of Fields::ConvertMapping
1376
+
1377
+ def convert_mapping=(convert_mapping)
1378
+ if convert_mapping!=nil and !convert_mapping.is_a? Fields::ConvertMapping
1379
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: convert_mapping EXPECTED TYPE: ConvertMapping', nil, nil)
1380
+ end
1381
+ @convert_mapping = convert_mapping
1382
+ @key_modified['convert_mapping'] = 1
1383
+ end
1384
+
1385
+ # The method to get the autonumber
1386
+ # @return An instance of Fields::AutoNumber
1387
+
1388
+ def autonumber
1389
+ @autonumber
1390
+ end
1391
+
1392
+ # The method to set the value to autonumber
1393
+ # @param autonumber [Fields::AutoNumber] An instance of Fields::AutoNumber
1394
+
1395
+ def autonumber=(autonumber)
1396
+ if autonumber!=nil and !autonumber.is_a? Fields::AutoNumber
1397
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: autonumber EXPECTED TYPE: AutoNumber', nil, nil)
1398
+ end
1399
+ @autonumber = autonumber
1400
+ @key_modified['autonumber'] = 1
1401
+ end
1402
+
1403
+ # The method to get the auto_number_70
1404
+ # @return An instance of Fields::AutoNumber
1405
+
1406
+ def auto_number_70
1407
+ @auto_number_70
1408
+ end
1409
+
1410
+ # The method to set the value to auto_number_70
1411
+ # @param auto_number_70 [Fields::AutoNumber] An instance of Fields::AutoNumber
1412
+
1413
+ def auto_number_70=(auto_number_70)
1414
+ if auto_number_70!=nil and !auto_number_70.is_a? Fields::AutoNumber
1415
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: auto_number_70 EXPECTED TYPE: AutoNumber', nil, nil)
1416
+ end
1417
+ @auto_number_70 = auto_number_70
1418
+ @key_modified['auto_number'] = 1
1419
+ end
1420
+
1421
+ # The method to get the crypt
1422
+ # @return An instance of Fields::Crypt
1423
+
1424
+ def crypt
1425
+ @crypt
1426
+ end
1427
+
1428
+ # The method to set the value to crypt
1429
+ # @param crypt [Fields::Crypt] An instance of Fields::Crypt
1430
+
1431
+ def crypt=(crypt)
1432
+ if crypt!=nil and !crypt.is_a? Fields::Crypt
1433
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: crypt EXPECTED TYPE: Crypt', nil, nil)
1434
+ end
1435
+ @crypt = crypt
1436
+ @key_modified['crypt'] = 1
1437
+ end
1438
+
1439
+ # The method to get the tooltip
1440
+ # @return An instance of Fields::Tooltip
1441
+
1442
+ def tooltip
1443
+ @tooltip
1444
+ end
1445
+
1446
+ # The method to set the value to tooltip
1447
+ # @param tooltip [Fields::Tooltip] An instance of Fields::Tooltip
1448
+
1449
+ def tooltip=(tooltip)
1450
+ if tooltip!=nil and !tooltip.is_a? Fields::Tooltip
1451
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: tooltip EXPECTED TYPE: Tooltip', nil, nil)
1452
+ end
1453
+ @tooltip = tooltip
1454
+ @key_modified['tooltip'] = 1
1455
+ end
1456
+
1457
+ # The method to get the history_tracking
1458
+ # @return An instance of Fields::HistoryTracking
1459
+
1460
+ def history_tracking
1461
+ @history_tracking
1462
+ end
1463
+
1464
+ # The method to set the value to history_tracking
1465
+ # @param history_tracking [Fields::HistoryTracking] An instance of Fields::HistoryTracking
1466
+
1467
+ def history_tracking=(history_tracking)
1468
+ if history_tracking!=nil and !history_tracking.is_a? Fields::HistoryTracking
1469
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: history_tracking EXPECTED TYPE: HistoryTracking', nil, nil)
1470
+ end
1471
+ @history_tracking = history_tracking
1472
+ @key_modified['history_tracking'] = 1
1473
+ end
1474
+
1475
+ # The method to get the association_details
1476
+ # @return An instance of Fields::AssociationDetails
1477
+
1478
+ def association_details
1479
+ @association_details
1480
+ end
1481
+
1482
+ # The method to set the value to association_details
1483
+ # @param association_details [Fields::AssociationDetails] An instance of Fields::AssociationDetails
1484
+
1485
+ def association_details=(association_details)
1486
+ if association_details!=nil and !association_details.is_a? Fields::AssociationDetails
1487
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: association_details EXPECTED TYPE: AssociationDetails', nil, nil)
1488
+ end
1489
+ @association_details = association_details
1490
+ @key_modified['association_details'] = 1
1491
+ end
1492
+
1493
+ # The method to get the additional_column
1494
+ # @return A String value
1495
+
1496
+ def additional_column
1497
+ @additional_column
1498
+ end
1499
+
1500
+ # The method to set the value to additional_column
1501
+ # @param additional_column [String] A String
1502
+
1503
+ def additional_column=(additional_column)
1504
+ if additional_column!=nil and !additional_column.is_a? String
1505
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: additional_column EXPECTED TYPE: String', nil, nil)
1506
+ end
1507
+ @additional_column = additional_column
1508
+ @key_modified['additional_column'] = 1
1509
+ end
1510
+
1511
+ # The method to get the field_label
1512
+ # @return A String value
1513
+
1514
+ def field_label
1515
+ @field_label
1516
+ end
1517
+
1518
+ # The method to set the value to field_label
1519
+ # @param field_label [String] A String
1520
+
1521
+ def field_label=(field_label)
1522
+ if field_label!=nil and !field_label.is_a? String
1523
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_label EXPECTED TYPE: String', nil, nil)
1524
+ end
1525
+ @field_label = field_label
1526
+ @key_modified['field_label'] = 1
1527
+ end
1528
+
1529
+ # The method to get the global_picklist
1530
+ # @return A lang::Object value
1531
+
1532
+ def global_picklist
1533
+ @global_picklist
1534
+ end
1535
+
1536
+ # The method to set the value to global_picklist
1537
+ # @param global_picklist [lang::Object] A lang::Object
1538
+
1539
+ def global_picklist=(global_picklist)
1540
+ @global_picklist = global_picklist
1541
+ @key_modified['global_picklist'] = 1
1542
+ end
1543
+
1544
+ # The method to get the updateexistingrecords
1545
+ # @return A Boolean value
1546
+
1547
+ def updateexistingrecords
1548
+ @updateexistingrecords
1549
+ end
1550
+
1551
+ # The method to set the value to updateexistingrecords
1552
+ # @param updateexistingrecords [Boolean] A Boolean
1553
+
1554
+ def updateexistingrecords=(updateexistingrecords)
1555
+ if updateexistingrecords!=nil and ! [true, false].include?updateexistingrecords
1556
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: updateexistingrecords EXPECTED TYPE: Boolean', nil, nil)
1557
+ end
1558
+ @updateexistingrecords = updateexistingrecords
1559
+ @key_modified['_update_existing_records'] = 1
1560
+ end
1561
+
1562
+ # The method to get the number_separator
1563
+ # @return A Boolean value
1564
+
1565
+ def number_separator
1566
+ @number_separator
1567
+ end
1568
+
1569
+ # The method to set the value to number_separator
1570
+ # @param number_separator [Boolean] A Boolean
1571
+
1572
+ def number_separator=(number_separator)
1573
+ if number_separator!=nil and ! [true, false].include?number_separator
1574
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: number_separator EXPECTED TYPE: Boolean', nil, nil)
1575
+ end
1576
+ @number_separator = number_separator
1577
+ @key_modified['number_separator'] = 1
1578
+ end
1579
+
1580
+ # The method to get the textarea
1581
+ # @return An instance of Fields::Textarea
1582
+
1583
+ def textarea
1584
+ @textarea
1585
+ end
1586
+
1587
+ # The method to set the value to textarea
1588
+ # @param textarea [Fields::Textarea] An instance of Fields::Textarea
1589
+
1590
+ def textarea=(textarea)
1591
+ if textarea!=nil and !textarea.is_a? Fields::Textarea
1592
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: textarea EXPECTED TYPE: Textarea', nil, nil)
1593
+ end
1594
+ @textarea = textarea
1595
+ @key_modified['textarea'] = 1
1596
+ end
1597
+
1598
+ # The method to check if the user has modified the given key
1599
+ # @param key [String] A String
1600
+ # @return A Integer value
1601
+
1602
+ def is_key_modified(key)
1603
+ if key!=nil and !key.is_a? String
1604
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
1605
+ end
1606
+ if @key_modified.key?(key)
1607
+ return @key_modified[key]
1608
+ end
1609
+
1610
+ nil
1611
+ end
1612
+
1613
+ # The method to mark the given key as modified
1614
+ # @param key [String] A String
1615
+ # @param modification [Integer] A Integer
1616
+
1617
+ def set_key_modified(key, modification)
1618
+ if key!=nil and !key.is_a? String
1619
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
1620
+ end
1621
+ if modification!=nil and !modification.is_a? Integer
1622
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
1623
+ end
1624
+ @key_modified[key] = modification
1625
+ end
1626
+
1627
+ end
1628
+ end
1629
+ end