ZOHOCRMSDK5_0 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1086) hide show
  1. checksums.yaml +7 -0
  2. data/src/ZOHOCRMSDK5_0.rb +1082 -0
  3. data/src/com/zoho/api/authenticator/oauth_token.rb +425 -0
  4. data/src/com/zoho/api/authenticator/store/db_store.rb +279 -0
  5. data/src/com/zoho/api/authenticator/store/file_store.rb +280 -0
  6. data/src/com/zoho/api/authenticator/store/token_store.rb +31 -0
  7. data/src/com/zoho/api/authenticator/token.rb +14 -0
  8. data/src/com/zoho/api/logger/sdk_logger.rb +88 -0
  9. data/src/com/zoho/crm/api/appointment_preference/action_handler.rb +12 -0
  10. data/src/com/zoho/crm/api/appointment_preference/action_response.rb +12 -0
  11. data/src/com/zoho/crm/api/appointment_preference/action_wrapper.rb +65 -0
  12. data/src/com/zoho/crm/api/appointment_preference/api_exception.rb +127 -0
  13. data/src/com/zoho/crm/api/appointment_preference/appointment_preference.rb +159 -0
  14. data/src/com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb +65 -0
  15. data/src/com/zoho/crm/api/appointment_preference/body_wrapper.rb +63 -0
  16. data/src/com/zoho/crm/api/appointment_preference/field.rb +82 -0
  17. data/src/com/zoho/crm/api/appointment_preference/field_mappings.rb +102 -0
  18. data/src/com/zoho/crm/api/appointment_preference/layout.rb +82 -0
  19. data/src/com/zoho/crm/api/appointment_preference/response_handler.rb +12 -0
  20. data/src/com/zoho/crm/api/appointment_preference/response_wrapper.rb +65 -0
  21. data/src/com/zoho/crm/api/appointment_preference/success_response.rb +123 -0
  22. data/src/com/zoho/crm/api/assignment_rules/action_response.rb +12 -0
  23. data/src/com/zoho/crm/api/assignment_rules/action_wrapper.rb +63 -0
  24. data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +125 -0
  25. data/src/com/zoho/crm/api/assignment_rules/assignment_rules.rb +235 -0
  26. data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +75 -0
  27. data/src/com/zoho/crm/api/assignment_rules/created_by.rb +122 -0
  28. data/src/com/zoho/crm/api/assignment_rules/default_assignee.rb +82 -0
  29. data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +12 -0
  30. data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +65 -0
  31. data/src/com/zoho/crm/api/assignment_rules/success_response.rb +123 -0
  32. data/src/com/zoho/crm/api/associate_email/action_handler.rb +12 -0
  33. data/src/com/zoho/crm/api/associate_email/action_response.rb +12 -0
  34. data/src/com/zoho/crm/api/associate_email/action_wrapper.rb +65 -0
  35. data/src/com/zoho/crm/api/associate_email/api_exception.rb +125 -0
  36. data/src/com/zoho/crm/api/associate_email/associate_email.rb +273 -0
  37. data/src/com/zoho/crm/api/associate_email/associate_email_operations.rb +49 -0
  38. data/src/com/zoho/crm/api/associate_email/attachments.rb +63 -0
  39. data/src/com/zoho/crm/api/associate_email/available.rb +101 -0
  40. data/src/com/zoho/crm/api/associate_email/body_wrapper.rb +63 -0
  41. data/src/com/zoho/crm/api/associate_email/from.rb +82 -0
  42. data/src/com/zoho/crm/api/associate_email/linked_record.rb +82 -0
  43. data/src/com/zoho/crm/api/associate_email/module_map.rb +82 -0
  44. data/src/com/zoho/crm/api/associate_email/record.rb +101 -0
  45. data/src/com/zoho/crm/api/associate_email/success_response.rb +123 -0
  46. data/src/com/zoho/crm/api/associate_email/to.rb +82 -0
  47. data/src/com/zoho/crm/api/attachments/action_handler.rb +12 -0
  48. data/src/com/zoho/crm/api/attachments/action_response.rb +12 -0
  49. data/src/com/zoho/crm/api/attachments/action_wrapper.rb +65 -0
  50. data/src/com/zoho/crm/api/attachments/api_exception.rb +125 -0
  51. data/src/com/zoho/crm/api/attachments/attachment.rb +368 -0
  52. data/src/com/zoho/crm/api/attachments/attachments_operations.rb +243 -0
  53. data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
  54. data/src/com/zoho/crm/api/attachments/info.rb +120 -0
  55. data/src/com/zoho/crm/api/attachments/owner.rb +82 -0
  56. data/src/com/zoho/crm/api/attachments/parent_id.rb +82 -0
  57. data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
  58. data/src/com/zoho/crm/api/attachments/response_wrapper.rb +84 -0
  59. data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
  60. data/src/com/zoho/crm/api/available_currencies/api_exception.rb +123 -0
  61. data/src/com/zoho/crm/api/available_currencies/available_currencies_operations.rb +30 -0
  62. data/src/com/zoho/crm/api/available_currencies/currency.rb +177 -0
  63. data/src/com/zoho/crm/api/available_currencies/response_handler.rb +12 -0
  64. data/src/com/zoho/crm/api/available_currencies/response_wrapper.rb +65 -0
  65. data/src/com/zoho/crm/api/backup/action_handler.rb +12 -0
  66. data/src/com/zoho/crm/api/backup/action_response.rb +12 -0
  67. data/src/com/zoho/crm/api/backup/action_wrapper.rb +65 -0
  68. data/src/com/zoho/crm/api/backup/api_exception.rb +127 -0
  69. data/src/com/zoho/crm/api/backup/backup.rb +158 -0
  70. data/src/com/zoho/crm/api/backup/backup_operations.rb +136 -0
  71. data/src/com/zoho/crm/api/backup/body_wrapper.rb +65 -0
  72. data/src/com/zoho/crm/api/backup/file_body_wrapper.rb +66 -0
  73. data/src/com/zoho/crm/api/backup/history.rb +196 -0
  74. data/src/com/zoho/crm/api/backup/history_wrapper.rb +84 -0
  75. data/src/com/zoho/crm/api/backup/info.rb +120 -0
  76. data/src/com/zoho/crm/api/backup/requester.rb +101 -0
  77. data/src/com/zoho/crm/api/backup/response_handler.rb +12 -0
  78. data/src/com/zoho/crm/api/backup/success_response.rb +123 -0
  79. data/src/com/zoho/crm/api/backup/urls.rb +101 -0
  80. data/src/com/zoho/crm/api/backup/urls_wrapper.rb +65 -0
  81. data/src/com/zoho/crm/api/blueprint/action_handler.rb +12 -0
  82. data/src/com/zoho/crm/api/blueprint/api_exception.rb +125 -0
  83. data/src/com/zoho/crm/api/blueprint/association_details.rb +82 -0
  84. data/src/com/zoho/crm/api/blueprint/auto_number.rb +101 -0
  85. data/src/com/zoho/crm/api/blueprint/blue_print.rb +121 -0
  86. data/src/com/zoho/crm/api/blueprint/blueprint_operations.rb +69 -0
  87. data/src/com/zoho/crm/api/blueprint/body_wrapper.rb +63 -0
  88. data/src/com/zoho/crm/api/blueprint/convert_mapping.rb +101 -0
  89. data/src/com/zoho/crm/api/blueprint/crypt.rb +120 -0
  90. data/src/com/zoho/crm/api/blueprint/currency.rb +82 -0
  91. data/src/com/zoho/crm/api/blueprint/escalation.rb +82 -0
  92. data/src/com/zoho/crm/api/blueprint/field.rb +924 -0
  93. data/src/com/zoho/crm/api/blueprint/formula.rb +82 -0
  94. data/src/com/zoho/crm/api/blueprint/layout.rb +82 -0
  95. data/src/com/zoho/crm/api/blueprint/lookup_field.rb +82 -0
  96. data/src/com/zoho/crm/api/blueprint/module.rb +120 -0
  97. data/src/com/zoho/crm/api/blueprint/module_fields.rb +120 -0
  98. data/src/com/zoho/crm/api/blueprint/module_mapping.rb +101 -0
  99. data/src/com/zoho/crm/api/blueprint/multi_select_lookup.rb +158 -0
  100. data/src/com/zoho/crm/api/blueprint/next_transition.rb +120 -0
  101. data/src/com/zoho/crm/api/blueprint/process_info.rb +253 -0
  102. data/src/com/zoho/crm/api/blueprint/profile.rb +101 -0
  103. data/src/com/zoho/crm/api/blueprint/response_handler.rb +12 -0
  104. data/src/com/zoho/crm/api/blueprint/response_wrapper.rb +65 -0
  105. data/src/com/zoho/crm/api/blueprint/success_response.rb +123 -0
  106. data/src/com/zoho/crm/api/blueprint/tool_tip.rb +82 -0
  107. data/src/com/zoho/crm/api/blueprint/transition.rb +273 -0
  108. data/src/com/zoho/crm/api/blueprint/view_type.rb +120 -0
  109. data/src/com/zoho/crm/api/bulk_read/action_handler.rb +12 -0
  110. data/src/com/zoho/crm/api/bulk_read/action_response.rb +12 -0
  111. data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +84 -0
  112. data/src/com/zoho/crm/api/bulk_read/api_exception.rb +127 -0
  113. data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +76 -0
  114. data/src/com/zoho/crm/api/bulk_read/call_back.rb +83 -0
  115. data/src/com/zoho/crm/api/bulk_read/criteria.rb +157 -0
  116. data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
  117. data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
  118. data/src/com/zoho/crm/api/bulk_read/query.rb +160 -0
  119. data/src/com/zoho/crm/api/bulk_read/request_wrapper.rb +102 -0
  120. data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
  121. data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
  122. data/src/com/zoho/crm/api/bulk_read/result.rb +139 -0
  123. data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
  124. data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
  125. data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
  126. data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
  127. data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
  128. data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
  129. data/src/com/zoho/crm/api/bulk_write/default_value.rb +98 -0
  130. data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +158 -0
  131. data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
  132. data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
  133. data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +140 -0
  134. data/src/com/zoho/crm/api/bulk_write/resource.rb +217 -0
  135. data/src/com/zoho/crm/api/bulk_write/response_handler.rb +12 -0
  136. data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +12 -0
  137. data/src/com/zoho/crm/api/bulk_write/result.rb +63 -0
  138. data/src/com/zoho/crm/api/bulk_write/success_response.rb +123 -0
  139. data/src/com/zoho/crm/api/business_hours/action_handler.rb +12 -0
  140. data/src/com/zoho/crm/api/business_hours/action_response.rb +12 -0
  141. data/src/com/zoho/crm/api/business_hours/action_wrapper.rb +65 -0
  142. data/src/com/zoho/crm/api/business_hours/api_exception.rb +127 -0
  143. data/src/com/zoho/crm/api/business_hours/body_wrapper.rb +63 -0
  144. data/src/com/zoho/crm/api/business_hours/break_hours_custom_timing.rb +83 -0
  145. data/src/com/zoho/crm/api/business_hours/business_hours.rb +178 -0
  146. data/src/com/zoho/crm/api/business_hours/business_hours_created.rb +123 -0
  147. data/src/com/zoho/crm/api/business_hours/business_hours_operations.rb +90 -0
  148. data/src/com/zoho/crm/api/business_hours/response_handler.rb +12 -0
  149. data/src/com/zoho/crm/api/business_hours/response_wrapper.rb +65 -0
  150. data/src/com/zoho/crm/api/cancel_meetings/action_handler.rb +12 -0
  151. data/src/com/zoho/crm/api/cancel_meetings/action_response.rb +12 -0
  152. data/src/com/zoho/crm/api/cancel_meetings/action_wrapper.rb +65 -0
  153. data/src/com/zoho/crm/api/cancel_meetings/api_exception.rb +125 -0
  154. data/src/com/zoho/crm/api/cancel_meetings/body_wrapper.rb +63 -0
  155. data/src/com/zoho/crm/api/cancel_meetings/cancel_meetings_operations.rb +43 -0
  156. data/src/com/zoho/crm/api/cancel_meetings/notify.rb +63 -0
  157. data/src/com/zoho/crm/api/cancel_meetings/success_response.rb +123 -0
  158. data/src/com/zoho/crm/api/change_owner/action_handler.rb +12 -0
  159. data/src/com/zoho/crm/api/change_owner/action_response.rb +12 -0
  160. data/src/com/zoho/crm/api/change_owner/action_wrapper.rb +65 -0
  161. data/src/com/zoho/crm/api/change_owner/api_exception.rb +125 -0
  162. data/src/com/zoho/crm/api/change_owner/body_wrapper.rb +101 -0
  163. data/src/com/zoho/crm/api/change_owner/change_owner_operations.rb +71 -0
  164. data/src/com/zoho/crm/api/change_owner/error_details.rb +82 -0
  165. data/src/com/zoho/crm/api/change_owner/mass_wrapper.rb +122 -0
  166. data/src/com/zoho/crm/api/change_owner/owner.rb +63 -0
  167. data/src/com/zoho/crm/api/change_owner/related_modules.rb +82 -0
  168. data/src/com/zoho/crm/api/change_owner/success_response.rb +123 -0
  169. data/src/com/zoho/crm/api/contact_roles/action_handler.rb +12 -0
  170. data/src/com/zoho/crm/api/contact_roles/action_response.rb +12 -0
  171. data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +65 -0
  172. data/src/com/zoho/crm/api/contact_roles/api_exception.rb +127 -0
  173. data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +65 -0
  174. data/src/com/zoho/crm/api/contact_roles/contact_role.rb +101 -0
  175. data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +164 -0
  176. data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
  177. data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
  178. data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
  179. data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
  180. data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
  181. data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
  182. data/src/com/zoho/crm/api/currencies/base_currency.rb +196 -0
  183. data/src/com/zoho/crm/api/currencies/base_currency_action_response.rb +12 -0
  184. data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +65 -0
  185. data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +63 -0
  186. data/src/com/zoho/crm/api/currencies/body_wrapper.rb +65 -0
  187. data/src/com/zoho/crm/api/currencies/currencies_operations.rb +157 -0
  188. data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
  189. data/src/com/zoho/crm/api/currencies/currency_format.rb +102 -0
  190. data/src/com/zoho/crm/api/currencies/disable_success.rb +121 -0
  191. data/src/com/zoho/crm/api/currencies/error_details.rb +82 -0
  192. data/src/com/zoho/crm/api/currencies/format.rb +102 -0
  193. data/src/com/zoho/crm/api/currencies/response_handler.rb +12 -0
  194. data/src/com/zoho/crm/api/currencies/success_response.rb +125 -0
  195. data/src/com/zoho/crm/api/custom_views/action_handler.rb +12 -0
  196. data/src/com/zoho/crm/api/custom_views/action_response.rb +12 -0
  197. data/src/com/zoho/crm/api/custom_views/action_wrapper.rb +63 -0
  198. data/src/com/zoho/crm/api/custom_views/api_exception.rb +127 -0
  199. data/src/com/zoho/crm/api/custom_views/body_wrapper.rb +84 -0
  200. data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
  201. data/src/com/zoho/crm/api/custom_views/custom_view.rb +463 -0
  202. data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
  203. data/src/com/zoho/crm/api/custom_views/field.rb +82 -0
  204. data/src/com/zoho/crm/api/custom_views/fields.rb +101 -0
  205. data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
  206. data/src/com/zoho/crm/api/custom_views/owner.rb +101 -0
  207. data/src/com/zoho/crm/api/custom_views/pin_fields.rb +83 -0
  208. data/src/com/zoho/crm/api/custom_views/pin_unpin_fields.rb +63 -0
  209. data/src/com/zoho/crm/api/custom_views/response_handler.rb +12 -0
  210. data/src/com/zoho/crm/api/custom_views/shared_to.rb +121 -0
  211. data/src/com/zoho/crm/api/custom_views/sort_by.rb +82 -0
  212. data/src/com/zoho/crm/api/custom_views/success_response.rb +123 -0
  213. data/src/com/zoho/crm/api/custom_views/translation.rb +120 -0
  214. data/src/com/zoho/crm/api/dc/au_datacenter.rb +21 -0
  215. data/src/com/zoho/crm/api/dc/cn_datacenter.rb +21 -0
  216. data/src/com/zoho/crm/api/dc/datacenter.rb +70 -0
  217. data/src/com/zoho/crm/api/dc/eu_datacenter.rb +21 -0
  218. data/src/com/zoho/crm/api/dc/in_datacenter.rb +21 -0
  219. data/src/com/zoho/crm/api/dc/jp_datacenter.rb +21 -0
  220. data/src/com/zoho/crm/api/dc/us_datacenter.rb +21 -0
  221. data/src/com/zoho/crm/api/deal_contact_roles/action_handler.rb +12 -0
  222. data/src/com/zoho/crm/api/deal_contact_roles/action_response.rb +12 -0
  223. data/src/com/zoho/crm/api/deal_contact_roles/action_wrapper.rb +65 -0
  224. data/src/com/zoho/crm/api/deal_contact_roles/api_exception.rb +127 -0
  225. data/src/com/zoho/crm/api/deal_contact_roles/body_wrapper.rb +84 -0
  226. data/src/com/zoho/crm/api/deal_contact_roles/contact_role.rb +82 -0
  227. data/src/com/zoho/crm/api/deal_contact_roles/data.rb +154 -0
  228. data/src/com/zoho/crm/api/deal_contact_roles/deal_contact_roles_operations.rb +141 -0
  229. data/src/com/zoho/crm/api/deal_contact_roles/error_details.rb +82 -0
  230. data/src/com/zoho/crm/api/deal_contact_roles/info.rb +177 -0
  231. data/src/com/zoho/crm/api/deal_contact_roles/response_handler.rb +12 -0
  232. data/src/com/zoho/crm/api/deal_contact_roles/success_response.rb +123 -0
  233. data/src/com/zoho/crm/api/definition/api_exception.rb +121 -0
  234. data/src/com/zoho/crm/api/definition/definition.rb +101 -0
  235. data/src/com/zoho/crm/api/definition/minified_property.rb +158 -0
  236. data/src/com/zoho/crm/api/definition/minified_property1.rb +139 -0
  237. data/src/com/zoho/crm/api/definition/property.rb +272 -0
  238. data/src/com/zoho/crm/api/definition/response_wrapper.rb +63 -0
  239. data/src/com/zoho/crm/api/download_attachments/api_exception.rb +123 -0
  240. data/src/com/zoho/crm/api/download_attachments/download_attachments_operations.rb +60 -0
  241. data/src/com/zoho/crm/api/download_attachments/file_body_wrapper.rb +66 -0
  242. data/src/com/zoho/crm/api/download_attachments/response_handler.rb +12 -0
  243. data/src/com/zoho/crm/api/download_inline_images/api_exception.rb +123 -0
  244. data/src/com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb +64 -0
  245. data/src/com/zoho/crm/api/download_inline_images/file_body_wrapper.rb +66 -0
  246. data/src/com/zoho/crm/api/download_inline_images/response_handler.rb +12 -0
  247. data/src/com/zoho/crm/api/email_compose_meta/compose_settings.rb +120 -0
  248. data/src/com/zoho/crm/api/email_compose_meta/data.rb +63 -0
  249. data/src/com/zoho/crm/api/email_compose_meta/data_map.rb +158 -0
  250. data/src/com/zoho/crm/api/email_compose_meta/default_form.rb +120 -0
  251. data/src/com/zoho/crm/api/email_compose_meta/features_available.rb +349 -0
  252. data/src/com/zoho/crm/api/email_compose_meta/from_address.rb +140 -0
  253. data/src/com/zoho/crm/api/email_compose_meta/user.rb +139 -0
  254. data/src/com/zoho/crm/api/email_related_records/api_exception.rb +123 -0
  255. data/src/com/zoho/crm/api/email_related_records/attachments.rb +101 -0
  256. data/src/com/zoho/crm/api/email_related_records/email.rb +483 -0
  257. data/src/com/zoho/crm/api/email_related_records/email_related_records_operations.rb +89 -0
  258. data/src/com/zoho/crm/api/email_related_records/info.rb +139 -0
  259. data/src/com/zoho/crm/api/email_related_records/linked_record.rb +82 -0
  260. data/src/com/zoho/crm/api/email_related_records/module.rb +82 -0
  261. data/src/com/zoho/crm/api/email_related_records/response_handler.rb +12 -0
  262. data/src/com/zoho/crm/api/email_related_records/response_wrapper.rb +84 -0
  263. data/src/com/zoho/crm/api/email_related_records/status.rb +158 -0
  264. data/src/com/zoho/crm/api/email_related_records/user_details.rb +82 -0
  265. data/src/com/zoho/crm/api/email_sharing/api_exception.rb +123 -0
  266. data/src/com/zoho/crm/api/email_sharing/email_sharing_operations.rb +44 -0
  267. data/src/com/zoho/crm/api/email_sharing/get_email_sharing.rb +82 -0
  268. data/src/com/zoho/crm/api/email_sharing/response_handler.rb +12 -0
  269. data/src/com/zoho/crm/api/email_sharing/response_wrapper.rb +65 -0
  270. data/src/com/zoho/crm/api/email_sharing/share_from_user.rb +101 -0
  271. data/src/com/zoho/crm/api/email_templates/api_exception.rb +123 -0
  272. data/src/com/zoho/crm/api/email_templates/attachment.rb +120 -0
  273. data/src/com/zoho/crm/api/email_templates/email_template.rb +433 -0
  274. data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +63 -0
  275. data/src/com/zoho/crm/api/email_templates/info.rb +120 -0
  276. data/src/com/zoho/crm/api/email_templates/last_version_statistics.rb +158 -0
  277. data/src/com/zoho/crm/api/email_templates/response_handler.rb +12 -0
  278. data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +84 -0
  279. data/src/com/zoho/crm/api/entity_scores/api_exception.rb +123 -0
  280. data/src/com/zoho/crm/api/entity_scores/entity_scores.rb +253 -0
  281. data/src/com/zoho/crm/api/entity_scores/entity_scores_operations.rb +70 -0
  282. data/src/com/zoho/crm/api/entity_scores/entity_structure.rb +84 -0
  283. data/src/com/zoho/crm/api/entity_scores/entity_structure_group.rb +12 -0
  284. data/src/com/zoho/crm/api/entity_scores/entity_structure_with_module.rb +103 -0
  285. data/src/com/zoho/crm/api/entity_scores/info.rb +215 -0
  286. data/src/com/zoho/crm/api/entity_scores/module_structure.rb +82 -0
  287. data/src/com/zoho/crm/api/entity_scores/response_handler.rb +12 -0
  288. data/src/com/zoho/crm/api/entity_scores/response_wrapper.rb +84 -0
  289. data/src/com/zoho/crm/api/entity_scores/scoring_rule_structure.rb +82 -0
  290. data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
  291. data/src/com/zoho/crm/api/field_attachments/api_exception.rb +123 -0
  292. data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +54 -0
  293. data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +66 -0
  294. data/src/com/zoho/crm/api/field_attachments/response_handler.rb +12 -0
  295. data/src/com/zoho/crm/api/field_map_dependency/action_handler.rb +12 -0
  296. data/src/com/zoho/crm/api/field_map_dependency/action_response.rb +12 -0
  297. data/src/com/zoho/crm/api/field_map_dependency/action_wrapper.rb +65 -0
  298. data/src/com/zoho/crm/api/field_map_dependency/api_exception.rb +127 -0
  299. data/src/com/zoho/crm/api/field_map_dependency/body_wrapper.rb +84 -0
  300. data/src/com/zoho/crm/api/field_map_dependency/child.rb +82 -0
  301. data/src/com/zoho/crm/api/field_map_dependency/field_map_dependency_operations.rb +178 -0
  302. data/src/com/zoho/crm/api/field_map_dependency/info.rb +120 -0
  303. data/src/com/zoho/crm/api/field_map_dependency/map_dependency.rb +215 -0
  304. data/src/com/zoho/crm/api/field_map_dependency/parent.rb +82 -0
  305. data/src/com/zoho/crm/api/field_map_dependency/pick_list_mapping.rb +120 -0
  306. data/src/com/zoho/crm/api/field_map_dependency/picklist_map.rb +120 -0
  307. data/src/com/zoho/crm/api/field_map_dependency/response_handler.rb +12 -0
  308. data/src/com/zoho/crm/api/field_map_dependency/sub_module.rb +82 -0
  309. data/src/com/zoho/crm/api/field_map_dependency/success_response.rb +123 -0
  310. data/src/com/zoho/crm/api/fields/action_response.rb +12 -0
  311. data/src/com/zoho/crm/api/fields/action_wrapper.rb +63 -0
  312. data/src/com/zoho/crm/api/fields/api_exception.rb +125 -0
  313. data/src/com/zoho/crm/api/fields/association_details.rb +83 -0
  314. data/src/com/zoho/crm/api/fields/auto_number.rb +120 -0
  315. data/src/com/zoho/crm/api/fields/body_wrapper.rb +65 -0
  316. data/src/com/zoho/crm/api/fields/convert_mapping.rb +101 -0
  317. data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
  318. data/src/com/zoho/crm/api/fields/currency.rb +83 -0
  319. data/src/com/zoho/crm/api/fields/email_parser.rb +82 -0
  320. data/src/com/zoho/crm/api/fields/expression.rb +101 -0
  321. data/src/com/zoho/crm/api/fields/external.rb +102 -0
  322. data/src/com/zoho/crm/api/fields/fields.rb +1355 -0
  323. data/src/com/zoho/crm/api/fields/fields_operations.rb +103 -0
  324. data/src/com/zoho/crm/api/fields/file_upolad_option.rb +82 -0
  325. data/src/com/zoho/crm/api/fields/forecast_category.rb +82 -0
  326. data/src/com/zoho/crm/api/fields/formula.rb +83 -0
  327. data/src/com/zoho/crm/api/fields/function_parameter.rb +63 -0
  328. data/src/com/zoho/crm/api/fields/hipaa_compliance.rb +82 -0
  329. data/src/com/zoho/crm/api/fields/history_tracking.rb +83 -0
  330. data/src/com/zoho/crm/api/fields/history_tracking_module.rb +159 -0
  331. data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
  332. data/src/com/zoho/crm/api/fields/maps.rb +82 -0
  333. data/src/com/zoho/crm/api/fields/minified_field.rb +82 -0
  334. data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +102 -0
  335. data/src/com/zoho/crm/api/fields/multiselectlookup.rb +216 -0
  336. data/src/com/zoho/crm/api/fields/operation_type.rb +120 -0
  337. data/src/com/zoho/crm/api/fields/pick_list_value.rb +273 -0
  338. data/src/com/zoho/crm/api/fields/private.rb +101 -0
  339. data/src/com/zoho/crm/api/fields/profile.rb +101 -0
  340. data/src/com/zoho/crm/api/fields/query_details.rb +82 -0
  341. data/src/com/zoho/crm/api/fields/refer_from_field.rb +82 -0
  342. data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
  343. data/src/com/zoho/crm/api/fields/rollup_criteria.rb +98 -0
  344. data/src/com/zoho/crm/api/fields/rollup_summary.rb +139 -0
  345. data/src/com/zoho/crm/api/fields/show_fields.rb +82 -0
  346. data/src/com/zoho/crm/api/fields/success.rb +123 -0
  347. data/src/com/zoho/crm/api/fields/tooltip.rb +83 -0
  348. data/src/com/zoho/crm/api/fields/unique.rb +63 -0
  349. data/src/com/zoho/crm/api/fields/view_type.rb +120 -0
  350. data/src/com/zoho/crm/api/files/action_handler.rb +12 -0
  351. data/src/com/zoho/crm/api/files/action_response.rb +12 -0
  352. data/src/com/zoho/crm/api/files/action_wrapper.rb +65 -0
  353. data/src/com/zoho/crm/api/files/api_exception.rb +125 -0
  354. data/src/com/zoho/crm/api/files/body_wrapper.rb +64 -0
  355. data/src/com/zoho/crm/api/files/file_body_wrapper.rb +66 -0
  356. data/src/com/zoho/crm/api/files/files_operations.rb +77 -0
  357. data/src/com/zoho/crm/api/files/response_handler.rb +12 -0
  358. data/src/com/zoho/crm/api/files/success_response.rb +123 -0
  359. data/src/com/zoho/crm/api/fiscal_year/action_handler.rb +12 -0
  360. data/src/com/zoho/crm/api/fiscal_year/action_response.rb +12 -0
  361. data/src/com/zoho/crm/api/fiscal_year/action_wrapper.rb +65 -0
  362. data/src/com/zoho/crm/api/fiscal_year/api_exception.rb +127 -0
  363. data/src/com/zoho/crm/api/fiscal_year/body_wrapper.rb +63 -0
  364. data/src/com/zoho/crm/api/fiscal_year/fiscal_year_operations.rb +51 -0
  365. data/src/com/zoho/crm/api/fiscal_year/response_handler.rb +12 -0
  366. data/src/com/zoho/crm/api/fiscal_year/response_wrapper.rb +65 -0
  367. data/src/com/zoho/crm/api/fiscal_year/success_response.rb +123 -0
  368. data/src/com/zoho/crm/api/fiscal_year/year.rb +102 -0
  369. data/src/com/zoho/crm/api/from_addresses/address.rb +139 -0
  370. data/src/com/zoho/crm/api/from_addresses/api_exception.rb +123 -0
  371. data/src/com/zoho/crm/api/from_addresses/from_addresses_operations.rb +30 -0
  372. data/src/com/zoho/crm/api/from_addresses/response_handler.rb +12 -0
  373. data/src/com/zoho/crm/api/from_addresses/response_wrapper.rb +65 -0
  374. data/src/com/zoho/crm/api/header.rb +12 -0
  375. data/src/com/zoho/crm/api/header_map.rb +57 -0
  376. data/src/com/zoho/crm/api/hipaa_compliance/action_handler.rb +12 -0
  377. data/src/com/zoho/crm/api/hipaa_compliance/action_wrapper.rb +63 -0
  378. data/src/com/zoho/crm/api/hipaa_compliance/api_exception.rb +123 -0
  379. data/src/com/zoho/crm/api/hipaa_compliance/hipaa_compliance.rb +158 -0
  380. data/src/com/zoho/crm/api/hipaa_compliance/modules.rb +82 -0
  381. data/src/com/zoho/crm/api/hipaa_compliance/response_wrapper.rb +63 -0
  382. data/src/com/zoho/crm/api/hipaa_compliance/success_response.rb +123 -0
  383. data/src/com/zoho/crm/api/holidays/action_handler.rb +12 -0
  384. data/src/com/zoho/crm/api/holidays/action_response.rb +12 -0
  385. data/src/com/zoho/crm/api/holidays/action_wrapper.rb +65 -0
  386. data/src/com/zoho/crm/api/holidays/api_exception.rb +129 -0
  387. data/src/com/zoho/crm/api/holidays/body_wrapper.rb +12 -0
  388. data/src/com/zoho/crm/api/holidays/business_holiday.rb +102 -0
  389. data/src/com/zoho/crm/api/holidays/create_business_holiday.rb +65 -0
  390. data/src/com/zoho/crm/api/holidays/create_shift_holiday.rb +65 -0
  391. data/src/com/zoho/crm/api/holidays/holiday.rb +158 -0
  392. data/src/com/zoho/crm/api/holidays/holidays.rb +63 -0
  393. data/src/com/zoho/crm/api/holidays/holidays_operations.rb +188 -0
  394. data/src/com/zoho/crm/api/holidays/info.rb +120 -0
  395. data/src/com/zoho/crm/api/holidays/resonse_handler.rb +12 -0
  396. data/src/com/zoho/crm/api/holidays/response_handler.rb +12 -0
  397. data/src/com/zoho/crm/api/holidays/response_wrapper.rb +86 -0
  398. data/src/com/zoho/crm/api/holidays/shift_holiday.rb +121 -0
  399. data/src/com/zoho/crm/api/holidays/shift_hour.rb +82 -0
  400. data/src/com/zoho/crm/api/holidays/success_response.rb +123 -0
  401. data/src/com/zoho/crm/api/initializer.rb +232 -0
  402. data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +123 -0
  403. data/src/com/zoho/crm/api/inventory_templates/folder.rb +82 -0
  404. data/src/com/zoho/crm/api/inventory_templates/info.rb +120 -0
  405. data/src/com/zoho/crm/api/inventory_templates/inventory_template.rb +316 -0
  406. data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +75 -0
  407. data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +12 -0
  408. data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +84 -0
  409. data/src/com/zoho/crm/api/isc_signature/signature.rb +60 -0
  410. data/src/com/zoho/crm/api/layouts/actions_allowed.rb +177 -0
  411. data/src/com/zoho/crm/api/layouts/api_exception.rb +123 -0
  412. data/src/com/zoho/crm/api/layouts/convert_mapping.rb +139 -0
  413. data/src/com/zoho/crm/api/layouts/deal_field.rb +120 -0
  414. data/src/com/zoho/crm/api/layouts/deal_layout_mapping.rb +103 -0
  415. data/src/com/zoho/crm/api/layouts/default_assignment_view.rb +101 -0
  416. data/src/com/zoho/crm/api/layouts/default_view.rb +101 -0
  417. data/src/com/zoho/crm/api/layouts/layouts.rb +425 -0
  418. data/src/com/zoho/crm/api/layouts/layouts_operations.rb +75 -0
  419. data/src/com/zoho/crm/api/layouts/minified_layout.rb +82 -0
  420. data/src/com/zoho/crm/api/layouts/profiles.rb +139 -0
  421. data/src/com/zoho/crm/api/layouts/properties.rb +101 -0
  422. data/src/com/zoho/crm/api/layouts/response_handler.rb +12 -0
  423. data/src/com/zoho/crm/api/layouts/response_wrapper.rb +65 -0
  424. data/src/com/zoho/crm/api/layouts/section_field.rb +1456 -0
  425. data/src/com/zoho/crm/api/layouts/section_subform_field.rb +101 -0
  426. data/src/com/zoho/crm/api/layouts/sections.rb +272 -0
  427. data/src/com/zoho/crm/api/layouts/tooltip.rb +83 -0
  428. data/src/com/zoho/crm/api/mail_merge/action_response.rb +12 -0
  429. data/src/com/zoho/crm/api/mail_merge/action_wrapper.rb +63 -0
  430. data/src/com/zoho/crm/api/mail_merge/address.rb +63 -0
  431. data/src/com/zoho/crm/api/mail_merge/address_value_map.rb +63 -0
  432. data/src/com/zoho/crm/api/mail_merge/api_exception.rb +121 -0
  433. data/src/com/zoho/crm/api/mail_merge/download_mail_merge.rb +121 -0
  434. data/src/com/zoho/crm/api/mail_merge/download_mail_merge_wrapper.rb +63 -0
  435. data/src/com/zoho/crm/api/mail_merge/mail_merge.rb +216 -0
  436. data/src/com/zoho/crm/api/mail_merge/mail_merge_template.rb +82 -0
  437. data/src/com/zoho/crm/api/mail_merge/mail_merge_wrapper.rb +63 -0
  438. data/src/com/zoho/crm/api/mail_merge/sign_action_response.rb +12 -0
  439. data/src/com/zoho/crm/api/mail_merge/sign_action_wrapper.rb +63 -0
  440. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge.rb +120 -0
  441. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge_wrapper.rb +63 -0
  442. data/src/com/zoho/crm/api/mail_merge/signers.rb +102 -0
  443. data/src/com/zoho/crm/api/mail_merge/success_response.rb +125 -0
  444. data/src/com/zoho/crm/api/mass_change_owner/action_handler.rb +12 -0
  445. data/src/com/zoho/crm/api/mass_change_owner/action_response.rb +12 -0
  446. data/src/com/zoho/crm/api/mass_change_owner/action_wrapper.rb +65 -0
  447. data/src/com/zoho/crm/api/mass_change_owner/api_exception.rb +125 -0
  448. data/src/com/zoho/crm/api/mass_change_owner/body_wrapper.rb +101 -0
  449. data/src/com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb +76 -0
  450. data/src/com/zoho/crm/api/mass_change_owner/owner.rb +63 -0
  451. data/src/com/zoho/crm/api/mass_change_owner/response_handler.rb +12 -0
  452. data/src/com/zoho/crm/api/mass_change_owner/response_wrapper.rb +65 -0
  453. data/src/com/zoho/crm/api/mass_change_owner/status.rb +140 -0
  454. data/src/com/zoho/crm/api/mass_change_owner/success_response.rb +123 -0
  455. data/src/com/zoho/crm/api/mass_change_owner/territory.rb +82 -0
  456. data/src/com/zoho/crm/api/mass_convert/action_response.rb +12 -0
  457. data/src/com/zoho/crm/api/mass_convert/api_exception.rb +125 -0
  458. data/src/com/zoho/crm/api/mass_convert/assign_to.rb +63 -0
  459. data/src/com/zoho/crm/api/mass_convert/convert.rb +197 -0
  460. data/src/com/zoho/crm/api/mass_convert/error_details.rb +82 -0
  461. data/src/com/zoho/crm/api/mass_convert/mass_convert_operations.rb +68 -0
  462. data/src/com/zoho/crm/api/mass_convert/move_attachments_to.rb +82 -0
  463. data/src/com/zoho/crm/api/mass_convert/portal_user_type.rb +82 -0
  464. data/src/com/zoho/crm/api/mass_convert/related_module.rb +82 -0
  465. data/src/com/zoho/crm/api/mass_convert/response_handler.rb +12 -0
  466. data/src/com/zoho/crm/api/mass_convert/response_wrapper.rb +65 -0
  467. data/src/com/zoho/crm/api/mass_convert/status.rb +139 -0
  468. data/src/com/zoho/crm/api/mass_convert/success_response.rb +123 -0
  469. data/src/com/zoho/crm/api/mass_delete_cvid/action_handler.rb +12 -0
  470. data/src/com/zoho/crm/api/mass_delete_cvid/action_response.rb +12 -0
  471. data/src/com/zoho/crm/api/mass_delete_cvid/action_wrapper.rb +65 -0
  472. data/src/com/zoho/crm/api/mass_delete_cvid/api_exception.rb +127 -0
  473. data/src/com/zoho/crm/api/mass_delete_cvid/cvid_body_wrapper.rb +82 -0
  474. data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_cvid_operations.rb +95 -0
  475. data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_scheduled.rb +123 -0
  476. data/src/com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb +82 -0
  477. data/src/com/zoho/crm/api/mass_delete_cvid/response_handler.rb +12 -0
  478. data/src/com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb +65 -0
  479. data/src/com/zoho/crm/api/mass_delete_cvid/status.rb +121 -0
  480. data/src/com/zoho/crm/api/mass_delete_cvid/success_response.rb +123 -0
  481. data/src/com/zoho/crm/api/mass_delete_cvid/territory.rb +82 -0
  482. data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
  483. data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
  484. data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
  485. data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
  486. data/src/com/zoho/crm/api/modules/argument.rb +82 -0
  487. data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
  488. data/src/com/zoho/crm/api/modules/lookup_field.rb +103 -0
  489. data/src/com/zoho/crm/api/modules/lookup_field_properties.rb +63 -0
  490. data/src/com/zoho/crm/api/modules/minified_module.rb +101 -0
  491. data/src/com/zoho/crm/api/modules/module_field_lookup.rb +181 -0
  492. data/src/com/zoho/crm/api/modules/module_fields.rb +1377 -0
  493. data/src/com/zoho/crm/api/modules/modules.rb +1191 -0
  494. data/src/com/zoho/crm/api/modules/modules_operations.rb +133 -0
  495. data/src/com/zoho/crm/api/modules/related_list_properties.rb +102 -0
  496. data/src/com/zoho/crm/api/modules/response_handler.rb +12 -0
  497. data/src/com/zoho/crm/api/modules/response_wrapper.rb +65 -0
  498. data/src/com/zoho/crm/api/modules/sharing_properties.rb +102 -0
  499. data/src/com/zoho/crm/api/modules/success_response.rb +123 -0
  500. data/src/com/zoho/crm/api/modules/territory.rb +101 -0
  501. data/src/com/zoho/crm/api/notes/action_handler.rb +12 -0
  502. data/src/com/zoho/crm/api/notes/action_response.rb +12 -0
  503. data/src/com/zoho/crm/api/notes/action_wrapper.rb +65 -0
  504. data/src/com/zoho/crm/api/notes/api_exception.rb +127 -0
  505. data/src/com/zoho/crm/api/notes/body_wrapper.rb +63 -0
  506. data/src/com/zoho/crm/api/notes/info.rb +215 -0
  507. data/src/com/zoho/crm/api/notes/note.rb +370 -0
  508. data/src/com/zoho/crm/api/notes/notes_operations.rb +229 -0
  509. data/src/com/zoho/crm/api/notes/response_handler.rb +12 -0
  510. data/src/com/zoho/crm/api/notes/response_wrapper.rb +84 -0
  511. data/src/com/zoho/crm/api/notes/success_response.rb +123 -0
  512. data/src/com/zoho/crm/api/notifications/action_handler.rb +12 -0
  513. data/src/com/zoho/crm/api/notifications/action_response.rb +12 -0
  514. data/src/com/zoho/crm/api/notifications/action_wrapper.rb +65 -0
  515. data/src/com/zoho/crm/api/notifications/api_exception.rb +127 -0
  516. data/src/com/zoho/crm/api/notifications/body_wrapper.rb +63 -0
  517. data/src/com/zoho/crm/api/notifications/delete_details.rb +101 -0
  518. data/src/com/zoho/crm/api/notifications/event.rb +141 -0
  519. data/src/com/zoho/crm/api/notifications/info.rb +120 -0
  520. data/src/com/zoho/crm/api/notifications/notification.rb +275 -0
  521. data/src/com/zoho/crm/api/notifications/notifications_operations.rb +165 -0
  522. data/src/com/zoho/crm/api/notifications/response_handler.rb +12 -0
  523. data/src/com/zoho/crm/api/notifications/response_wrapper.rb +84 -0
  524. data/src/com/zoho/crm/api/notifications/success_response.rb +123 -0
  525. data/src/com/zoho/crm/api/org/action_handler.rb +12 -0
  526. data/src/com/zoho/crm/api/org/api_exception.rb +125 -0
  527. data/src/com/zoho/crm/api/org/checkin_preferences.rb +63 -0
  528. data/src/com/zoho/crm/api/org/feature.rb +82 -0
  529. data/src/com/zoho/crm/api/org/file_body_wrapper.rb +66 -0
  530. data/src/com/zoho/crm/api/org/hierarchy_preferences.rb +83 -0
  531. data/src/com/zoho/crm/api/org/license_details.rb +177 -0
  532. data/src/com/zoho/crm/api/org/org.rb +823 -0
  533. data/src/com/zoho/crm/api/org/org_operations.rb +79 -0
  534. data/src/com/zoho/crm/api/org/resource.rb +82 -0
  535. data/src/com/zoho/crm/api/org/response_handler.rb +12 -0
  536. data/src/com/zoho/crm/api/org/response_wrapper.rb +65 -0
  537. data/src/com/zoho/crm/api/org/success_response.rb +123 -0
  538. data/src/com/zoho/crm/api/param.rb +12 -0
  539. data/src/com/zoho/crm/api/parameter_map.rb +56 -0
  540. data/src/com/zoho/crm/api/pipeline/action_handler.rb +12 -0
  541. data/src/com/zoho/crm/api/pipeline/action_response.rb +12 -0
  542. data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +65 -0
  543. data/src/com/zoho/crm/api/pipeline/api_exception.rb +131 -0
  544. data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +65 -0
  545. data/src/com/zoho/crm/api/pipeline/d_pipeline.rb +63 -0
  546. data/src/com/zoho/crm/api/pipeline/d_pipeline_wrapper.rb +63 -0
  547. data/src/com/zoho/crm/api/pipeline/delete.rb +63 -0
  548. data/src/com/zoho/crm/api/pipeline/forecast_category.rb +82 -0
  549. data/src/com/zoho/crm/api/pipeline/mandatory_details.rb +82 -0
  550. data/src/com/zoho/crm/api/pipeline/maps.rb +196 -0
  551. data/src/com/zoho/crm/api/pipeline/pipeline.rb +177 -0
  552. data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +166 -0
  553. data/src/com/zoho/crm/api/pipeline/regex_details.rb +101 -0
  554. data/src/com/zoho/crm/api/pipeline/response_handler.rb +12 -0
  555. data/src/com/zoho/crm/api/pipeline/stages.rb +82 -0
  556. data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
  557. data/src/com/zoho/crm/api/pipeline/t_pipeline.rb +82 -0
  558. data/src/com/zoho/crm/api/pipeline/transfer_pipeline.rb +82 -0
  559. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_handler.rb +12 -0
  560. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_response.rb +12 -0
  561. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_wrapper.rb +67 -0
  562. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_success_response.rb +123 -0
  563. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_wrapper.rb +63 -0
  564. data/src/com/zoho/crm/api/portal_invite/action_handler.rb +12 -0
  565. data/src/com/zoho/crm/api/portal_invite/action_response.rb +12 -0
  566. data/src/com/zoho/crm/api/portal_invite/action_wrapper.rb +65 -0
  567. data/src/com/zoho/crm/api/portal_invite/api_exception.rb +127 -0
  568. data/src/com/zoho/crm/api/portal_invite/body_wrapper.rb +63 -0
  569. data/src/com/zoho/crm/api/portal_invite/data.rb +12 -0
  570. data/src/com/zoho/crm/api/portal_invite/job_response.rb +101 -0
  571. data/src/com/zoho/crm/api/portal_invite/portal.rb +121 -0
  572. data/src/com/zoho/crm/api/portal_invite/portal_invite.rb +63 -0
  573. data/src/com/zoho/crm/api/portal_invite/portal_invite_operations.rb +65 -0
  574. data/src/com/zoho/crm/api/portal_invite/response_wrapper.rb +63 -0
  575. data/src/com/zoho/crm/api/portal_invite/success_response.rb +125 -0
  576. data/src/com/zoho/crm/api/portal_user_type/api_exception.rb +123 -0
  577. data/src/com/zoho/crm/api/portal_user_type/fields.rb +101 -0
  578. data/src/com/zoho/crm/api/portal_user_type/filters.rb +101 -0
  579. data/src/com/zoho/crm/api/portal_user_type/layouts.rb +120 -0
  580. data/src/com/zoho/crm/api/portal_user_type/modules.rb +216 -0
  581. data/src/com/zoho/crm/api/portal_user_type/owner.rb +82 -0
  582. data/src/com/zoho/crm/api/portal_user_type/permissions.rb +178 -0
  583. data/src/com/zoho/crm/api/portal_user_type/personality_module.rb +101 -0
  584. data/src/com/zoho/crm/api/portal_user_type/portal_user_type_operations.rb +72 -0
  585. data/src/com/zoho/crm/api/portal_user_type/response_handler.rb +12 -0
  586. data/src/com/zoho/crm/api/portal_user_type/response_wrapper.rb +65 -0
  587. data/src/com/zoho/crm/api/portal_user_type/user_type.rb +253 -0
  588. data/src/com/zoho/crm/api/portal_user_type/views.rb +120 -0
  589. data/src/com/zoho/crm/api/portals/action_handler.rb +12 -0
  590. data/src/com/zoho/crm/api/portals/action_response.rb +12 -0
  591. data/src/com/zoho/crm/api/portals/action_wrapper.rb +65 -0
  592. data/src/com/zoho/crm/api/portals/api_exception.rb +127 -0
  593. data/src/com/zoho/crm/api/portals/body_wrapper.rb +63 -0
  594. data/src/com/zoho/crm/api/portals/owner.rb +82 -0
  595. data/src/com/zoho/crm/api/portals/portals.rb +177 -0
  596. data/src/com/zoho/crm/api/portals/portals_operations.rb +96 -0
  597. data/src/com/zoho/crm/api/portals/response_handler.rb +12 -0
  598. data/src/com/zoho/crm/api/portals/response_wrapper.rb +65 -0
  599. data/src/com/zoho/crm/api/portals/success_response.rb +123 -0
  600. data/src/com/zoho/crm/api/portals_meta/filters.rb +101 -0
  601. data/src/com/zoho/crm/api/portals_meta/layouts.rb +101 -0
  602. data/src/com/zoho/crm/api/portals_meta/modules.rb +177 -0
  603. data/src/com/zoho/crm/api/portals_meta/related_lists.rb +63 -0
  604. data/src/com/zoho/crm/api/portals_meta/views.rb +120 -0
  605. data/src/com/zoho/crm/api/portals_meta/wrapper.rb +63 -0
  606. data/src/com/zoho/crm/api/privacy_configurable_apps/apps.rb +63 -0
  607. data/src/com/zoho/crm/api/privacy_configurable_apps/wrapper.rb +63 -0
  608. data/src/com/zoho/crm/api/privacy_preference/config.rb +101 -0
  609. data/src/com/zoho/crm/api/privacy_preference/option.rb +120 -0
  610. data/src/com/zoho/crm/api/privacy_preference/preference.rb +462 -0
  611. data/src/com/zoho/crm/api/privacy_preference/privacy_preference.rb +82 -0
  612. data/src/com/zoho/crm/api/privacy_preference/section.rb +139 -0
  613. data/src/com/zoho/crm/api/privacy_preference/tpt.rb +101 -0
  614. data/src/com/zoho/crm/api/privacy_preference/wrapper.rb +63 -0
  615. data/src/com/zoho/crm/api/profiles/action_handler.rb +12 -0
  616. data/src/com/zoho/crm/api/profiles/action_response.rb +12 -0
  617. data/src/com/zoho/crm/api/profiles/action_wrapper.rb +65 -0
  618. data/src/com/zoho/crm/api/profiles/api_exception.rb +127 -0
  619. data/src/com/zoho/crm/api/profiles/category.rb +12 -0
  620. data/src/com/zoho/crm/api/profiles/category_module.rb +122 -0
  621. data/src/com/zoho/crm/api/profiles/category_others.rb +103 -0
  622. data/src/com/zoho/crm/api/profiles/default_view.rb +101 -0
  623. data/src/com/zoho/crm/api/profiles/info.rb +63 -0
  624. data/src/com/zoho/crm/api/profiles/minified_profile.rb +101 -0
  625. data/src/com/zoho/crm/api/profiles/permission_detail.rb +178 -0
  626. data/src/com/zoho/crm/api/profiles/profile.rb +350 -0
  627. data/src/com/zoho/crm/api/profiles/profile_wrapper.rb +84 -0
  628. data/src/com/zoho/crm/api/profiles/profiles_operations.rb +146 -0
  629. data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
  630. data/src/com/zoho/crm/api/profiles/section.rb +82 -0
  631. data/src/com/zoho/crm/api/profiles/success_response.rb +125 -0
  632. data/src/com/zoho/crm/api/query/api_exception.rb +123 -0
  633. data/src/com/zoho/crm/api/query/body_wrapper.rb +63 -0
  634. data/src/com/zoho/crm/api/query/query_operations.rb +37 -0
  635. data/src/com/zoho/crm/api/query/response_handler.rb +12 -0
  636. data/src/com/zoho/crm/api/query/response_wrapper.rb +86 -0
  637. data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
  638. data/src/com/zoho/crm/api/record/action_response.rb +12 -0
  639. data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
  640. data/src/com/zoho/crm/api/record/api_exception.rb +143 -0
  641. data/src/com/zoho/crm/api/record/body_wrapper.rb +158 -0
  642. data/src/com/zoho/crm/api/record/carry_over_tags.rb +101 -0
  643. data/src/com/zoho/crm/api/record/comment.rb +120 -0
  644. data/src/com/zoho/crm/api/record/consent.rb +307 -0
  645. data/src/com/zoho/crm/api/record/conversion_option.rb +159 -0
  646. data/src/com/zoho/crm/api/record/conversion_options_response_wrapper.rb +65 -0
  647. data/src/com/zoho/crm/api/record/convert_body_wrapper.rb +63 -0
  648. data/src/com/zoho/crm/api/record/count_handler.rb +12 -0
  649. data/src/com/zoho/crm/api/record/count_wrapper.rb +65 -0
  650. data/src/com/zoho/crm/api/record/criteria.rb +137 -0
  651. data/src/com/zoho/crm/api/record/deleted_record.rb +159 -0
  652. data/src/com/zoho/crm/api/record/deleted_records_handler.rb +12 -0
  653. data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +84 -0
  654. data/src/com/zoho/crm/api/record/download_handler.rb +12 -0
  655. data/src/com/zoho/crm/api/record/duplicate_record.rb +103 -0
  656. data/src/com/zoho/crm/api/record/field.rb +2479 -0
  657. data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
  658. data/src/com/zoho/crm/api/record/file_details.rb +139 -0
  659. data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
  660. data/src/com/zoho/crm/api/record/image_upload.rb +215 -0
  661. data/src/com/zoho/crm/api/record/info.rb +253 -0
  662. data/src/com/zoho/crm/api/record/lead_converter.rb +197 -0
  663. data/src/com/zoho/crm/api/record/line_item_product.rb +171 -0
  664. data/src/com/zoho/crm/api/record/line_tax.rb +139 -0
  665. data/src/com/zoho/crm/api/record/mass_update.rb +142 -0
  666. data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +12 -0
  667. data/src/com/zoho/crm/api/record/mass_update_action_response.rb +12 -0
  668. data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +65 -0
  669. data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +158 -0
  670. data/src/com/zoho/crm/api/record/mass_update_response.rb +12 -0
  671. data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +12 -0
  672. data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +65 -0
  673. data/src/com/zoho/crm/api/record/mass_update_success_response.rb +123 -0
  674. data/src/com/zoho/crm/api/record/mass_update_territory.rb +82 -0
  675. data/src/com/zoho/crm/api/record/multi_select_lookup.rb +101 -0
  676. data/src/com/zoho/crm/api/record/multi_select_picklist.rb +82 -0
  677. data/src/com/zoho/crm/api/record/options.rb +32 -0
  678. data/src/com/zoho/crm/api/record/participants.rb +222 -0
  679. data/src/com/zoho/crm/api/record/preference_field_matched_value.rb +101 -0
  680. data/src/com/zoho/crm/api/record/price_book.rb +137 -0
  681. data/src/com/zoho/crm/api/record/pricing_details.rb +188 -0
  682. data/src/com/zoho/crm/api/record/record.rb +211 -0
  683. data/src/com/zoho/crm/api/record/record_operations.rb +1182 -0
  684. data/src/com/zoho/crm/api/record/recurring_activity.rb +82 -0
  685. data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
  686. data/src/com/zoho/crm/api/record/reminder.rb +101 -0
  687. data/src/com/zoho/crm/api/record/response_handler.rb +12 -0
  688. data/src/com/zoho/crm/api/record/response_wrapper.rb +84 -0
  689. data/src/com/zoho/crm/api/record/success_response.rb +163 -0
  690. data/src/com/zoho/crm/api/record/tax.rb +82 -0
  691. data/src/com/zoho/crm/api/record/territory.rb +140 -0
  692. data/src/com/zoho/crm/api/record/widget.rb +82 -0
  693. data/src/com/zoho/crm/api/record/wizard.rb +82 -0
  694. data/src/com/zoho/crm/api/record_locking/action_handler.rb +12 -0
  695. data/src/com/zoho/crm/api/record_locking/action_response.rb +12 -0
  696. data/src/com/zoho/crm/api/record_locking/action_responses.rb +12 -0
  697. data/src/com/zoho/crm/api/record_locking/action_wrapper.rb +65 -0
  698. data/src/com/zoho/crm/api/record_locking/api_exception.rb +129 -0
  699. data/src/com/zoho/crm/api/record_locking/body_wrapper.rb +63 -0
  700. data/src/com/zoho/crm/api/record_locking/error_handler.rb +12 -0
  701. data/src/com/zoho/crm/api/record_locking/error_wrapper.rb +65 -0
  702. data/src/com/zoho/crm/api/record_locking/info.rb +253 -0
  703. data/src/com/zoho/crm/api/record_locking/lock_record.rb +63 -0
  704. data/src/com/zoho/crm/api/record_locking/locked_for_s.rb +101 -0
  705. data/src/com/zoho/crm/api/record_locking/record_action_locked.rb +63 -0
  706. data/src/com/zoho/crm/api/record_locking/record_action_locked_detail1.rb +101 -0
  707. data/src/com/zoho/crm/api/record_locking/record_action_locked_detail2.rb +82 -0
  708. data/src/com/zoho/crm/api/record_locking/record_lock.rb +257 -0
  709. data/src/com/zoho/crm/api/record_locking/record_locking_operations.rb +201 -0
  710. data/src/com/zoho/crm/api/record_locking/response_handler.rb +12 -0
  711. data/src/com/zoho/crm/api/record_locking/response_wrapper.rb +84 -0
  712. data/src/com/zoho/crm/api/record_locking/success_response.rb +161 -0
  713. data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
  714. data/src/com/zoho/crm/api/related_lists/field.rb +82 -0
  715. data/src/com/zoho/crm/api/related_lists/module_map.rb +82 -0
  716. data/src/com/zoho/crm/api/related_lists/related_list.rb +386 -0
  717. data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +82 -0
  718. data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
  719. data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
  720. data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
  721. data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
  722. data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
  723. data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
  724. data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
  725. data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
  726. data/src/com/zoho/crm/api/related_records/related_records_operations.rb +556 -0
  727. data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
  728. data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
  729. data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
  730. data/src/com/zoho/crm/api/request_proxy.rb +17 -0
  731. data/src/com/zoho/crm/api/reschedule_history/action_handler.rb +12 -0
  732. data/src/com/zoho/crm/api/reschedule_history/action_response.rb +12 -0
  733. data/src/com/zoho/crm/api/reschedule_history/action_wrapper.rb +65 -0
  734. data/src/com/zoho/crm/api/reschedule_history/api_exception.rb +127 -0
  735. data/src/com/zoho/crm/api/reschedule_history/appointment_name.rb +82 -0
  736. data/src/com/zoho/crm/api/reschedule_history/approval.rb +120 -0
  737. data/src/com/zoho/crm/api/reschedule_history/body_wrapper.rb +63 -0
  738. data/src/com/zoho/crm/api/reschedule_history/info.rb +177 -0
  739. data/src/com/zoho/crm/api/reschedule_history/reschedule_history.rb +557 -0
  740. data/src/com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb +177 -0
  741. data/src/com/zoho/crm/api/reschedule_history/response_handler.rb +12 -0
  742. data/src/com/zoho/crm/api/reschedule_history/response_wrapper.rb +84 -0
  743. data/src/com/zoho/crm/api/reschedule_history/success_response.rb +123 -0
  744. data/src/com/zoho/crm/api/reschedule_history/user.rb +101 -0
  745. data/src/com/zoho/crm/api/roles/action_handler.rb +12 -0
  746. data/src/com/zoho/crm/api/roles/action_response.rb +12 -0
  747. data/src/com/zoho/crm/api/roles/action_wrapper.rb +65 -0
  748. data/src/com/zoho/crm/api/roles/api_exception.rb +127 -0
  749. data/src/com/zoho/crm/api/roles/body_wrapper.rb +63 -0
  750. data/src/com/zoho/crm/api/roles/reporting_to.rb +82 -0
  751. data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
  752. data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
  753. data/src/com/zoho/crm/api/roles/role.rb +273 -0
  754. data/src/com/zoho/crm/api/roles/roles_operations.rb +150 -0
  755. data/src/com/zoho/crm/api/roles/success_response.rb +123 -0
  756. data/src/com/zoho/crm/api/scoring_rules/action_handler.rb +12 -0
  757. data/src/com/zoho/crm/api/scoring_rules/action_response.rb +12 -0
  758. data/src/com/zoho/crm/api/scoring_rules/action_wrapper.rb +65 -0
  759. data/src/com/zoho/crm/api/scoring_rules/api_exception.rb +127 -0
  760. data/src/com/zoho/crm/api/scoring_rules/body_wrapper.rb +63 -0
  761. data/src/com/zoho/crm/api/scoring_rules/criteria.rb +136 -0
  762. data/src/com/zoho/crm/api/scoring_rules/field.rb +82 -0
  763. data/src/com/zoho/crm/api/scoring_rules/field_rule.rb +101 -0
  764. data/src/com/zoho/crm/api/scoring_rules/info.rb +215 -0
  765. data/src/com/zoho/crm/api/scoring_rules/layout.rb +82 -0
  766. data/src/com/zoho/crm/api/scoring_rules/layout_request_wrapper.rb +63 -0
  767. data/src/com/zoho/crm/api/scoring_rules/response_handler.rb +12 -0
  768. data/src/com/zoho/crm/api/scoring_rules/response_wrapper.rb +84 -0
  769. data/src/com/zoho/crm/api/scoring_rules/role_request_wrapper.rb +63 -0
  770. data/src/com/zoho/crm/api/scoring_rules/scoring_rule.rb +274 -0
  771. data/src/com/zoho/crm/api/scoring_rules/scoring_rules_operations.rb +331 -0
  772. data/src/com/zoho/crm/api/scoring_rules/signal.rb +82 -0
  773. data/src/com/zoho/crm/api/scoring_rules/signal_rule.rb +101 -0
  774. data/src/com/zoho/crm/api/scoring_rules/success_response.rb +125 -0
  775. data/src/com/zoho/crm/api/sdk_config.rb +15 -0
  776. data/src/com/zoho/crm/api/send_mail/action_handler.rb +12 -0
  777. data/src/com/zoho/crm/api/send_mail/action_response.rb +12 -0
  778. data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +65 -0
  779. data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
  780. data/src/com/zoho/crm/api/send_mail/attachment.rb +63 -0
  781. data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +63 -0
  782. data/src/com/zoho/crm/api/send_mail/data.rb +349 -0
  783. data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +82 -0
  784. data/src/com/zoho/crm/api/send_mail/from.rb +82 -0
  785. data/src/com/zoho/crm/api/send_mail/invalid_details.rb +82 -0
  786. data/src/com/zoho/crm/api/send_mail/inventory_details.rb +63 -0
  787. data/src/com/zoho/crm/api/send_mail/inventory_template.rb +82 -0
  788. data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +51 -0
  789. data/src/com/zoho/crm/api/send_mail/success_response.rb +123 -0
  790. data/src/com/zoho/crm/api/send_mail/template.rb +12 -0
  791. data/src/com/zoho/crm/api/send_mail/to.rb +82 -0
  792. data/src/com/zoho/crm/api/service_preference/action_handler.rb +12 -0
  793. data/src/com/zoho/crm/api/service_preference/action_response.rb +12 -0
  794. data/src/com/zoho/crm/api/service_preference/action_wrapper.rb +65 -0
  795. data/src/com/zoho/crm/api/service_preference/api_exception.rb +127 -0
  796. data/src/com/zoho/crm/api/service_preference/body_wrapper.rb +63 -0
  797. data/src/com/zoho/crm/api/service_preference/response_handler.rb +12 -0
  798. data/src/com/zoho/crm/api/service_preference/response_wrapper.rb +65 -0
  799. data/src/com/zoho/crm/api/service_preference/service_preference.rb +63 -0
  800. data/src/com/zoho/crm/api/service_preference/service_preference_operations.rb +51 -0
  801. data/src/com/zoho/crm/api/service_preference/success_response.rb +123 -0
  802. data/src/com/zoho/crm/api/share_records/action_handler.rb +12 -0
  803. data/src/com/zoho/crm/api/share_records/action_response.rb +12 -0
  804. data/src/com/zoho/crm/api/share_records/action_wrapper.rb +65 -0
  805. data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
  806. data/src/com/zoho/crm/api/share_records/body_wrapper.rb +101 -0
  807. data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +12 -0
  808. data/src/com/zoho/crm/api/share_records/delete_action_response.rb +12 -0
  809. data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +65 -0
  810. data/src/com/zoho/crm/api/share_records/dependee.rb +82 -0
  811. data/src/com/zoho/crm/api/share_records/module.rb +101 -0
  812. data/src/com/zoho/crm/api/share_records/response_handler.rb +12 -0
  813. data/src/com/zoho/crm/api/share_records/response_wrapper.rb +85 -0
  814. data/src/com/zoho/crm/api/share_records/share_record.rb +198 -0
  815. data/src/com/zoho/crm/api/share_records/share_records_operations.rb +130 -0
  816. data/src/com/zoho/crm/api/share_records/shared_through.rb +120 -0
  817. data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
  818. data/src/com/zoho/crm/api/shift_hours/action_handler.rb +12 -0
  819. data/src/com/zoho/crm/api/shift_hours/action_response.rb +12 -0
  820. data/src/com/zoho/crm/api/shift_hours/action_wrapper.rb +65 -0
  821. data/src/com/zoho/crm/api/shift_hours/api_exception.rb +127 -0
  822. data/src/com/zoho/crm/api/shift_hours/body_wrapper.rb +63 -0
  823. data/src/com/zoho/crm/api/shift_hours/break_custom_timing.rb +82 -0
  824. data/src/com/zoho/crm/api/shift_hours/break_hours.rb +139 -0
  825. data/src/com/zoho/crm/api/shift_hours/holidays.rb +120 -0
  826. data/src/com/zoho/crm/api/shift_hours/mandatory_details.rb +82 -0
  827. data/src/com/zoho/crm/api/shift_hours/response_handler.rb +12 -0
  828. data/src/com/zoho/crm/api/shift_hours/response_wrapper.rb +84 -0
  829. data/src/com/zoho/crm/api/shift_hours/role.rb +82 -0
  830. data/src/com/zoho/crm/api/shift_hours/shift_count.rb +82 -0
  831. data/src/com/zoho/crm/api/shift_hours/shift_custom_timing.rb +82 -0
  832. data/src/com/zoho/crm/api/shift_hours/shift_hours.rb +253 -0
  833. data/src/com/zoho/crm/api/shift_hours/shift_hours_operations.rb +166 -0
  834. data/src/com/zoho/crm/api/shift_hours/success_response.rb +123 -0
  835. data/src/com/zoho/crm/api/shift_hours/users.rb +158 -0
  836. data/src/com/zoho/crm/api/tags/action_handler.rb +12 -0
  837. data/src/com/zoho/crm/api/tags/action_response.rb +12 -0
  838. data/src/com/zoho/crm/api/tags/action_wrapper.rb +65 -0
  839. data/src/com/zoho/crm/api/tags/api_exception.rb +131 -0
  840. data/src/com/zoho/crm/api/tags/associated_places.rb +82 -0
  841. data/src/com/zoho/crm/api/tags/body_wrapper.rb +63 -0
  842. data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +63 -0
  843. data/src/com/zoho/crm/api/tags/count_response_wrapper.rb +65 -0
  844. data/src/com/zoho/crm/api/tags/error_details.rb +82 -0
  845. data/src/com/zoho/crm/api/tags/existing_tag.rb +82 -0
  846. data/src/com/zoho/crm/api/tags/existing_tag_request_wrapper.rb +82 -0
  847. data/src/com/zoho/crm/api/tags/info.rb +82 -0
  848. data/src/com/zoho/crm/api/tags/merge_wrapper.rb +63 -0
  849. data/src/com/zoho/crm/api/tags/new_tag_request_wrapper.rb +101 -0
  850. data/src/com/zoho/crm/api/tags/record_action_handler.rb +12 -0
  851. data/src/com/zoho/crm/api/tags/record_action_response.rb +12 -0
  852. data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +122 -0
  853. data/src/com/zoho/crm/api/tags/record_detail_tag.rb +101 -0
  854. data/src/com/zoho/crm/api/tags/record_success_response.rb +123 -0
  855. data/src/com/zoho/crm/api/tags/response_handler.rb +12 -0
  856. data/src/com/zoho/crm/api/tags/response_wrapper.rb +84 -0
  857. data/src/com/zoho/crm/api/tags/success_response.rb +123 -0
  858. data/src/com/zoho/crm/api/tags/tag.rb +179 -0
  859. data/src/com/zoho/crm/api/tags/tags_operations.rb +385 -0
  860. data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
  861. data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
  862. data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
  863. data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
  864. data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
  865. data/src/com/zoho/crm/api/taxes/expected_field.rb +82 -0
  866. data/src/com/zoho/crm/api/taxes/org_tax.rb +82 -0
  867. data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
  868. data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
  869. data/src/com/zoho/crm/api/taxes/response_wrapper.rb +65 -0
  870. data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
  871. data/src/com/zoho/crm/api/taxes/tax.rb +158 -0
  872. data/src/com/zoho/crm/api/taxes/taxes_operations.rb +70 -0
  873. data/src/com/zoho/crm/api/templates/api_exception.rb +121 -0
  874. data/src/com/zoho/crm/api/templates/folder.rb +82 -0
  875. data/src/com/zoho/crm/api/templates/templates.rb +234 -0
  876. data/src/com/zoho/crm/api/templates/wrapper.rb +63 -0
  877. data/src/com/zoho/crm/api/territories/action_handler.rb +12 -0
  878. data/src/com/zoho/crm/api/territories/action_response.rb +12 -0
  879. data/src/com/zoho/crm/api/territories/action_wrapper.rb +65 -0
  880. data/src/com/zoho/crm/api/territories/api_exception.rb +127 -0
  881. data/src/com/zoho/crm/api/territories/associated_users_count.rb +82 -0
  882. data/src/com/zoho/crm/api/territories/associated_users_count_wrapper.rb +84 -0
  883. data/src/com/zoho/crm/api/territories/body_wrapper.rb +63 -0
  884. data/src/com/zoho/crm/api/territories/criteria.rb +136 -0
  885. data/src/com/zoho/crm/api/territories/deleted_associated_territories.rb +121 -0
  886. data/src/com/zoho/crm/api/territories/deleted_associated_wrapper.rb +82 -0
  887. data/src/com/zoho/crm/api/territories/field.rb +82 -0
  888. data/src/com/zoho/crm/api/territories/info.rb +120 -0
  889. data/src/com/zoho/crm/api/territories/manager.rb +82 -0
  890. data/src/com/zoho/crm/api/territories/minified_territory.rb +101 -0
  891. data/src/com/zoho/crm/api/territories/reporting_to.rb +82 -0
  892. data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
  893. data/src/com/zoho/crm/api/territories/response_wrapper.rb +84 -0
  894. data/src/com/zoho/crm/api/territories/success_response.rb +123 -0
  895. data/src/com/zoho/crm/api/territories/territories.rb +293 -0
  896. data/src/com/zoho/crm/api/territories/territories_operations.rb +283 -0
  897. data/src/com/zoho/crm/api/territories/transfer_body_wrapper.rb +63 -0
  898. data/src/com/zoho/crm/api/territories/transfer_territory.rb +101 -0
  899. data/src/com/zoho/crm/api/territory_users/action_handler.rb +12 -0
  900. data/src/com/zoho/crm/api/territory_users/action_response.rb +12 -0
  901. data/src/com/zoho/crm/api/territory_users/action_wrapper.rb +65 -0
  902. data/src/com/zoho/crm/api/territory_users/api_exception.rb +127 -0
  903. data/src/com/zoho/crm/api/territory_users/body_wrapper.rb +64 -0
  904. data/src/com/zoho/crm/api/territory_users/info.rb +120 -0
  905. data/src/com/zoho/crm/api/territory_users/response_handler.rb +12 -0
  906. data/src/com/zoho/crm/api/territory_users/response_wrapper.rb +85 -0
  907. data/src/com/zoho/crm/api/territory_users/success_response.rb +123 -0
  908. data/src/com/zoho/crm/api/territory_users/territory_users_operations.rb +172 -0
  909. data/src/com/zoho/crm/api/timelines/api_exception.rb +123 -0
  910. data/src/com/zoho/crm/api/timelines/automation_detail.rb +101 -0
  911. data/src/com/zoho/crm/api/timelines/field_history.rb +177 -0
  912. data/src/com/zoho/crm/api/timelines/field_history_value.rb +82 -0
  913. data/src/com/zoho/crm/api/timelines/info.rb +158 -0
  914. data/src/com/zoho/crm/api/timelines/module.rb +82 -0
  915. data/src/com/zoho/crm/api/timelines/name_id_structure.rb +82 -0
  916. data/src/com/zoho/crm/api/timelines/path_finder.rb +101 -0
  917. data/src/com/zoho/crm/api/timelines/picklist_detail.rb +158 -0
  918. data/src/com/zoho/crm/api/timelines/record.rb +101 -0
  919. data/src/com/zoho/crm/api/timelines/related_record.rb +101 -0
  920. data/src/com/zoho/crm/api/timelines/response_handler.rb +12 -0
  921. data/src/com/zoho/crm/api/timelines/response_wrapper.rb +84 -0
  922. data/src/com/zoho/crm/api/timelines/state.rb +120 -0
  923. data/src/com/zoho/crm/api/timelines/timeline.rb +253 -0
  924. data/src/com/zoho/crm/api/timelines/timelines_operations.rb +88 -0
  925. data/src/com/zoho/crm/api/user_groups/action_handler.rb +12 -0
  926. data/src/com/zoho/crm/api/user_groups/action_response.rb +12 -0
  927. data/src/com/zoho/crm/api/user_groups/action_wrapper.rb +65 -0
  928. data/src/com/zoho/crm/api/user_groups/api_exception.rb +127 -0
  929. data/src/com/zoho/crm/api/user_groups/associated_user.rb +82 -0
  930. data/src/com/zoho/crm/api/user_groups/associated_user_count.rb +84 -0
  931. data/src/com/zoho/crm/api/user_groups/association_module.rb +64 -0
  932. data/src/com/zoho/crm/api/user_groups/association_response.rb +101 -0
  933. data/src/com/zoho/crm/api/user_groups/association_wrapper.rb +65 -0
  934. data/src/com/zoho/crm/api/user_groups/body_wrapper.rb +63 -0
  935. data/src/com/zoho/crm/api/user_groups/groups.rb +196 -0
  936. data/src/com/zoho/crm/api/user_groups/info.rb +120 -0
  937. data/src/com/zoho/crm/api/user_groups/jobs.rb +63 -0
  938. data/src/com/zoho/crm/api/user_groups/jobs_wrapper.rb +63 -0
  939. data/src/com/zoho/crm/api/user_groups/owner.rb +82 -0
  940. data/src/com/zoho/crm/api/user_groups/resource.rb +82 -0
  941. data/src/com/zoho/crm/api/user_groups/response_handler.rb +12 -0
  942. data/src/com/zoho/crm/api/user_groups/response_wrapper.rb +84 -0
  943. data/src/com/zoho/crm/api/user_groups/source.rb +82 -0
  944. data/src/com/zoho/crm/api/user_groups/sources.rb +121 -0
  945. data/src/com/zoho/crm/api/user_groups/sources_count.rb +120 -0
  946. data/src/com/zoho/crm/api/user_groups/sources_count_wrapper.rb +65 -0
  947. data/src/com/zoho/crm/api/user_groups/sources_wrapper.rb +84 -0
  948. data/src/com/zoho/crm/api/user_groups/success_response.rb +123 -0
  949. data/src/com/zoho/crm/api/user_groups/user_group.rb +82 -0
  950. data/src/com/zoho/crm/api/user_groups/user_groups_operations.rb +260 -0
  951. data/src/com/zoho/crm/api/user_groups/users.rb +101 -0
  952. data/src/com/zoho/crm/api/user_signature.rb +15 -0
  953. data/src/com/zoho/crm/api/user_type_users/api_exception.rb +123 -0
  954. data/src/com/zoho/crm/api/user_type_users/info.rb +139 -0
  955. data/src/com/zoho/crm/api/user_type_users/response_handler.rb +12 -0
  956. data/src/com/zoho/crm/api/user_type_users/response_wrapper.rb +84 -0
  957. data/src/com/zoho/crm/api/user_type_users/user_type_users_operations.rb +60 -0
  958. data/src/com/zoho/crm/api/user_type_users/users.rb +196 -0
  959. data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
  960. data/src/com/zoho/crm/api/users/action_response.rb +12 -0
  961. data/src/com/zoho/crm/api/users/action_wrapper.rb +65 -0
  962. data/src/com/zoho/crm/api/users/api_exception.rb +127 -0
  963. data/src/com/zoho/crm/api/users/associated_group.rb +177 -0
  964. data/src/com/zoho/crm/api/users/associated_groups_wrapper.rb +84 -0
  965. data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
  966. data/src/com/zoho/crm/api/users/customize_info.rb +146 -0
  967. data/src/com/zoho/crm/api/users/error_details.rb +82 -0
  968. data/src/com/zoho/crm/api/users/info.rb +120 -0
  969. data/src/com/zoho/crm/api/users/minified_user.rb +101 -0
  970. data/src/com/zoho/crm/api/users/owner.rb +120 -0
  971. data/src/com/zoho/crm/api/users/profile.rb +82 -0
  972. data/src/com/zoho/crm/api/users/response_handler.rb +12 -0
  973. data/src/com/zoho/crm/api/users/response_wrapper.rb +84 -0
  974. data/src/com/zoho/crm/api/users/role.rb +82 -0
  975. data/src/com/zoho/crm/api/users/shift.rb +82 -0
  976. data/src/com/zoho/crm/api/users/success_response.rb +123 -0
  977. data/src/com/zoho/crm/api/users/tab.rb +83 -0
  978. data/src/com/zoho/crm/api/users/theme.rb +159 -0
  979. data/src/com/zoho/crm/api/users/users.rb +1086 -0
  980. data/src/com/zoho/crm/api/users/users_operations.rb +208 -0
  981. data/src/com/zoho/crm/api/users_territories/action_handler.rb +12 -0
  982. data/src/com/zoho/crm/api/users_territories/action_response.rb +12 -0
  983. data/src/com/zoho/crm/api/users_territories/action_wrapper.rb +67 -0
  984. data/src/com/zoho/crm/api/users_territories/api_exception.rb +131 -0
  985. data/src/com/zoho/crm/api/users_territories/body_wrapper.rb +63 -0
  986. data/src/com/zoho/crm/api/users_territories/bulk_validation.rb +141 -0
  987. data/src/com/zoho/crm/api/users_territories/info.rb +120 -0
  988. data/src/com/zoho/crm/api/users_territories/manager.rb +82 -0
  989. data/src/com/zoho/crm/api/users_territories/response_handler.rb +12 -0
  990. data/src/com/zoho/crm/api/users_territories/response_wrapper.rb +84 -0
  991. data/src/com/zoho/crm/api/users_territories/success_response.rb +125 -0
  992. data/src/com/zoho/crm/api/users_territories/territory.rb +120 -0
  993. data/src/com/zoho/crm/api/users_territories/transfer_action_handler.rb +12 -0
  994. data/src/com/zoho/crm/api/users_territories/transfer_action_response.rb +12 -0
  995. data/src/com/zoho/crm/api/users_territories/transfer_action_wrapper.rb +65 -0
  996. data/src/com/zoho/crm/api/users_territories/transfer_and_delink.rb +82 -0
  997. data/src/com/zoho/crm/api/users_territories/transfer_to_user.rb +63 -0
  998. data/src/com/zoho/crm/api/users_territories/transfer_wrapper.rb +63 -0
  999. data/src/com/zoho/crm/api/users_territories/users_territories_operations.rb +192 -0
  1000. data/src/com/zoho/crm/api/users_territories/validation.rb +103 -0
  1001. data/src/com/zoho/crm/api/users_territories/validation_group.rb +12 -0
  1002. data/src/com/zoho/crm/api/users_territories/validation_handler.rb +12 -0
  1003. data/src/com/zoho/crm/api/users_territories/validation_wrapper.rb +65 -0
  1004. data/src/com/zoho/crm/api/users_transfer_delete/action_handler.rb +12 -0
  1005. data/src/com/zoho/crm/api/users_transfer_delete/action_response.rb +12 -0
  1006. data/src/com/zoho/crm/api/users_transfer_delete/action_wrapper.rb +65 -0
  1007. data/src/com/zoho/crm/api/users_transfer_delete/api_exception.rb +127 -0
  1008. data/src/com/zoho/crm/api/users_transfer_delete/body_wrapper.rb +63 -0
  1009. data/src/com/zoho/crm/api/users_transfer_delete/move_subordinate.rb +63 -0
  1010. data/src/com/zoho/crm/api/users_transfer_delete/response_handler.rb +12 -0
  1011. data/src/com/zoho/crm/api/users_transfer_delete/response_wrapper.rb +65 -0
  1012. data/src/com/zoho/crm/api/users_transfer_delete/status.rb +63 -0
  1013. data/src/com/zoho/crm/api/users_transfer_delete/success_response.rb +123 -0
  1014. data/src/com/zoho/crm/api/users_transfer_delete/transfer.rb +120 -0
  1015. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete.rb +101 -0
  1016. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete_by_i_d.rb +82 -0
  1017. data/src/com/zoho/crm/api/users_transfer_delete/users_transfer_delete_operations.rb +92 -0
  1018. data/src/com/zoho/crm/api/users_unavailability/action_handler.rb +12 -0
  1019. data/src/com/zoho/crm/api/users_unavailability/action_response.rb +12 -0
  1020. data/src/com/zoho/crm/api/users_unavailability/action_wrapper.rb +65 -0
  1021. data/src/com/zoho/crm/api/users_unavailability/api_exception.rb +127 -0
  1022. data/src/com/zoho/crm/api/users_unavailability/body_wrapper.rb +63 -0
  1023. data/src/com/zoho/crm/api/users_unavailability/info.rb +120 -0
  1024. data/src/com/zoho/crm/api/users_unavailability/response_handler.rb +12 -0
  1025. data/src/com/zoho/crm/api/users_unavailability/response_wrapper.rb +84 -0
  1026. data/src/com/zoho/crm/api/users_unavailability/success_response.rb +123 -0
  1027. data/src/com/zoho/crm/api/users_unavailability/user.rb +101 -0
  1028. data/src/com/zoho/crm/api/users_unavailability/users_unavailability.rb +234 -0
  1029. data/src/com/zoho/crm/api/users_unavailability/users_unavailability_operations.rb +181 -0
  1030. data/src/com/zoho/crm/api/util/api_http_connector.rb +125 -0
  1031. data/src/com/zoho/crm/api/util/api_response.rb +18 -0
  1032. data/src/com/zoho/crm/api/util/choice.rb +11 -0
  1033. data/src/com/zoho/crm/api/util/common_api_handler.rb +240 -0
  1034. data/src/com/zoho/crm/api/util/constants.rb +754 -0
  1035. data/src/com/zoho/crm/api/util/converter.rb +280 -0
  1036. data/src/com/zoho/crm/api/util/data_type_converter.rb +179 -0
  1037. data/src/com/zoho/crm/api/util/downloader.rb +86 -0
  1038. data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
  1039. data/src/com/zoho/crm/api/util/header_param_validator.rb +57 -0
  1040. data/src/com/zoho/crm/api/util/json_converter.rb +774 -0
  1041. data/src/com/zoho/crm/api/util/model.rb +7 -0
  1042. data/src/com/zoho/crm/api/util/module_fields_handler.rb +91 -0
  1043. data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
  1044. data/src/com/zoho/crm/api/util/utility.rb +1007 -0
  1045. data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
  1046. data/src/com/zoho/crm/api/variable_groups/minified_variable_group.rb +82 -0
  1047. data/src/com/zoho/crm/api/variable_groups/response_handler.rb +12 -0
  1048. data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +65 -0
  1049. data/src/com/zoho/crm/api/variable_groups/variable_group.rb +158 -0
  1050. data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +68 -0
  1051. data/src/com/zoho/crm/api/variables/action_handler.rb +12 -0
  1052. data/src/com/zoho/crm/api/variables/action_response.rb +12 -0
  1053. data/src/com/zoho/crm/api/variables/action_wrapper.rb +65 -0
  1054. data/src/com/zoho/crm/api/variables/api_exception.rb +127 -0
  1055. data/src/com/zoho/crm/api/variables/body_wrapper.rb +63 -0
  1056. data/src/com/zoho/crm/api/variables/error_details.rb +82 -0
  1057. data/src/com/zoho/crm/api/variables/response_handler.rb +12 -0
  1058. data/src/com/zoho/crm/api/variables/response_wrapper.rb +65 -0
  1059. data/src/com/zoho/crm/api/variables/success_response.rb +123 -0
  1060. data/src/com/zoho/crm/api/variables/variable.rb +213 -0
  1061. data/src/com/zoho/crm/api/variables/variable_group.rb +101 -0
  1062. data/src/com/zoho/crm/api/variables/variables_operations.rb +255 -0
  1063. data/src/com/zoho/crm/api/wizards/actions.rb +157 -0
  1064. data/src/com/zoho/crm/api/wizards/api_exception.rb +123 -0
  1065. data/src/com/zoho/crm/api/wizards/button.rb +288 -0
  1066. data/src/com/zoho/crm/api/wizards/button_background.rb +63 -0
  1067. data/src/com/zoho/crm/api/wizards/chart_data.rb +139 -0
  1068. data/src/com/zoho/crm/api/wizards/conditional_rules.rb +121 -0
  1069. data/src/com/zoho/crm/api/wizards/connection.rb +82 -0
  1070. data/src/com/zoho/crm/api/wizards/container.rb +121 -0
  1071. data/src/com/zoho/crm/api/wizards/criteria.rb +136 -0
  1072. data/src/com/zoho/crm/api/wizards/exempted_portal_user_type.rb +63 -0
  1073. data/src/com/zoho/crm/api/wizards/field.rb +82 -0
  1074. data/src/com/zoho/crm/api/wizards/node.rb +120 -0
  1075. data/src/com/zoho/crm/api/wizards/portal_user_type.rb +121 -0
  1076. data/src/com/zoho/crm/api/wizards/resource.rb +82 -0
  1077. data/src/com/zoho/crm/api/wizards/response_handler.rb +12 -0
  1078. data/src/com/zoho/crm/api/wizards/response_wrapper.rb +65 -0
  1079. data/src/com/zoho/crm/api/wizards/screen.rb +120 -0
  1080. data/src/com/zoho/crm/api/wizards/segment.rb +197 -0
  1081. data/src/com/zoho/crm/api/wizards/transition.rb +82 -0
  1082. data/src/com/zoho/crm/api/wizards/wizard.rb +313 -0
  1083. data/src/com/zoho/crm/api/wizards/wizards_operations.rb +63 -0
  1084. data/src/resources/json_details.json +1 -0
  1085. data/src/version.rb +3 -0
  1086. metadata +1241 -0
@@ -0,0 +1,1355 @@
1
+ require_relative '../modules/minified_module'
2
+ require_relative '../modules/sharing_properties'
3
+ require_relative '../util/choice'
4
+ require_relative '../util/model'
5
+
6
+ module ZOHOCRMSDK
7
+ module Fields
8
+ class Fields
9
+ include Util::Model
10
+
11
+ # Creates an instance of Fields
12
+ def initialize
13
+ @associated_module = nil
14
+ @operation_type = nil
15
+ @data_type = nil
16
+ @system_mandatory = nil
17
+ @webhook = nil
18
+ @sequence_number = nil
19
+ @default_value = nil
20
+ @blueprint_supported = nil
21
+ @virtual_field = nil
22
+ @field_read_only = nil
23
+ @read_only = nil
24
+ @custom_field = nil
25
+ @businesscard_supported = nil
26
+ @filterable = nil
27
+ @visible = nil
28
+ @available_in_user_layout = nil
29
+ @display_field = nil
30
+ @pick_list_values_sorted_lexically = nil
31
+ @sortable = nil
32
+ @separator = nil
33
+ @searchable = nil
34
+ @enable_colour_code = nil
35
+ @mass_update = nil
36
+ @json_type = nil
37
+ @created_source = nil
38
+ @type = nil
39
+ @display_label = nil
40
+ @column_name = nil
41
+ @api_name = nil
42
+ @display_type = nil
43
+ @ui_type = nil
44
+ @length = nil
45
+ @decimal_place = nil
46
+ @quick_sequence_number = nil
47
+ @email_parser = nil
48
+ @rollup_summary = nil
49
+ @refer_from_field = nil
50
+ @created_time = nil
51
+ @modified_time = nil
52
+ @show_type = nil
53
+ @category = nil
54
+ @id = nil
55
+ @multi_module_lookup = nil
56
+ @sharing_properties = nil
57
+ @currency = nil
58
+ @file_upolad_optionlist = nil
59
+ @lookup = nil
60
+ @profiles = nil
61
+ @view_type = nil
62
+ @unique = nil
63
+ @sub_module = nil
64
+ @external = nil
65
+ @formula = nil
66
+ @private = nil
67
+ @convert_mapping = nil
68
+ @multiselectlookup = nil
69
+ @multiuserlookup = nil
70
+ @auto_number = nil
71
+ @pick_list_values = nil
72
+ @crypt = nil
73
+ @tooltip = nil
74
+ @history_tracking = nil
75
+ @association_details = nil
76
+ @allowed_modules = nil
77
+ @additional_column = nil
78
+ @field_label = nil
79
+ @global_picklist = nil
80
+ @hipaa_compliance_enabled = nil
81
+ @hipaa_compliance = nil
82
+ @key_modified = Hash.new
83
+ end
84
+
85
+ # The method to get the associated_module
86
+ # @return An instance of Modules::MinifiedModule
87
+
88
+ def associated_module
89
+ @associated_module
90
+ end
91
+
92
+ # The method to set the value to associated_module
93
+ # @param associated_module [Modules::MinifiedModule] An instance of Modules::MinifiedModule
94
+
95
+ def associated_module=(associated_module)
96
+ if associated_module!=nil and !associated_module.is_a? Modules::MinifiedModule
97
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: associated_module EXPECTED TYPE: MinifiedModule', nil, nil)
98
+ end
99
+ @associated_module = associated_module
100
+ @key_modified['associated_module'] = 1
101
+ end
102
+
103
+ # The method to get the operation_type
104
+ # @return An instance of OperationType
105
+
106
+ def operation_type
107
+ @operation_type
108
+ end
109
+
110
+ # The method to set the value to operation_type
111
+ # @param operation_type [OperationType] An instance of OperationType
112
+
113
+ def operation_type=(operation_type)
114
+ if operation_type!=nil and !operation_type.is_a? OperationType
115
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: operation_type EXPECTED TYPE: OperationType', nil, nil)
116
+ end
117
+ @operation_type = operation_type
118
+ @key_modified['operation_type'] = 1
119
+ end
120
+
121
+ # The method to get the data_type
122
+ # @return An instance of Util::Choice
123
+
124
+ def data_type
125
+ @data_type
126
+ end
127
+
128
+ # The method to set the value to data_type
129
+ # @param data_type [Util::Choice] An instance of Util::Choice
130
+
131
+ def data_type=(data_type)
132
+ if data_type!=nil and !data_type.is_a? Util::Choice
133
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: data_type EXPECTED TYPE: Util::Choice', nil, nil)
134
+ end
135
+ @data_type = data_type
136
+ @key_modified['data_type'] = 1
137
+ end
138
+
139
+ # The method to get the system_mandatory
140
+ # @return A Boolean value
141
+
142
+ def system_mandatory
143
+ @system_mandatory
144
+ end
145
+
146
+ # The method to set the value to system_mandatory
147
+ # @param system_mandatory [Boolean] A Boolean
148
+
149
+ def system_mandatory=(system_mandatory)
150
+ if system_mandatory!=nil and ! [true, false].include?system_mandatory
151
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: system_mandatory EXPECTED TYPE: Boolean', nil, nil)
152
+ end
153
+ @system_mandatory = system_mandatory
154
+ @key_modified['system_mandatory'] = 1
155
+ end
156
+
157
+ # The method to get the webhook
158
+ # @return A Boolean value
159
+
160
+ def webhook
161
+ @webhook
162
+ end
163
+
164
+ # The method to set the value to webhook
165
+ # @param webhook [Boolean] A Boolean
166
+
167
+ def webhook=(webhook)
168
+ if webhook!=nil and ! [true, false].include?webhook
169
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: webhook EXPECTED TYPE: Boolean', nil, nil)
170
+ end
171
+ @webhook = webhook
172
+ @key_modified['webhook'] = 1
173
+ end
174
+
175
+ # The method to get the sequence_number
176
+ # @return A Integer value
177
+
178
+ def sequence_number
179
+ @sequence_number
180
+ end
181
+
182
+ # The method to set the value to sequence_number
183
+ # @param sequence_number [Integer] A Integer
184
+
185
+ def sequence_number=(sequence_number)
186
+ if sequence_number!=nil and !sequence_number.is_a? Integer
187
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sequence_number EXPECTED TYPE: Integer', nil, nil)
188
+ end
189
+ @sequence_number = sequence_number
190
+ @key_modified['sequence_number'] = 1
191
+ end
192
+
193
+ # The method to get the default_value
194
+ # @return A String value
195
+
196
+ def default_value
197
+ @default_value
198
+ end
199
+
200
+ # The method to set the value to default_value
201
+ # @param default_value [String] A String
202
+
203
+ def default_value=(default_value)
204
+ if default_value!=nil and !default_value.is_a? String
205
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: default_value EXPECTED TYPE: String', nil, nil)
206
+ end
207
+ @default_value = default_value
208
+ @key_modified['default_value'] = 1
209
+ end
210
+
211
+ # The method to get the blueprint_supported
212
+ # @return A Boolean value
213
+
214
+ def blueprint_supported
215
+ @blueprint_supported
216
+ end
217
+
218
+ # The method to set the value to blueprint_supported
219
+ # @param blueprint_supported [Boolean] A Boolean
220
+
221
+ def blueprint_supported=(blueprint_supported)
222
+ if blueprint_supported!=nil and ! [true, false].include?blueprint_supported
223
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: blueprint_supported EXPECTED TYPE: Boolean', nil, nil)
224
+ end
225
+ @blueprint_supported = blueprint_supported
226
+ @key_modified['blueprint_supported'] = 1
227
+ end
228
+
229
+ # The method to get the virtual_field
230
+ # @return A Boolean value
231
+
232
+ def virtual_field
233
+ @virtual_field
234
+ end
235
+
236
+ # The method to set the value to virtual_field
237
+ # @param virtual_field [Boolean] A Boolean
238
+
239
+ def virtual_field=(virtual_field)
240
+ if virtual_field!=nil and ! [true, false].include?virtual_field
241
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: virtual_field EXPECTED TYPE: Boolean', nil, nil)
242
+ end
243
+ @virtual_field = virtual_field
244
+ @key_modified['virtual_field'] = 1
245
+ end
246
+
247
+ # The method to get the field_read_only
248
+ # @return A Boolean value
249
+
250
+ def field_read_only
251
+ @field_read_only
252
+ end
253
+
254
+ # The method to set the value to field_read_only
255
+ # @param field_read_only [Boolean] A Boolean
256
+
257
+ def field_read_only=(field_read_only)
258
+ if field_read_only!=nil and ! [true, false].include?field_read_only
259
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_read_only EXPECTED TYPE: Boolean', nil, nil)
260
+ end
261
+ @field_read_only = field_read_only
262
+ @key_modified['field_read_only'] = 1
263
+ end
264
+
265
+ # The method to get the read_only
266
+ # @return A Boolean value
267
+
268
+ def read_only
269
+ @read_only
270
+ end
271
+
272
+ # The method to set the value to read_only
273
+ # @param read_only [Boolean] A Boolean
274
+
275
+ def read_only=(read_only)
276
+ if read_only!=nil and ! [true, false].include?read_only
277
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: read_only EXPECTED TYPE: Boolean', nil, nil)
278
+ end
279
+ @read_only = read_only
280
+ @key_modified['read_only'] = 1
281
+ end
282
+
283
+ # The method to get the custom_field
284
+ # @return A Boolean value
285
+
286
+ def custom_field
287
+ @custom_field
288
+ end
289
+
290
+ # The method to set the value to custom_field
291
+ # @param custom_field [Boolean] A Boolean
292
+
293
+ def custom_field=(custom_field)
294
+ if custom_field!=nil and ! [true, false].include?custom_field
295
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: custom_field EXPECTED TYPE: Boolean', nil, nil)
296
+ end
297
+ @custom_field = custom_field
298
+ @key_modified['custom_field'] = 1
299
+ end
300
+
301
+ # The method to get the businesscard_supported
302
+ # @return A Boolean value
303
+
304
+ def businesscard_supported
305
+ @businesscard_supported
306
+ end
307
+
308
+ # The method to set the value to businesscard_supported
309
+ # @param businesscard_supported [Boolean] A Boolean
310
+
311
+ def businesscard_supported=(businesscard_supported)
312
+ if businesscard_supported!=nil and ! [true, false].include?businesscard_supported
313
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: businesscard_supported EXPECTED TYPE: Boolean', nil, nil)
314
+ end
315
+ @businesscard_supported = businesscard_supported
316
+ @key_modified['businesscard_supported'] = 1
317
+ end
318
+
319
+ # The method to get the filterable
320
+ # @return A Boolean value
321
+
322
+ def filterable
323
+ @filterable
324
+ end
325
+
326
+ # The method to set the value to filterable
327
+ # @param filterable [Boolean] A Boolean
328
+
329
+ def filterable=(filterable)
330
+ if filterable!=nil and ! [true, false].include?filterable
331
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filterable EXPECTED TYPE: Boolean', nil, nil)
332
+ end
333
+ @filterable = filterable
334
+ @key_modified['filterable'] = 1
335
+ end
336
+
337
+ # The method to get the visible
338
+ # @return A Boolean value
339
+
340
+ def visible
341
+ @visible
342
+ end
343
+
344
+ # The method to set the value to visible
345
+ # @param visible [Boolean] A Boolean
346
+
347
+ def visible=(visible)
348
+ if visible!=nil and ! [true, false].include?visible
349
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visible EXPECTED TYPE: Boolean', nil, nil)
350
+ end
351
+ @visible = visible
352
+ @key_modified['visible'] = 1
353
+ end
354
+
355
+ # The method to get the available_in_user_layout
356
+ # @return A Boolean value
357
+
358
+ def available_in_user_layout
359
+ @available_in_user_layout
360
+ end
361
+
362
+ # The method to set the value to available_in_user_layout
363
+ # @param available_in_user_layout [Boolean] A Boolean
364
+
365
+ def available_in_user_layout=(available_in_user_layout)
366
+ if available_in_user_layout!=nil and ! [true, false].include?available_in_user_layout
367
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: available_in_user_layout EXPECTED TYPE: Boolean', nil, nil)
368
+ end
369
+ @available_in_user_layout = available_in_user_layout
370
+ @key_modified['available_in_user_layout'] = 1
371
+ end
372
+
373
+ # The method to get the display_field
374
+ # @return A Boolean value
375
+
376
+ def display_field
377
+ @display_field
378
+ end
379
+
380
+ # The method to set the value to display_field
381
+ # @param display_field [Boolean] A Boolean
382
+
383
+ def display_field=(display_field)
384
+ if display_field!=nil and ! [true, false].include?display_field
385
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_field EXPECTED TYPE: Boolean', nil, nil)
386
+ end
387
+ @display_field = display_field
388
+ @key_modified['display_field'] = 1
389
+ end
390
+
391
+ # The method to get the pick_list_values_sorted_lexically
392
+ # @return A Boolean value
393
+
394
+ def pick_list_values_sorted_lexically
395
+ @pick_list_values_sorted_lexically
396
+ end
397
+
398
+ # The method to set the value to pick_list_values_sorted_lexically
399
+ # @param pick_list_values_sorted_lexically [Boolean] A Boolean
400
+
401
+ def pick_list_values_sorted_lexically=(pick_list_values_sorted_lexically)
402
+ if pick_list_values_sorted_lexically!=nil and ! [true, false].include?pick_list_values_sorted_lexically
403
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: pick_list_values_sorted_lexically EXPECTED TYPE: Boolean', nil, nil)
404
+ end
405
+ @pick_list_values_sorted_lexically = pick_list_values_sorted_lexically
406
+ @key_modified['pick_list_values_sorted_lexically'] = 1
407
+ end
408
+
409
+ # The method to get the sortable
410
+ # @return A Boolean value
411
+
412
+ def sortable
413
+ @sortable
414
+ end
415
+
416
+ # The method to set the value to sortable
417
+ # @param sortable [Boolean] A Boolean
418
+
419
+ def sortable=(sortable)
420
+ if sortable!=nil and ! [true, false].include?sortable
421
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sortable EXPECTED TYPE: Boolean', nil, nil)
422
+ end
423
+ @sortable = sortable
424
+ @key_modified['sortable'] = 1
425
+ end
426
+
427
+ # The method to get the separator
428
+ # @return A Boolean value
429
+
430
+ def separator
431
+ @separator
432
+ end
433
+
434
+ # The method to set the value to separator
435
+ # @param separator [Boolean] A Boolean
436
+
437
+ def separator=(separator)
438
+ if separator!=nil and ! [true, false].include?separator
439
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: separator EXPECTED TYPE: Boolean', nil, nil)
440
+ end
441
+ @separator = separator
442
+ @key_modified['separator'] = 1
443
+ end
444
+
445
+ # The method to get the searchable
446
+ # @return A Boolean value
447
+
448
+ def searchable
449
+ @searchable
450
+ end
451
+
452
+ # The method to set the value to searchable
453
+ # @param searchable [Boolean] A Boolean
454
+
455
+ def searchable=(searchable)
456
+ if searchable!=nil and ! [true, false].include?searchable
457
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: searchable EXPECTED TYPE: Boolean', nil, nil)
458
+ end
459
+ @searchable = searchable
460
+ @key_modified['searchable'] = 1
461
+ end
462
+
463
+ # The method to get the enable_colour_code
464
+ # @return A Boolean value
465
+
466
+ def enable_colour_code
467
+ @enable_colour_code
468
+ end
469
+
470
+ # The method to set the value to enable_colour_code
471
+ # @param enable_colour_code [Boolean] A Boolean
472
+
473
+ def enable_colour_code=(enable_colour_code)
474
+ if enable_colour_code!=nil and ! [true, false].include?enable_colour_code
475
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: enable_colour_code EXPECTED TYPE: Boolean', nil, nil)
476
+ end
477
+ @enable_colour_code = enable_colour_code
478
+ @key_modified['enable_colour_code'] = 1
479
+ end
480
+
481
+ # The method to get the mass_update
482
+ # @return A Boolean value
483
+
484
+ def mass_update
485
+ @mass_update
486
+ end
487
+
488
+ # The method to set the value to mass_update
489
+ # @param mass_update [Boolean] A Boolean
490
+
491
+ def mass_update=(mass_update)
492
+ if mass_update!=nil and ! [true, false].include?mass_update
493
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: mass_update EXPECTED TYPE: Boolean', nil, nil)
494
+ end
495
+ @mass_update = mass_update
496
+ @key_modified['mass_update'] = 1
497
+ end
498
+
499
+ # The method to get the json_type
500
+ # @return A String value
501
+
502
+ def json_type
503
+ @json_type
504
+ end
505
+
506
+ # The method to set the value to json_type
507
+ # @param json_type [String] A String
508
+
509
+ def json_type=(json_type)
510
+ if json_type!=nil and !json_type.is_a? String
511
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: json_type EXPECTED TYPE: String', nil, nil)
512
+ end
513
+ @json_type = json_type
514
+ @key_modified['json_type'] = 1
515
+ end
516
+
517
+ # The method to get the created_source
518
+ # @return A String value
519
+
520
+ def created_source
521
+ @created_source
522
+ end
523
+
524
+ # The method to set the value to created_source
525
+ # @param created_source [String] A String
526
+
527
+ def created_source=(created_source)
528
+ if created_source!=nil and !created_source.is_a? String
529
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_source EXPECTED TYPE: String', nil, nil)
530
+ end
531
+ @created_source = created_source
532
+ @key_modified['created_source'] = 1
533
+ end
534
+
535
+ # The method to get the type
536
+ # @return A String value
537
+
538
+ def type
539
+ @type
540
+ end
541
+
542
+ # The method to set the value to type
543
+ # @param type [String] A String
544
+
545
+ def type=(type)
546
+ if type!=nil and !type.is_a? String
547
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: type EXPECTED TYPE: String', nil, nil)
548
+ end
549
+ @type = type
550
+ @key_modified['type'] = 1
551
+ end
552
+
553
+ # The method to get the display_label
554
+ # @return A String value
555
+
556
+ def display_label
557
+ @display_label
558
+ end
559
+
560
+ # The method to set the value to display_label
561
+ # @param display_label [String] A String
562
+
563
+ def display_label=(display_label)
564
+ if display_label!=nil and !display_label.is_a? String
565
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_label EXPECTED TYPE: String', nil, nil)
566
+ end
567
+ @display_label = display_label
568
+ @key_modified['display_label'] = 1
569
+ end
570
+
571
+ # The method to get the column_name
572
+ # @return A String value
573
+
574
+ def column_name
575
+ @column_name
576
+ end
577
+
578
+ # The method to set the value to column_name
579
+ # @param column_name [String] A String
580
+
581
+ def column_name=(column_name)
582
+ if column_name!=nil and !column_name.is_a? String
583
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: column_name EXPECTED TYPE: String', nil, nil)
584
+ end
585
+ @column_name = column_name
586
+ @key_modified['column_name'] = 1
587
+ end
588
+
589
+ # The method to get the api_name
590
+ # @return A String value
591
+
592
+ def api_name
593
+ @api_name
594
+ end
595
+
596
+ # The method to set the value to api_name
597
+ # @param api_name [String] A String
598
+
599
+ def api_name=(api_name)
600
+ if api_name!=nil and !api_name.is_a? String
601
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
602
+ end
603
+ @api_name = api_name
604
+ @key_modified['api_name'] = 1
605
+ end
606
+
607
+ # The method to get the display_type
608
+ # @return A Integer value
609
+
610
+ def display_type
611
+ @display_type
612
+ end
613
+
614
+ # The method to set the value to display_type
615
+ # @param display_type [Integer] A Integer
616
+
617
+ def display_type=(display_type)
618
+ if display_type!=nil and !display_type.is_a? Integer
619
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_type EXPECTED TYPE: Integer', nil, nil)
620
+ end
621
+ @display_type = display_type
622
+ @key_modified['display_type'] = 1
623
+ end
624
+
625
+ # The method to get the ui_type
626
+ # @return A Integer value
627
+
628
+ def ui_type
629
+ @ui_type
630
+ end
631
+
632
+ # The method to set the value to ui_type
633
+ # @param ui_type [Integer] A Integer
634
+
635
+ def ui_type=(ui_type)
636
+ if ui_type!=nil and !ui_type.is_a? Integer
637
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: ui_type EXPECTED TYPE: Integer', nil, nil)
638
+ end
639
+ @ui_type = ui_type
640
+ @key_modified['ui_type'] = 1
641
+ end
642
+
643
+ # The method to get the length
644
+ # @return An instance of Util::Choice
645
+
646
+ def length
647
+ @length
648
+ end
649
+
650
+ # The method to set the value to length
651
+ # @param length [Util::Choice] An instance of Util::Choice
652
+
653
+ def length=(length)
654
+ if length!=nil and !length.is_a? Util::Choice
655
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: length EXPECTED TYPE: Util::Choice', nil, nil)
656
+ end
657
+ @length = length
658
+ @key_modified['length'] = 1
659
+ end
660
+
661
+ # The method to get the decimal_place
662
+ # @return A Integer value
663
+
664
+ def decimal_place
665
+ @decimal_place
666
+ end
667
+
668
+ # The method to set the value to decimal_place
669
+ # @param decimal_place [Integer] A Integer
670
+
671
+ def decimal_place=(decimal_place)
672
+ if decimal_place!=nil and !decimal_place.is_a? Integer
673
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: decimal_place EXPECTED TYPE: Integer', nil, nil)
674
+ end
675
+ @decimal_place = decimal_place
676
+ @key_modified['decimal_place'] = 1
677
+ end
678
+
679
+ # The method to get the quick_sequence_number
680
+ # @return A String value
681
+
682
+ def quick_sequence_number
683
+ @quick_sequence_number
684
+ end
685
+
686
+ # The method to set the value to quick_sequence_number
687
+ # @param quick_sequence_number [String] A String
688
+
689
+ def quick_sequence_number=(quick_sequence_number)
690
+ if quick_sequence_number!=nil and !quick_sequence_number.is_a? String
691
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quick_sequence_number EXPECTED TYPE: String', nil, nil)
692
+ end
693
+ @quick_sequence_number = quick_sequence_number
694
+ @key_modified['quick_sequence_number'] = 1
695
+ end
696
+
697
+ # The method to get the email_parser
698
+ # @return An instance of EmailParser
699
+
700
+ def email_parser
701
+ @email_parser
702
+ end
703
+
704
+ # The method to set the value to email_parser
705
+ # @param email_parser [EmailParser] An instance of EmailParser
706
+
707
+ def email_parser=(email_parser)
708
+ if email_parser!=nil and !email_parser.is_a? EmailParser
709
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: email_parser EXPECTED TYPE: EmailParser', nil, nil)
710
+ end
711
+ @email_parser = email_parser
712
+ @key_modified['email_parser'] = 1
713
+ end
714
+
715
+ # The method to get the rollup_summary
716
+ # @return An instance of RollupSummary
717
+
718
+ def rollup_summary
719
+ @rollup_summary
720
+ end
721
+
722
+ # The method to set the value to rollup_summary
723
+ # @param rollup_summary [RollupSummary] An instance of RollupSummary
724
+
725
+ def rollup_summary=(rollup_summary)
726
+ if rollup_summary!=nil and !rollup_summary.is_a? RollupSummary
727
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: rollup_summary EXPECTED TYPE: RollupSummary', nil, nil)
728
+ end
729
+ @rollup_summary = rollup_summary
730
+ @key_modified['rollup_summary'] = 1
731
+ end
732
+
733
+ # The method to get the refer_from_field
734
+ # @return An instance of ReferFromField
735
+
736
+ def refer_from_field
737
+ @refer_from_field
738
+ end
739
+
740
+ # The method to set the value to refer_from_field
741
+ # @param refer_from_field [ReferFromField] An instance of ReferFromField
742
+
743
+ def refer_from_field=(refer_from_field)
744
+ if refer_from_field!=nil and !refer_from_field.is_a? ReferFromField
745
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: refer_from_field EXPECTED TYPE: ReferFromField', nil, nil)
746
+ end
747
+ @refer_from_field = refer_from_field
748
+ @key_modified['refer_from_field'] = 1
749
+ end
750
+
751
+ # The method to get the created_time
752
+ # @return An instance of DateTime
753
+
754
+ def created_time
755
+ @created_time
756
+ end
757
+
758
+ # The method to set the value to created_time
759
+ # @param created_time [DateTime] An instance of DateTime
760
+
761
+ def created_time=(created_time)
762
+ if created_time!=nil and !created_time.is_a? DateTime
763
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_time EXPECTED TYPE: DateTime', nil, nil)
764
+ end
765
+ @created_time = created_time
766
+ @key_modified['created_time'] = 1
767
+ end
768
+
769
+ # The method to get the modified_time
770
+ # @return An instance of DateTime
771
+
772
+ def modified_time
773
+ @modified_time
774
+ end
775
+
776
+ # The method to set the value to modified_time
777
+ # @param modified_time [DateTime] An instance of DateTime
778
+
779
+ def modified_time=(modified_time)
780
+ if modified_time!=nil and !modified_time.is_a? DateTime
781
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_time EXPECTED TYPE: DateTime', nil, nil)
782
+ end
783
+ @modified_time = modified_time
784
+ @key_modified['modified_time'] = 1
785
+ end
786
+
787
+ # The method to get the show_type
788
+ # @return A Integer value
789
+
790
+ def show_type
791
+ @show_type
792
+ end
793
+
794
+ # The method to set the value to show_type
795
+ # @param show_type [Integer] A Integer
796
+
797
+ def show_type=(show_type)
798
+ if show_type!=nil and !show_type.is_a? Integer
799
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: show_type EXPECTED TYPE: Integer', nil, nil)
800
+ end
801
+ @show_type = show_type
802
+ @key_modified['show_type'] = 1
803
+ end
804
+
805
+ # The method to get the category
806
+ # @return A Integer value
807
+
808
+ def category
809
+ @category
810
+ end
811
+
812
+ # The method to set the value to category
813
+ # @param category [Integer] A Integer
814
+
815
+ def category=(category)
816
+ if category!=nil and !category.is_a? Integer
817
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: category EXPECTED TYPE: Integer', nil, nil)
818
+ end
819
+ @category = category
820
+ @key_modified['category'] = 1
821
+ end
822
+
823
+ # The method to get the id
824
+ # @return A Integer value
825
+
826
+ def id
827
+ @id
828
+ end
829
+
830
+ # The method to set the value to id
831
+ # @param id [Integer] A Integer
832
+
833
+ def id=(id)
834
+ if id!=nil and !id.is_a? Integer
835
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
836
+ end
837
+ @id = id
838
+ @key_modified['id'] = 1
839
+ end
840
+
841
+ # The method to get the multi_module_lookup
842
+ # @return An instance of MultiModuleLookup
843
+
844
+ def multi_module_lookup
845
+ @multi_module_lookup
846
+ end
847
+
848
+ # The method to set the value to multi_module_lookup
849
+ # @param multi_module_lookup [MultiModuleLookup] An instance of MultiModuleLookup
850
+
851
+ def multi_module_lookup=(multi_module_lookup)
852
+ if multi_module_lookup!=nil and !multi_module_lookup.is_a? MultiModuleLookup
853
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multi_module_lookup EXPECTED TYPE: MultiModuleLookup', nil, nil)
854
+ end
855
+ @multi_module_lookup = multi_module_lookup
856
+ @key_modified['multi_module_lookup'] = 1
857
+ end
858
+
859
+ # The method to get the sharing_properties
860
+ # @return An instance of Modules::SharingProperties
861
+
862
+ def sharing_properties
863
+ @sharing_properties
864
+ end
865
+
866
+ # The method to set the value to sharing_properties
867
+ # @param sharing_properties [Modules::SharingProperties] An instance of Modules::SharingProperties
868
+
869
+ def sharing_properties=(sharing_properties)
870
+ if sharing_properties!=nil and !sharing_properties.is_a? Modules::SharingProperties
871
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sharing_properties EXPECTED TYPE: SharingProperties', nil, nil)
872
+ end
873
+ @sharing_properties = sharing_properties
874
+ @key_modified['sharing_properties'] = 1
875
+ end
876
+
877
+ # The method to get the currency
878
+ # @return An instance of Currency
879
+
880
+ def currency
881
+ @currency
882
+ end
883
+
884
+ # The method to set the value to currency
885
+ # @param currency [Currency] An instance of Currency
886
+
887
+ def currency=(currency)
888
+ if currency!=nil and !currency.is_a? Currency
889
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: currency EXPECTED TYPE: Currency', nil, nil)
890
+ end
891
+ @currency = currency
892
+ @key_modified['currency'] = 1
893
+ end
894
+
895
+ # The method to get the file_upolad_optionlist
896
+ # @return An instance of Array
897
+
898
+ def file_upolad_optionlist
899
+ @file_upolad_optionlist
900
+ end
901
+
902
+ # The method to set the value to file_upolad_optionlist
903
+ # @param file_upolad_optionlist [Array] An instance of Array
904
+
905
+ def file_upolad_optionlist=(file_upolad_optionlist)
906
+ if file_upolad_optionlist!=nil and !file_upolad_optionlist.is_a? Array
907
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: file_upolad_optionlist EXPECTED TYPE: Array', nil, nil)
908
+ end
909
+ @file_upolad_optionlist = file_upolad_optionlist
910
+ @key_modified['file_upolad_optionlist'] = 1
911
+ end
912
+
913
+ # The method to get the lookup
914
+ # @return An instance of Lookup
915
+
916
+ def lookup
917
+ @lookup
918
+ end
919
+
920
+ # The method to set the value to lookup
921
+ # @param lookup [Lookup] An instance of Lookup
922
+
923
+ def lookup=(lookup)
924
+ if lookup!=nil and !lookup.is_a? Lookup
925
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: lookup EXPECTED TYPE: Lookup', nil, nil)
926
+ end
927
+ @lookup = lookup
928
+ @key_modified['lookup'] = 1
929
+ end
930
+
931
+ # The method to get the profiles
932
+ # @return An instance of Array
933
+
934
+ def profiles
935
+ @profiles
936
+ end
937
+
938
+ # The method to set the value to profiles
939
+ # @param profiles [Array] An instance of Array
940
+
941
+ def profiles=(profiles)
942
+ if profiles!=nil and !profiles.is_a? Array
943
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: profiles EXPECTED TYPE: Array', nil, nil)
944
+ end
945
+ @profiles = profiles
946
+ @key_modified['profiles'] = 1
947
+ end
948
+
949
+ # The method to get the view_type
950
+ # @return An instance of ViewType
951
+
952
+ def view_type
953
+ @view_type
954
+ end
955
+
956
+ # The method to set the value to view_type
957
+ # @param view_type [ViewType] An instance of ViewType
958
+
959
+ def view_type=(view_type)
960
+ if view_type!=nil and !view_type.is_a? ViewType
961
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: view_type EXPECTED TYPE: ViewType', nil, nil)
962
+ end
963
+ @view_type = view_type
964
+ @key_modified['view_type'] = 1
965
+ end
966
+
967
+ # The method to get the unique
968
+ # @return An instance of Unique
969
+
970
+ def unique
971
+ @unique
972
+ end
973
+
974
+ # The method to set the value to unique
975
+ # @param unique [Unique] An instance of Unique
976
+
977
+ def unique=(unique)
978
+ if unique!=nil and !unique.is_a? Unique
979
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: unique EXPECTED TYPE: Unique', nil, nil)
980
+ end
981
+ @unique = unique
982
+ @key_modified['unique'] = 1
983
+ end
984
+
985
+ # The method to get the sub_module
986
+ # @return An instance of Modules::MinifiedModule
987
+
988
+ def sub_module
989
+ @sub_module
990
+ end
991
+
992
+ # The method to set the value to sub_module
993
+ # @param sub_module [Modules::MinifiedModule] An instance of Modules::MinifiedModule
994
+
995
+ def sub_module=(sub_module)
996
+ if sub_module!=nil and !sub_module.is_a? Modules::MinifiedModule
997
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sub_module EXPECTED TYPE: MinifiedModule', nil, nil)
998
+ end
999
+ @sub_module = sub_module
1000
+ @key_modified['sub_module'] = 1
1001
+ end
1002
+
1003
+ # The method to get the external
1004
+ # @return An instance of External
1005
+
1006
+ def external
1007
+ @external
1008
+ end
1009
+
1010
+ # The method to set the value to external
1011
+ # @param external [External] An instance of External
1012
+
1013
+ def external=(external)
1014
+ if external!=nil and !external.is_a? External
1015
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: external EXPECTED TYPE: External', nil, nil)
1016
+ end
1017
+ @external = external
1018
+ @key_modified['external'] = 1
1019
+ end
1020
+
1021
+ # The method to get the formula
1022
+ # @return An instance of Formula
1023
+
1024
+ def formula
1025
+ @formula
1026
+ end
1027
+
1028
+ # The method to set the value to formula
1029
+ # @param formula [Formula] An instance of Formula
1030
+
1031
+ def formula=(formula)
1032
+ if formula!=nil and !formula.is_a? Formula
1033
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: formula EXPECTED TYPE: Formula', nil, nil)
1034
+ end
1035
+ @formula = formula
1036
+ @key_modified['formula'] = 1
1037
+ end
1038
+
1039
+ # The method to get the private
1040
+ # @return An instance of Private
1041
+
1042
+ def private_1
1043
+ @private
1044
+ end
1045
+
1046
+ # The method to set the value to private
1047
+ # @param private [Private] An instance of Private
1048
+
1049
+ def private_1=(private)
1050
+ if private!=nil and !private.is_a? Private
1051
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: private EXPECTED TYPE: Private', nil, nil)
1052
+ end
1053
+ @private = private
1054
+ @key_modified['private'] = 1
1055
+ end
1056
+
1057
+ # The method to get the convert_mapping
1058
+ # @return An instance of ConvertMapping
1059
+
1060
+ def convert_mapping
1061
+ @convert_mapping
1062
+ end
1063
+
1064
+ # The method to set the value to convert_mapping
1065
+ # @param convert_mapping [ConvertMapping] An instance of ConvertMapping
1066
+
1067
+ def convert_mapping=(convert_mapping)
1068
+ if convert_mapping!=nil and !convert_mapping.is_a? ConvertMapping
1069
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: convert_mapping EXPECTED TYPE: ConvertMapping', nil, nil)
1070
+ end
1071
+ @convert_mapping = convert_mapping
1072
+ @key_modified['convert_mapping'] = 1
1073
+ end
1074
+
1075
+ # The method to get the multiselectlookup
1076
+ # @return An instance of Multiselectlookup
1077
+
1078
+ def multiselectlookup
1079
+ @multiselectlookup
1080
+ end
1081
+
1082
+ # The method to set the value to multiselectlookup
1083
+ # @param multiselectlookup [Multiselectlookup] An instance of Multiselectlookup
1084
+
1085
+ def multiselectlookup=(multiselectlookup)
1086
+ if multiselectlookup!=nil and !multiselectlookup.is_a? Multiselectlookup
1087
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multiselectlookup EXPECTED TYPE: Multiselectlookup', nil, nil)
1088
+ end
1089
+ @multiselectlookup = multiselectlookup
1090
+ @key_modified['multiselectlookup'] = 1
1091
+ end
1092
+
1093
+ # The method to get the multiuserlookup
1094
+ # @return An instance of Multiselectlookup
1095
+
1096
+ def multiuserlookup
1097
+ @multiuserlookup
1098
+ end
1099
+
1100
+ # The method to set the value to multiuserlookup
1101
+ # @param multiuserlookup [Multiselectlookup] An instance of Multiselectlookup
1102
+
1103
+ def multiuserlookup=(multiuserlookup)
1104
+ if multiuserlookup!=nil and !multiuserlookup.is_a? Multiselectlookup
1105
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multiuserlookup EXPECTED TYPE: Multiselectlookup', nil, nil)
1106
+ end
1107
+ @multiuserlookup = multiuserlookup
1108
+ @key_modified['multiuserlookup'] = 1
1109
+ end
1110
+
1111
+ # The method to get the auto_number
1112
+ # @return An instance of AutoNumber
1113
+
1114
+ def auto_number
1115
+ @auto_number
1116
+ end
1117
+
1118
+ # The method to set the value to auto_number
1119
+ # @param auto_number [AutoNumber] An instance of AutoNumber
1120
+
1121
+ def auto_number=(auto_number)
1122
+ if auto_number!=nil and !auto_number.is_a? AutoNumber
1123
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: auto_number EXPECTED TYPE: AutoNumber', nil, nil)
1124
+ end
1125
+ @auto_number = auto_number
1126
+ @key_modified['auto_number'] = 1
1127
+ end
1128
+
1129
+ # The method to get the pick_list_values
1130
+ # @return An instance of Array
1131
+
1132
+ def pick_list_values
1133
+ @pick_list_values
1134
+ end
1135
+
1136
+ # The method to set the value to pick_list_values
1137
+ # @param pick_list_values [Array] An instance of Array
1138
+
1139
+ def pick_list_values=(pick_list_values)
1140
+ if pick_list_values!=nil and !pick_list_values.is_a? Array
1141
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: pick_list_values EXPECTED TYPE: Array', nil, nil)
1142
+ end
1143
+ @pick_list_values = pick_list_values
1144
+ @key_modified['pick_list_values'] = 1
1145
+ end
1146
+
1147
+ # The method to get the crypt
1148
+ # @return An instance of Crypt
1149
+
1150
+ def crypt
1151
+ @crypt
1152
+ end
1153
+
1154
+ # The method to set the value to crypt
1155
+ # @param crypt [Crypt] An instance of Crypt
1156
+
1157
+ def crypt=(crypt)
1158
+ if crypt!=nil and !crypt.is_a? Crypt
1159
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: crypt EXPECTED TYPE: Crypt', nil, nil)
1160
+ end
1161
+ @crypt = crypt
1162
+ @key_modified['crypt'] = 1
1163
+ end
1164
+
1165
+ # The method to get the tooltip
1166
+ # @return An instance of Tooltip
1167
+
1168
+ def tooltip
1169
+ @tooltip
1170
+ end
1171
+
1172
+ # The method to set the value to tooltip
1173
+ # @param tooltip [Tooltip] An instance of Tooltip
1174
+
1175
+ def tooltip=(tooltip)
1176
+ if tooltip!=nil and !tooltip.is_a? Tooltip
1177
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: tooltip EXPECTED TYPE: Tooltip', nil, nil)
1178
+ end
1179
+ @tooltip = tooltip
1180
+ @key_modified['tooltip'] = 1
1181
+ end
1182
+
1183
+ # The method to get the history_tracking
1184
+ # @return An instance of HistoryTracking
1185
+
1186
+ def history_tracking
1187
+ @history_tracking
1188
+ end
1189
+
1190
+ # The method to set the value to history_tracking
1191
+ # @param history_tracking [HistoryTracking] An instance of HistoryTracking
1192
+
1193
+ def history_tracking=(history_tracking)
1194
+ if history_tracking!=nil and !history_tracking.is_a? HistoryTracking
1195
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: history_tracking EXPECTED TYPE: HistoryTracking', nil, nil)
1196
+ end
1197
+ @history_tracking = history_tracking
1198
+ @key_modified['history_tracking'] = 1
1199
+ end
1200
+
1201
+ # The method to get the association_details
1202
+ # @return An instance of AssociationDetails
1203
+
1204
+ def association_details
1205
+ @association_details
1206
+ end
1207
+
1208
+ # The method to set the value to association_details
1209
+ # @param association_details [AssociationDetails] An instance of AssociationDetails
1210
+
1211
+ def association_details=(association_details)
1212
+ if association_details!=nil and !association_details.is_a? AssociationDetails
1213
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: association_details EXPECTED TYPE: AssociationDetails', nil, nil)
1214
+ end
1215
+ @association_details = association_details
1216
+ @key_modified['association_details'] = 1
1217
+ end
1218
+
1219
+ # The method to get the allowed_modules
1220
+ # @return An instance of Array
1221
+
1222
+ def allowed_modules
1223
+ @allowed_modules
1224
+ end
1225
+
1226
+ # The method to set the value to allowed_modules
1227
+ # @param allowed_modules [Array] An instance of Array
1228
+
1229
+ def allowed_modules=(allowed_modules)
1230
+ if allowed_modules!=nil and !allowed_modules.is_a? Array
1231
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: allowed_modules EXPECTED TYPE: Array', nil, nil)
1232
+ end
1233
+ @allowed_modules = allowed_modules
1234
+ @key_modified['allowed_modules'] = 1
1235
+ end
1236
+
1237
+ # The method to get the additional_column
1238
+ # @return A String value
1239
+
1240
+ def additional_column
1241
+ @additional_column
1242
+ end
1243
+
1244
+ # The method to set the value to additional_column
1245
+ # @param additional_column [String] A String
1246
+
1247
+ def additional_column=(additional_column)
1248
+ if additional_column!=nil and !additional_column.is_a? String
1249
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: additional_column EXPECTED TYPE: String', nil, nil)
1250
+ end
1251
+ @additional_column = additional_column
1252
+ @key_modified['additional_column'] = 1
1253
+ end
1254
+
1255
+ # The method to get the field_label
1256
+ # @return A String value
1257
+
1258
+ def field_label
1259
+ @field_label
1260
+ end
1261
+
1262
+ # The method to set the value to field_label
1263
+ # @param field_label [String] A String
1264
+
1265
+ def field_label=(field_label)
1266
+ if field_label!=nil and !field_label.is_a? String
1267
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_label EXPECTED TYPE: String', nil, nil)
1268
+ end
1269
+ @field_label = field_label
1270
+ @key_modified['field_label'] = 1
1271
+ end
1272
+
1273
+ # The method to get the global_picklist
1274
+ # @return A lang::Object value
1275
+
1276
+ def global_picklist
1277
+ @global_picklist
1278
+ end
1279
+
1280
+ # The method to set the value to global_picklist
1281
+ # @param global_picklist [lang::Object] A lang::Object
1282
+
1283
+ def global_picklist=(global_picklist)
1284
+ @global_picklist = global_picklist
1285
+ @key_modified['global_picklist'] = 1
1286
+ end
1287
+
1288
+ # The method to get the hipaa_compliance_enabled
1289
+ # @return A Boolean value
1290
+
1291
+ def hipaa_compliance_enabled
1292
+ @hipaa_compliance_enabled
1293
+ end
1294
+
1295
+ # The method to set the value to hipaa_compliance_enabled
1296
+ # @param hipaa_compliance_enabled [Boolean] A Boolean
1297
+
1298
+ def hipaa_compliance_enabled=(hipaa_compliance_enabled)
1299
+ if hipaa_compliance_enabled!=nil and ! [true, false].include?hipaa_compliance_enabled
1300
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: hipaa_compliance_enabled EXPECTED TYPE: Boolean', nil, nil)
1301
+ end
1302
+ @hipaa_compliance_enabled = hipaa_compliance_enabled
1303
+ @key_modified['hipaa_compliance_enabled'] = 1
1304
+ end
1305
+
1306
+ # The method to get the hipaa_compliance
1307
+ # @return An instance of HipaaCompliance
1308
+
1309
+ def hipaa_compliance
1310
+ @hipaa_compliance
1311
+ end
1312
+
1313
+ # The method to set the value to hipaa_compliance
1314
+ # @param hipaa_compliance [HipaaCompliance] An instance of HipaaCompliance
1315
+
1316
+ def hipaa_compliance=(hipaa_compliance)
1317
+ if hipaa_compliance!=nil and !hipaa_compliance.is_a? HipaaCompliance
1318
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: hipaa_compliance EXPECTED TYPE: HipaaCompliance', nil, nil)
1319
+ end
1320
+ @hipaa_compliance = hipaa_compliance
1321
+ @key_modified['hipaa_compliance'] = 1
1322
+ end
1323
+
1324
+ # The method to check if the user has modified the given key
1325
+ # @param key [String] A String
1326
+ # @return A Integer value
1327
+
1328
+ def is_key_modified(key)
1329
+ if key!=nil and !key.is_a? String
1330
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
1331
+ end
1332
+ if @key_modified.key?(key)
1333
+ return @key_modified[key]
1334
+ end
1335
+
1336
+ nil
1337
+ end
1338
+
1339
+ # The method to mark the given key as modified
1340
+ # @param key [String] A String
1341
+ # @param modification [Integer] A Integer
1342
+
1343
+ def set_key_modified(key, modification)
1344
+ if key!=nil and !key.is_a? String
1345
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
1346
+ end
1347
+ if modification!=nil and !modification.is_a? Integer
1348
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
1349
+ end
1350
+ @key_modified[key] = modification
1351
+ end
1352
+
1353
+ end
1354
+ end
1355
+ end