ZOHOCRMSDK8_0 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1624) hide show
  1. checksums.yaml +7 -0
  2. data/src/ZOHOCRMSDK8_0.rb +1619 -0
  3. data/src/com/zoho/api/authenticator/oauth_token.rb +433 -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 +277 -0
  6. data/src/com/zoho/api/authenticator/store/token_store.rb +31 -0
  7. data/src/com/zoho/api/authenticator/token.rb +14 -0
  8. data/src/com/zoho/api/logger/sdk_logger.rb +64 -0
  9. data/src/com/zoho/crm/api/apis/api_exception.rb +123 -0
  10. data/src/com/zoho/crm/api/apis/apis_operations.rb +40 -0
  11. data/src/com/zoho/crm/api/apis/operation_types.rb +120 -0
  12. data/src/com/zoho/crm/api/apis/response_handler.rb +12 -0
  13. data/src/com/zoho/crm/api/apis/response_wrapper.rb +65 -0
  14. data/src/com/zoho/crm/api/apis/supported_api.rb +82 -0
  15. data/src/com/zoho/crm/api/appointment_preference/action_handler.rb +12 -0
  16. data/src/com/zoho/crm/api/appointment_preference/action_response.rb +12 -0
  17. data/src/com/zoho/crm/api/appointment_preference/action_wrapper.rb +65 -0
  18. data/src/com/zoho/crm/api/appointment_preference/api_exception.rb +127 -0
  19. data/src/com/zoho/crm/api/appointment_preference/appointment_preference.rb +159 -0
  20. data/src/com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb +65 -0
  21. data/src/com/zoho/crm/api/appointment_preference/body_wrapper.rb +63 -0
  22. data/src/com/zoho/crm/api/appointment_preference/deal_record_configuration.rb +101 -0
  23. data/src/com/zoho/crm/api/appointment_preference/field.rb +82 -0
  24. data/src/com/zoho/crm/api/appointment_preference/field_mappings.rb +102 -0
  25. data/src/com/zoho/crm/api/appointment_preference/layout.rb +82 -0
  26. data/src/com/zoho/crm/api/appointment_preference/response_handler.rb +12 -0
  27. data/src/com/zoho/crm/api/appointment_preference/response_wrapper.rb +65 -0
  28. data/src/com/zoho/crm/api/appointment_preference/success_response.rb +123 -0
  29. data/src/com/zoho/crm/api/assignment_rules/action_response.rb +12 -0
  30. data/src/com/zoho/crm/api/assignment_rules/action_wrapper.rb +63 -0
  31. data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +125 -0
  32. data/src/com/zoho/crm/api/assignment_rules/assignment_rules.rb +235 -0
  33. data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +75 -0
  34. data/src/com/zoho/crm/api/assignment_rules/default_assignee.rb +82 -0
  35. data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +12 -0
  36. data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +65 -0
  37. data/src/com/zoho/crm/api/assignment_rules/success_response.rb +123 -0
  38. data/src/com/zoho/crm/api/assignment_rules/user.rb +122 -0
  39. data/src/com/zoho/crm/api/associate_email/action_handler.rb +12 -0
  40. data/src/com/zoho/crm/api/associate_email/action_response.rb +12 -0
  41. data/src/com/zoho/crm/api/associate_email/action_wrapper.rb +65 -0
  42. data/src/com/zoho/crm/api/associate_email/api_exception.rb +125 -0
  43. data/src/com/zoho/crm/api/associate_email/associate_email.rb +273 -0
  44. data/src/com/zoho/crm/api/associate_email/associate_email_operations.rb +49 -0
  45. data/src/com/zoho/crm/api/associate_email/attachments.rb +63 -0
  46. data/src/com/zoho/crm/api/associate_email/available.rb +101 -0
  47. data/src/com/zoho/crm/api/associate_email/body_wrapper.rb +63 -0
  48. data/src/com/zoho/crm/api/associate_email/from.rb +82 -0
  49. data/src/com/zoho/crm/api/associate_email/linked_record.rb +82 -0
  50. data/src/com/zoho/crm/api/associate_email/module_map.rb +82 -0
  51. data/src/com/zoho/crm/api/associate_email/record.rb +101 -0
  52. data/src/com/zoho/crm/api/associate_email/success_response.rb +123 -0
  53. data/src/com/zoho/crm/api/associate_email/to.rb +82 -0
  54. data/src/com/zoho/crm/api/attachments/action_handler.rb +12 -0
  55. data/src/com/zoho/crm/api/attachments/action_response.rb +12 -0
  56. data/src/com/zoho/crm/api/attachments/action_wrapper.rb +65 -0
  57. data/src/com/zoho/crm/api/attachments/api_exception.rb +125 -0
  58. data/src/com/zoho/crm/api/attachments/attachment.rb +463 -0
  59. data/src/com/zoho/crm/api/attachments/attachments_operations.rb +247 -0
  60. data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
  61. data/src/com/zoho/crm/api/attachments/info.rb +177 -0
  62. data/src/com/zoho/crm/api/attachments/owner.rb +101 -0
  63. data/src/com/zoho/crm/api/attachments/parent_id.rb +82 -0
  64. data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
  65. data/src/com/zoho/crm/api/attachments/response_wrapper.rb +84 -0
  66. data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
  67. data/src/com/zoho/crm/api/audit_log_export/action_handler.rb +12 -0
  68. data/src/com/zoho/crm/api/audit_log_export/action_response.rb +12 -0
  69. data/src/com/zoho/crm/api/audit_log_export/action_wrapper.rb +65 -0
  70. data/src/com/zoho/crm/api/audit_log_export/api_exception.rb +165 -0
  71. data/src/com/zoho/crm/api/audit_log_export/audit_log_export.rb +196 -0
  72. data/src/com/zoho/crm/api/audit_log_export/audit_log_export_operations.rb +89 -0
  73. data/src/com/zoho/crm/api/audit_log_export/body_wrapper.rb +63 -0
  74. data/src/com/zoho/crm/api/audit_log_export/criteria.rb +136 -0
  75. data/src/com/zoho/crm/api/audit_log_export/field.rb +63 -0
  76. data/src/com/zoho/crm/api/audit_log_export/file_body_wrapper.rb +66 -0
  77. data/src/com/zoho/crm/api/audit_log_export/module.rb +82 -0
  78. data/src/com/zoho/crm/api/audit_log_export/response_handler.rb +12 -0
  79. data/src/com/zoho/crm/api/audit_log_export/response_wrapper.rb +65 -0
  80. data/src/com/zoho/crm/api/audit_log_export/success_response.rb +123 -0
  81. data/src/com/zoho/crm/api/audit_log_export/user.rb +82 -0
  82. data/src/com/zoho/crm/api/available_currencies/api_exception.rb +123 -0
  83. data/src/com/zoho/crm/api/available_currencies/available_currencies_operations.rb +30 -0
  84. data/src/com/zoho/crm/api/available_currencies/currency.rb +177 -0
  85. data/src/com/zoho/crm/api/available_currencies/response_handler.rb +12 -0
  86. data/src/com/zoho/crm/api/available_currencies/response_wrapper.rb +65 -0
  87. data/src/com/zoho/crm/api/backup/action_handler.rb +12 -0
  88. data/src/com/zoho/crm/api/backup/action_response.rb +12 -0
  89. data/src/com/zoho/crm/api/backup/action_wrapper.rb +65 -0
  90. data/src/com/zoho/crm/api/backup/api_exception.rb +127 -0
  91. data/src/com/zoho/crm/api/backup/backup.rb +158 -0
  92. data/src/com/zoho/crm/api/backup/backup_operations.rb +136 -0
  93. data/src/com/zoho/crm/api/backup/body_wrapper.rb +63 -0
  94. data/src/com/zoho/crm/api/backup/file_body_wrapper.rb +66 -0
  95. data/src/com/zoho/crm/api/backup/history.rb +196 -0
  96. data/src/com/zoho/crm/api/backup/history_wrapper.rb +84 -0
  97. data/src/com/zoho/crm/api/backup/info.rb +120 -0
  98. data/src/com/zoho/crm/api/backup/requester.rb +101 -0
  99. data/src/com/zoho/crm/api/backup/response_handler.rb +12 -0
  100. data/src/com/zoho/crm/api/backup/response_wrapper.rb +65 -0
  101. data/src/com/zoho/crm/api/backup/success_response.rb +123 -0
  102. data/src/com/zoho/crm/api/backup/urls.rb +101 -0
  103. data/src/com/zoho/crm/api/backup/urls_wrapper.rb +65 -0
  104. data/src/com/zoho/crm/api/blueprint/action_handler.rb +12 -0
  105. data/src/com/zoho/crm/api/blueprint/api_exception.rb +125 -0
  106. data/src/com/zoho/crm/api/blueprint/association_details.rb +82 -0
  107. data/src/com/zoho/crm/api/blueprint/auto_number.rb +101 -0
  108. data/src/com/zoho/crm/api/blueprint/blue_print.rb +121 -0
  109. data/src/com/zoho/crm/api/blueprint/blueprint_operations.rb +69 -0
  110. data/src/com/zoho/crm/api/blueprint/body_wrapper.rb +63 -0
  111. data/src/com/zoho/crm/api/blueprint/crypt.rb +120 -0
  112. data/src/com/zoho/crm/api/blueprint/currency.rb +82 -0
  113. data/src/com/zoho/crm/api/blueprint/current_picklist.rb +101 -0
  114. data/src/com/zoho/crm/api/blueprint/escalation.rb +82 -0
  115. data/src/com/zoho/crm/api/blueprint/field.rb +924 -0
  116. data/src/com/zoho/crm/api/blueprint/formula.rb +82 -0
  117. data/src/com/zoho/crm/api/blueprint/layout.rb +82 -0
  118. data/src/com/zoho/crm/api/blueprint/lookup_field.rb +82 -0
  119. data/src/com/zoho/crm/api/blueprint/module.rb +120 -0
  120. data/src/com/zoho/crm/api/blueprint/multi_select_lookup.rb +158 -0
  121. data/src/com/zoho/crm/api/blueprint/next_transition.rb +120 -0
  122. data/src/com/zoho/crm/api/blueprint/process_info.rb +272 -0
  123. data/src/com/zoho/crm/api/blueprint/profile.rb +101 -0
  124. data/src/com/zoho/crm/api/blueprint/response_handler.rb +12 -0
  125. data/src/com/zoho/crm/api/blueprint/response_wrapper.rb +65 -0
  126. data/src/com/zoho/crm/api/blueprint/success_response.rb +123 -0
  127. data/src/com/zoho/crm/api/blueprint/tool_tip.rb +82 -0
  128. data/src/com/zoho/crm/api/blueprint/transition.rb +330 -0
  129. data/src/com/zoho/crm/api/blueprint/view_type.rb +120 -0
  130. data/src/com/zoho/crm/api/bulk_read/action_handler.rb +12 -0
  131. data/src/com/zoho/crm/api/bulk_read/action_response.rb +12 -0
  132. data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +84 -0
  133. data/src/com/zoho/crm/api/bulk_read/api_exception.rb +127 -0
  134. data/src/com/zoho/crm/api/bulk_read/body_wrapper.rb +102 -0
  135. data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +76 -0
  136. data/src/com/zoho/crm/api/bulk_read/call_back.rb +83 -0
  137. data/src/com/zoho/crm/api/bulk_read/criteria.rb +176 -0
  138. data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
  139. data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
  140. data/src/com/zoho/crm/api/bulk_read/module_details.rb +82 -0
  141. data/src/com/zoho/crm/api/bulk_read/query.rb +179 -0
  142. data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
  143. data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
  144. data/src/com/zoho/crm/api/bulk_read/result.rb +158 -0
  145. data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
  146. data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
  147. data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
  148. data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
  149. data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
  150. data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
  151. data/src/com/zoho/crm/api/bulk_write/default_value.rb +98 -0
  152. data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +177 -0
  153. data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
  154. data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
  155. data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +140 -0
  156. data/src/com/zoho/crm/api/bulk_write/resource.rb +236 -0
  157. data/src/com/zoho/crm/api/bulk_write/response_handler.rb +12 -0
  158. data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +12 -0
  159. data/src/com/zoho/crm/api/bulk_write/result.rb +63 -0
  160. data/src/com/zoho/crm/api/bulk_write/success_response.rb +123 -0
  161. data/src/com/zoho/crm/api/business_hours/action_handler.rb +12 -0
  162. data/src/com/zoho/crm/api/business_hours/action_response.rb +12 -0
  163. data/src/com/zoho/crm/api/business_hours/action_wrapper.rb +65 -0
  164. data/src/com/zoho/crm/api/business_hours/api_exception.rb +127 -0
  165. data/src/com/zoho/crm/api/business_hours/body_wrapper.rb +63 -0
  166. data/src/com/zoho/crm/api/business_hours/break_hours_custom_timing.rb +83 -0
  167. data/src/com/zoho/crm/api/business_hours/business_hours.rb +197 -0
  168. data/src/com/zoho/crm/api/business_hours/business_hours_operations.rb +90 -0
  169. data/src/com/zoho/crm/api/business_hours/features.rb +82 -0
  170. data/src/com/zoho/crm/api/business_hours/resources.rb +82 -0
  171. data/src/com/zoho/crm/api/business_hours/response_handler.rb +12 -0
  172. data/src/com/zoho/crm/api/business_hours/response_wrapper.rb +65 -0
  173. data/src/com/zoho/crm/api/business_hours/success_response.rb +123 -0
  174. data/src/com/zoho/crm/api/cadences/api_exception.rb +123 -0
  175. data/src/com/zoho/crm/api/cadences/cadences.rb +310 -0
  176. data/src/com/zoho/crm/api/cadences/cadences_operations.rb +30 -0
  177. data/src/com/zoho/crm/api/cadences/custom_view.rb +82 -0
  178. data/src/com/zoho/crm/api/cadences/execute_every.rb +82 -0
  179. data/src/com/zoho/crm/api/cadences/execution_detail.rb +139 -0
  180. data/src/com/zoho/crm/api/cadences/info.rb +120 -0
  181. data/src/com/zoho/crm/api/cadences/module.rb +82 -0
  182. data/src/com/zoho/crm/api/cadences/response_handler.rb +12 -0
  183. data/src/com/zoho/crm/api/cadences/response_wrapper.rb +84 -0
  184. data/src/com/zoho/crm/api/cadences/summary.rb +101 -0
  185. data/src/com/zoho/crm/api/cadences/unenroll_property.rb +82 -0
  186. data/src/com/zoho/crm/api/cadences/user.rb +82 -0
  187. data/src/com/zoho/crm/api/cadences_execution/action.rb +82 -0
  188. data/src/com/zoho/crm/api/cadences_execution/action_handler.rb +12 -0
  189. data/src/com/zoho/crm/api/cadences_execution/action_response.rb +12 -0
  190. data/src/com/zoho/crm/api/cadences_execution/action_wrapper.rb +65 -0
  191. data/src/com/zoho/crm/api/cadences_execution/analytics.rb +120 -0
  192. data/src/com/zoho/crm/api/cadences_execution/analytics_alert.rb +215 -0
  193. data/src/com/zoho/crm/api/cadences_execution/analytics_call.rb +196 -0
  194. data/src/com/zoho/crm/api/cadences_execution/analytics_task.rb +158 -0
  195. data/src/com/zoho/crm/api/cadences_execution/api_exception.rb +125 -0
  196. data/src/com/zoho/crm/api/cadences_execution/body_wrapper.rb +82 -0
  197. data/src/com/zoho/crm/api/cadences_execution/cadence.rb +82 -0
  198. data/src/com/zoho/crm/api/cadences_execution/cadences_analytics_get.rb +139 -0
  199. data/src/com/zoho/crm/api/cadences_execution/cadences_execution_operations.rb +68 -0
  200. data/src/com/zoho/crm/api/cadences_execution/details.rb +82 -0
  201. data/src/com/zoho/crm/api/cadences_execution/module.rb +82 -0
  202. data/src/com/zoho/crm/api/cadences_execution/parent_follow_up.rb +63 -0
  203. data/src/com/zoho/crm/api/cadences_execution/success_response.rb +123 -0
  204. data/src/com/zoho/crm/api/cadences_execution/template.rb +82 -0
  205. data/src/com/zoho/crm/api/cadences_execution/user.rb +82 -0
  206. data/src/com/zoho/crm/api/call_preferences/action_handler.rb +12 -0
  207. data/src/com/zoho/crm/api/call_preferences/action_response.rb +12 -0
  208. data/src/com/zoho/crm/api/call_preferences/action_wrapper.rb +65 -0
  209. data/src/com/zoho/crm/api/call_preferences/api_exception.rb +127 -0
  210. data/src/com/zoho/crm/api/call_preferences/body_wrapper.rb +63 -0
  211. data/src/com/zoho/crm/api/call_preferences/call_preferences.rb +82 -0
  212. data/src/com/zoho/crm/api/call_preferences/call_preferences_operations.rb +51 -0
  213. data/src/com/zoho/crm/api/call_preferences/response_handler.rb +12 -0
  214. data/src/com/zoho/crm/api/call_preferences/response_wrapper.rb +65 -0
  215. data/src/com/zoho/crm/api/call_preferences/success_response.rb +123 -0
  216. data/src/com/zoho/crm/api/cancel_meetings/action_handler.rb +12 -0
  217. data/src/com/zoho/crm/api/cancel_meetings/action_response.rb +12 -0
  218. data/src/com/zoho/crm/api/cancel_meetings/action_wrapper.rb +65 -0
  219. data/src/com/zoho/crm/api/cancel_meetings/api_exception.rb +125 -0
  220. data/src/com/zoho/crm/api/cancel_meetings/body_wrapper.rb +63 -0
  221. data/src/com/zoho/crm/api/cancel_meetings/cancel_meetings_operations.rb +43 -0
  222. data/src/com/zoho/crm/api/cancel_meetings/notify.rb +63 -0
  223. data/src/com/zoho/crm/api/cancel_meetings/success_response.rb +123 -0
  224. data/src/com/zoho/crm/api/change_owner/action_handler.rb +12 -0
  225. data/src/com/zoho/crm/api/change_owner/action_response.rb +12 -0
  226. data/src/com/zoho/crm/api/change_owner/action_wrapper.rb +65 -0
  227. data/src/com/zoho/crm/api/change_owner/api_exception.rb +125 -0
  228. data/src/com/zoho/crm/api/change_owner/body_wrapper.rb +101 -0
  229. data/src/com/zoho/crm/api/change_owner/change_owner_operations.rb +71 -0
  230. data/src/com/zoho/crm/api/change_owner/error_details.rb +82 -0
  231. data/src/com/zoho/crm/api/change_owner/mass_wrapper.rb +122 -0
  232. data/src/com/zoho/crm/api/change_owner/owner.rb +63 -0
  233. data/src/com/zoho/crm/api/change_owner/related_modules.rb +82 -0
  234. data/src/com/zoho/crm/api/change_owner/success_response.rb +123 -0
  235. data/src/com/zoho/crm/api/contact_roles/action_handler.rb +12 -0
  236. data/src/com/zoho/crm/api/contact_roles/action_response.rb +12 -0
  237. data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +65 -0
  238. data/src/com/zoho/crm/api/contact_roles/api_exception.rb +127 -0
  239. data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +63 -0
  240. data/src/com/zoho/crm/api/contact_roles/contact_role.rb +101 -0
  241. data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +163 -0
  242. data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
  243. data/src/com/zoho/crm/api/contact_roles/response_wrapper.rb +65 -0
  244. data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
  245. data/src/com/zoho/crm/api/conversion_option/api_exception.rb +123 -0
  246. data/src/com/zoho/crm/api/conversion_option/conversion_option_operations.rb +40 -0
  247. data/src/com/zoho/crm/api/conversion_option/conversion_options.rb +160 -0
  248. data/src/com/zoho/crm/api/conversion_option/field.rb +82 -0
  249. data/src/com/zoho/crm/api/conversion_option/preference_field_match.rb +82 -0
  250. data/src/com/zoho/crm/api/conversion_option/preference_field_matched_value.rb +101 -0
  251. data/src/com/zoho/crm/api/conversion_option/response_handler.rb +12 -0
  252. data/src/com/zoho/crm/api/conversion_option/response_wrapper.rb +65 -0
  253. data/src/com/zoho/crm/api/convert_lead/action_handler.rb +12 -0
  254. data/src/com/zoho/crm/api/convert_lead/action_response.rb +12 -0
  255. data/src/com/zoho/crm/api/convert_lead/action_wrapper.rb +65 -0
  256. data/src/com/zoho/crm/api/convert_lead/api_exception.rb +125 -0
  257. data/src/com/zoho/crm/api/convert_lead/body_wrapper.rb +63 -0
  258. data/src/com/zoho/crm/api/convert_lead/carry_over_tags.rb +101 -0
  259. data/src/com/zoho/crm/api/convert_lead/convert_lead_operations.rb +47 -0
  260. data/src/com/zoho/crm/api/convert_lead/lead_converter.rb +237 -0
  261. data/src/com/zoho/crm/api/convert_lead/move_attachments_to.rb +82 -0
  262. data/src/com/zoho/crm/api/convert_lead/success_response.rb +123 -0
  263. data/src/com/zoho/crm/api/coql/api_exception.rb +123 -0
  264. data/src/com/zoho/crm/api/coql/body_wrapper.rb +63 -0
  265. data/src/com/zoho/crm/api/coql/clause_details.rb +65 -0
  266. data/src/com/zoho/crm/api/coql/coql_operations.rb +36 -0
  267. data/src/com/zoho/crm/api/coql/details_wrapper.rb +12 -0
  268. data/src/com/zoho/crm/api/coql/parse_error_details.rb +103 -0
  269. data/src/com/zoho/crm/api/coql/response_handler.rb +12 -0
  270. data/src/com/zoho/crm/api/coql/response_wrapper.rb +86 -0
  271. data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
  272. data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
  273. data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
  274. data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
  275. data/src/com/zoho/crm/api/currencies/base_currency.rb +292 -0
  276. data/src/com/zoho/crm/api/currencies/base_currency_action_response.rb +12 -0
  277. data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +65 -0
  278. data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +63 -0
  279. data/src/com/zoho/crm/api/currencies/body_wrapper.rb +63 -0
  280. data/src/com/zoho/crm/api/currencies/currencies_operations.rb +158 -0
  281. data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
  282. data/src/com/zoho/crm/api/currencies/error_details.rb +82 -0
  283. data/src/com/zoho/crm/api/currencies/format.rb +102 -0
  284. data/src/com/zoho/crm/api/currencies/response_handler.rb +12 -0
  285. data/src/com/zoho/crm/api/currencies/response_wrapper.rb +65 -0
  286. data/src/com/zoho/crm/api/currencies/success_response.rb +125 -0
  287. data/src/com/zoho/crm/api/custom_views/action_handler.rb +12 -0
  288. data/src/com/zoho/crm/api/custom_views/action_response.rb +12 -0
  289. data/src/com/zoho/crm/api/custom_views/action_wrapper.rb +65 -0
  290. data/src/com/zoho/crm/api/custom_views/api_exception.rb +127 -0
  291. data/src/com/zoho/crm/api/custom_views/body_wrapper.rb +63 -0
  292. data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
  293. data/src/com/zoho/crm/api/custom_views/custom_views.rb +463 -0
  294. data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +154 -0
  295. data/src/com/zoho/crm/api/custom_views/field.rb +82 -0
  296. data/src/com/zoho/crm/api/custom_views/fields.rb +101 -0
  297. data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
  298. data/src/com/zoho/crm/api/custom_views/owner.rb +101 -0
  299. data/src/com/zoho/crm/api/custom_views/pin_fields.rb +101 -0
  300. data/src/com/zoho/crm/api/custom_views/pin_unpin_fields.rb +63 -0
  301. data/src/com/zoho/crm/api/custom_views/response_handler.rb +12 -0
  302. data/src/com/zoho/crm/api/custom_views/response_wrapper.rb +84 -0
  303. data/src/com/zoho/crm/api/custom_views/shared_to.rb +121 -0
  304. data/src/com/zoho/crm/api/custom_views/sort_by.rb +82 -0
  305. data/src/com/zoho/crm/api/custom_views/success_response.rb +123 -0
  306. data/src/com/zoho/crm/api/custom_views/translation.rb +120 -0
  307. data/src/com/zoho/crm/api/data_sharing/action_handler.rb +12 -0
  308. data/src/com/zoho/crm/api/data_sharing/action_response.rb +12 -0
  309. data/src/com/zoho/crm/api/data_sharing/action_wrapper.rb +65 -0
  310. data/src/com/zoho/crm/api/data_sharing/api_exception.rb +127 -0
  311. data/src/com/zoho/crm/api/data_sharing/body_wrapper.rb +63 -0
  312. data/src/com/zoho/crm/api/data_sharing/data_sharing.rb +121 -0
  313. data/src/com/zoho/crm/api/data_sharing/data_sharing_operations.rb +51 -0
  314. data/src/com/zoho/crm/api/data_sharing/dependee.rb +82 -0
  315. data/src/com/zoho/crm/api/data_sharing/module.rb +82 -0
  316. data/src/com/zoho/crm/api/data_sharing/response_handler.rb +12 -0
  317. data/src/com/zoho/crm/api/data_sharing/response_wrapper.rb +65 -0
  318. data/src/com/zoho/crm/api/data_sharing/success_response.rb +123 -0
  319. data/src/com/zoho/crm/api/dc/au_datacenter.rb +21 -0
  320. data/src/com/zoho/crm/api/dc/ca_datacenter.rb +21 -0
  321. data/src/com/zoho/crm/api/dc/cn_datacenter.rb +21 -0
  322. data/src/com/zoho/crm/api/dc/datacenter.rb +83 -0
  323. data/src/com/zoho/crm/api/dc/eu_datacenter.rb +21 -0
  324. data/src/com/zoho/crm/api/dc/in_datacenter.rb +21 -0
  325. data/src/com/zoho/crm/api/dc/jp_datacenter.rb +21 -0
  326. data/src/com/zoho/crm/api/dc/sa_datacenter.rb +21 -0
  327. data/src/com/zoho/crm/api/dc/us_datacenter.rb +21 -0
  328. data/src/com/zoho/crm/api/deal_contact_roles/action_handler.rb +12 -0
  329. data/src/com/zoho/crm/api/deal_contact_roles/action_response.rb +12 -0
  330. data/src/com/zoho/crm/api/deal_contact_roles/action_wrapper.rb +65 -0
  331. data/src/com/zoho/crm/api/deal_contact_roles/api_exception.rb +127 -0
  332. data/src/com/zoho/crm/api/deal_contact_roles/body_wrapper.rb +63 -0
  333. data/src/com/zoho/crm/api/deal_contact_roles/contact_role.rb +82 -0
  334. data/src/com/zoho/crm/api/deal_contact_roles/data.rb +154 -0
  335. data/src/com/zoho/crm/api/deal_contact_roles/deal_contact_roles_operations.rb +173 -0
  336. data/src/com/zoho/crm/api/deal_contact_roles/error_details.rb +82 -0
  337. data/src/com/zoho/crm/api/deal_contact_roles/info.rb +177 -0
  338. data/src/com/zoho/crm/api/deal_contact_roles/response_handler.rb +12 -0
  339. data/src/com/zoho/crm/api/deal_contact_roles/response_wrapper.rb +84 -0
  340. data/src/com/zoho/crm/api/deal_contact_roles/success_response.rb +123 -0
  341. data/src/com/zoho/crm/api/definition/api_exception.rb +121 -0
  342. data/src/com/zoho/crm/api/definition/definition.rb +101 -0
  343. data/src/com/zoho/crm/api/definition/minified_property.rb +158 -0
  344. data/src/com/zoho/crm/api/definition/minified_property1.rb +139 -0
  345. data/src/com/zoho/crm/api/definition/property.rb +272 -0
  346. data/src/com/zoho/crm/api/definition/response_wrapper.rb +63 -0
  347. data/src/com/zoho/crm/api/digest/action_handler.rb +12 -0
  348. data/src/com/zoho/crm/api/digest/action_response.rb +12 -0
  349. data/src/com/zoho/crm/api/digest/action_wrapper.rb +65 -0
  350. data/src/com/zoho/crm/api/digest/api_exception.rb +125 -0
  351. data/src/com/zoho/crm/api/digest/body_wrapper.rb +63 -0
  352. data/src/com/zoho/crm/api/digest/dependee.rb +82 -0
  353. data/src/com/zoho/crm/api/digest/digest.rb +101 -0
  354. data/src/com/zoho/crm/api/digest/digest_operations.rb +37 -0
  355. data/src/com/zoho/crm/api/digest/success_response.rb +123 -0
  356. data/src/com/zoho/crm/api/download_attachments/api_exception.rb +123 -0
  357. data/src/com/zoho/crm/api/download_attachments/download_attachments_operations.rb +68 -0
  358. data/src/com/zoho/crm/api/download_attachments/file_body_wrapper.rb +66 -0
  359. data/src/com/zoho/crm/api/download_attachments/response_handler.rb +12 -0
  360. data/src/com/zoho/crm/api/download_inline_images/api_exception.rb +123 -0
  361. data/src/com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb +64 -0
  362. data/src/com/zoho/crm/api/download_inline_images/file_body_wrapper.rb +66 -0
  363. data/src/com/zoho/crm/api/download_inline_images/response_handler.rb +12 -0
  364. data/src/com/zoho/crm/api/duplicate_check_preference/action_handler.rb +12 -0
  365. data/src/com/zoho/crm/api/duplicate_check_preference/action_response.rb +12 -0
  366. data/src/com/zoho/crm/api/duplicate_check_preference/action_wrapper.rb +65 -0
  367. data/src/com/zoho/crm/api/duplicate_check_preference/api_exception.rb +127 -0
  368. data/src/com/zoho/crm/api/duplicate_check_preference/body_wrapper.rb +63 -0
  369. data/src/com/zoho/crm/api/duplicate_check_preference/current_field.rb +101 -0
  370. data/src/com/zoho/crm/api/duplicate_check_preference/duplicate_check_preference.rb +83 -0
  371. data/src/com/zoho/crm/api/duplicate_check_preference/duplicate_check_preference_operations.rb +108 -0
  372. data/src/com/zoho/crm/api/duplicate_check_preference/expected_fields.rb +82 -0
  373. data/src/com/zoho/crm/api/duplicate_check_preference/field_mappings.rb +82 -0
  374. data/src/com/zoho/crm/api/duplicate_check_preference/mapped_field.rb +101 -0
  375. data/src/com/zoho/crm/api/duplicate_check_preference/mapped_module.rb +101 -0
  376. data/src/com/zoho/crm/api/duplicate_check_preference/response_handler.rb +12 -0
  377. data/src/com/zoho/crm/api/duplicate_check_preference/response_wrapper.rb +65 -0
  378. data/src/com/zoho/crm/api/duplicate_check_preference/success_response.rb +123 -0
  379. data/src/com/zoho/crm/api/duplicate_check_preference/type_configuration.rb +82 -0
  380. data/src/com/zoho/crm/api/email_compose/action_handler.rb +12 -0
  381. data/src/com/zoho/crm/api/email_compose/action_response.rb +12 -0
  382. data/src/com/zoho/crm/api/email_compose/action_wrapper.rb +65 -0
  383. data/src/com/zoho/crm/api/email_compose/api_exception.rb +127 -0
  384. data/src/com/zoho/crm/api/email_compose/body_wrapper.rb +63 -0
  385. data/src/com/zoho/crm/api/email_compose/default_from_address.rb +102 -0
  386. data/src/com/zoho/crm/api/email_compose/default_replyto_address.rb +102 -0
  387. data/src/com/zoho/crm/api/email_compose/email_compose.rb +121 -0
  388. data/src/com/zoho/crm/api/email_compose/email_compose_operations.rb +66 -0
  389. data/src/com/zoho/crm/api/email_compose/font.rb +82 -0
  390. data/src/com/zoho/crm/api/email_compose/response_handler.rb +12 -0
  391. data/src/com/zoho/crm/api/email_compose/response_wrapper.rb +65 -0
  392. data/src/com/zoho/crm/api/email_compose/success_response.rb +123 -0
  393. data/src/com/zoho/crm/api/email_compose_meta/data.rb +63 -0
  394. data/src/com/zoho/crm/api/email_compose_meta/data_map.rb +139 -0
  395. data/src/com/zoho/crm/api/email_compose_meta/features_available.rb +349 -0
  396. data/src/com/zoho/crm/api/email_compose_meta/from_address.rb +140 -0
  397. data/src/com/zoho/crm/api/email_compose_meta/signature.rb +82 -0
  398. data/src/com/zoho/crm/api/email_compose_meta/user.rb +139 -0
  399. data/src/com/zoho/crm/api/email_configuration_options/action_handler.rb +12 -0
  400. data/src/com/zoho/crm/api/email_configuration_options/action_response.rb +12 -0
  401. data/src/com/zoho/crm/api/email_configuration_options/action_wrapper.rb +65 -0
  402. data/src/com/zoho/crm/api/email_configuration_options/api_exception.rb +127 -0
  403. data/src/com/zoho/crm/api/email_configuration_options/body_wrapper.rb +63 -0
  404. data/src/com/zoho/crm/api/email_configuration_options/configuration_options.rb +121 -0
  405. data/src/com/zoho/crm/api/email_configuration_options/email_configuration_options_operations.rb +57 -0
  406. data/src/com/zoho/crm/api/email_configuration_options/error_details.rb +120 -0
  407. data/src/com/zoho/crm/api/email_configuration_options/property_details.rb +120 -0
  408. data/src/com/zoho/crm/api/email_configuration_options/range_structure.rb +82 -0
  409. data/src/com/zoho/crm/api/email_configuration_options/response_handler.rb +12 -0
  410. data/src/com/zoho/crm/api/email_configuration_options/response_wrapper.rb +65 -0
  411. data/src/com/zoho/crm/api/email_configuration_options/success_response.rb +123 -0
  412. data/src/com/zoho/crm/api/email_configuration_options/value_details.rb +98 -0
  413. data/src/com/zoho/crm/api/email_drafts/action_response.rb +12 -0
  414. data/src/com/zoho/crm/api/email_drafts/action_wrapper.rb +63 -0
  415. data/src/com/zoho/crm/api/email_drafts/api_exception.rb +123 -0
  416. data/src/com/zoho/crm/api/email_drafts/attachments.rb +120 -0
  417. data/src/com/zoho/crm/api/email_drafts/body_wrapper.rb +63 -0
  418. data/src/com/zoho/crm/api/email_drafts/email_drafts.rb +367 -0
  419. data/src/com/zoho/crm/api/email_drafts/inventory_details.rb +121 -0
  420. data/src/com/zoho/crm/api/email_drafts/inventory_template.rb +82 -0
  421. data/src/com/zoho/crm/api/email_drafts/response_wrapper.rb +63 -0
  422. data/src/com/zoho/crm/api/email_drafts/schedule_details.rb +101 -0
  423. data/src/com/zoho/crm/api/email_drafts/success_response.rb +123 -0
  424. data/src/com/zoho/crm/api/email_drafts/template.rb +82 -0
  425. data/src/com/zoho/crm/api/email_drafts/to.rb +82 -0
  426. data/src/com/zoho/crm/api/email_related_records/api_exception.rb +123 -0
  427. data/src/com/zoho/crm/api/email_related_records/attachments.rb +101 -0
  428. data/src/com/zoho/crm/api/email_related_records/criteria.rb +102 -0
  429. data/src/com/zoho/crm/api/email_related_records/email.rb +537 -0
  430. data/src/com/zoho/crm/api/email_related_records/email_related_records_operations.rb +102 -0
  431. data/src/com/zoho/crm/api/email_related_records/field.rb +63 -0
  432. data/src/com/zoho/crm/api/email_related_records/info.rb +139 -0
  433. data/src/com/zoho/crm/api/email_related_records/linked_record.rb +101 -0
  434. data/src/com/zoho/crm/api/email_related_records/module.rb +82 -0
  435. data/src/com/zoho/crm/api/email_related_records/response_handler.rb +12 -0
  436. data/src/com/zoho/crm/api/email_related_records/response_wrapper.rb +84 -0
  437. data/src/com/zoho/crm/api/email_related_records/status.rb +196 -0
  438. data/src/com/zoho/crm/api/email_related_records/user_details.rb +82 -0
  439. data/src/com/zoho/crm/api/email_sharing_details/api_exception.rb +123 -0
  440. data/src/com/zoho/crm/api/email_sharing_details/email_sharing_details_operations.rb +44 -0
  441. data/src/com/zoho/crm/api/email_sharing_details/email_sharings.rb +82 -0
  442. data/src/com/zoho/crm/api/email_sharing_details/response_handler.rb +12 -0
  443. data/src/com/zoho/crm/api/email_sharing_details/response_wrapper.rb +65 -0
  444. data/src/com/zoho/crm/api/email_sharing_details/share_from_user.rb +101 -0
  445. data/src/com/zoho/crm/api/email_signatures/action_handler.rb +12 -0
  446. data/src/com/zoho/crm/api/email_signatures/action_response.rb +12 -0
  447. data/src/com/zoho/crm/api/email_signatures/action_wrapper.rb +65 -0
  448. data/src/com/zoho/crm/api/email_signatures/api_exception.rb +146 -0
  449. data/src/com/zoho/crm/api/email_signatures/body_wrapper.rb +63 -0
  450. data/src/com/zoho/crm/api/email_signatures/details_group.rb +12 -0
  451. data/src/com/zoho/crm/api/email_signatures/email_signatures.rb +140 -0
  452. data/src/com/zoho/crm/api/email_signatures/email_signatures_operations.rb +220 -0
  453. data/src/com/zoho/crm/api/email_signatures/error_details.rb +177 -0
  454. data/src/com/zoho/crm/api/email_signatures/from_address.rb +82 -0
  455. data/src/com/zoho/crm/api/email_signatures/range_structure.rb +82 -0
  456. data/src/com/zoho/crm/api/email_signatures/response_handler.rb +12 -0
  457. data/src/com/zoho/crm/api/email_signatures/response_wrapper.rb +65 -0
  458. data/src/com/zoho/crm/api/email_signatures/success_response.rb +123 -0
  459. data/src/com/zoho/crm/api/email_templates/api_exception.rb +123 -0
  460. data/src/com/zoho/crm/api/email_templates/attachment.rb +120 -0
  461. data/src/com/zoho/crm/api/email_templates/email_template.rb +452 -0
  462. data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +79 -0
  463. data/src/com/zoho/crm/api/email_templates/info.rb +120 -0
  464. data/src/com/zoho/crm/api/email_templates/last_version_statistics.rb +158 -0
  465. data/src/com/zoho/crm/api/email_templates/response_handler.rb +12 -0
  466. data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +84 -0
  467. data/src/com/zoho/crm/api/entity_scores/api_exception.rb +123 -0
  468. data/src/com/zoho/crm/api/entity_scores/entity.rb +101 -0
  469. data/src/com/zoho/crm/api/entity_scores/entity_scores.rb +253 -0
  470. data/src/com/zoho/crm/api/entity_scores/entity_scores_operations.rb +114 -0
  471. data/src/com/zoho/crm/api/entity_scores/info.rb +215 -0
  472. data/src/com/zoho/crm/api/entity_scores/module.rb +82 -0
  473. data/src/com/zoho/crm/api/entity_scores/response_handler.rb +12 -0
  474. data/src/com/zoho/crm/api/entity_scores/response_wrapper.rb +84 -0
  475. data/src/com/zoho/crm/api/entity_scores/scoring_rule.rb +82 -0
  476. data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
  477. data/src/com/zoho/crm/api/features/api_exception.rb +123 -0
  478. data/src/com/zoho/crm/api/features/component.rb +120 -0
  479. data/src/com/zoho/crm/api/features/detail.rb +101 -0
  480. data/src/com/zoho/crm/api/features/feature.rb +158 -0
  481. data/src/com/zoho/crm/api/features/features_operations.rb +107 -0
  482. data/src/com/zoho/crm/api/features/info.rb +120 -0
  483. data/src/com/zoho/crm/api/features/limit.rb +82 -0
  484. data/src/com/zoho/crm/api/features/response_handler.rb +12 -0
  485. data/src/com/zoho/crm/api/features/response_wrapper.rb +84 -0
  486. data/src/com/zoho/crm/api/field_attachments/api_exception.rb +123 -0
  487. data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +54 -0
  488. data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +66 -0
  489. data/src/com/zoho/crm/api/field_attachments/response_handler.rb +12 -0
  490. data/src/com/zoho/crm/api/field_map_dependency/action_handler.rb +12 -0
  491. data/src/com/zoho/crm/api/field_map_dependency/action_response.rb +12 -0
  492. data/src/com/zoho/crm/api/field_map_dependency/action_wrapper.rb +65 -0
  493. data/src/com/zoho/crm/api/field_map_dependency/api_exception.rb +127 -0
  494. data/src/com/zoho/crm/api/field_map_dependency/body_wrapper.rb +63 -0
  495. data/src/com/zoho/crm/api/field_map_dependency/child.rb +82 -0
  496. data/src/com/zoho/crm/api/field_map_dependency/field_map_dependency_operations.rb +177 -0
  497. data/src/com/zoho/crm/api/field_map_dependency/info.rb +120 -0
  498. data/src/com/zoho/crm/api/field_map_dependency/map_dependency.rb +215 -0
  499. data/src/com/zoho/crm/api/field_map_dependency/parent.rb +82 -0
  500. data/src/com/zoho/crm/api/field_map_dependency/pick_list_mapping.rb +120 -0
  501. data/src/com/zoho/crm/api/field_map_dependency/picklist_map.rb +120 -0
  502. data/src/com/zoho/crm/api/field_map_dependency/response_handler.rb +12 -0
  503. data/src/com/zoho/crm/api/field_map_dependency/response_wrapper.rb +84 -0
  504. data/src/com/zoho/crm/api/field_map_dependency/sub_module.rb +82 -0
  505. data/src/com/zoho/crm/api/field_map_dependency/success_response.rb +123 -0
  506. data/src/com/zoho/crm/api/fields/action_handler.rb +12 -0
  507. data/src/com/zoho/crm/api/fields/action_response.rb +12 -0
  508. data/src/com/zoho/crm/api/fields/action_wrapper.rb +65 -0
  509. data/src/com/zoho/crm/api/fields/api_exception.rb +127 -0
  510. data/src/com/zoho/crm/api/fields/association_details.rb +82 -0
  511. data/src/com/zoho/crm/api/fields/auto_number.rb +120 -0
  512. data/src/com/zoho/crm/api/fields/body_wrapper.rb +63 -0
  513. data/src/com/zoho/crm/api/fields/connected_details.rb +101 -0
  514. data/src/com/zoho/crm/api/fields/convert_mapping.rb +101 -0
  515. data/src/com/zoho/crm/api/fields/criteria.rb +136 -0
  516. data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
  517. data/src/com/zoho/crm/api/fields/currency.rb +83 -0
  518. data/src/com/zoho/crm/api/fields/email_parser.rb +82 -0
  519. data/src/com/zoho/crm/api/fields/expression.rb +101 -0
  520. data/src/com/zoho/crm/api/fields/external.rb +101 -0
  521. data/src/com/zoho/crm/api/fields/fields.rb +1529 -0
  522. data/src/com/zoho/crm/api/fields/fields_operations.rb +245 -0
  523. data/src/com/zoho/crm/api/fields/file_upolad_option.rb +82 -0
  524. data/src/com/zoho/crm/api/fields/forecast_category.rb +82 -0
  525. data/src/com/zoho/crm/api/fields/formula.rb +158 -0
  526. data/src/com/zoho/crm/api/fields/function_parameter.rb +63 -0
  527. data/src/com/zoho/crm/api/fields/hipaa_compliance.rb +82 -0
  528. data/src/com/zoho/crm/api/fields/history_tracking.rb +83 -0
  529. data/src/com/zoho/crm/api/fields/history_tracking_module.rb +159 -0
  530. data/src/com/zoho/crm/api/fields/layout_association.rb +101 -0
  531. data/src/com/zoho/crm/api/fields/linking_details.rb +101 -0
  532. data/src/com/zoho/crm/api/fields/linking_module.rb +120 -0
  533. data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
  534. data/src/com/zoho/crm/api/fields/lookup_field.rb +101 -0
  535. data/src/com/zoho/crm/api/fields/lookup_layout.rb +82 -0
  536. data/src/com/zoho/crm/api/fields/lookup_related_list.rb +101 -0
  537. data/src/com/zoho/crm/api/fields/mandatory_details.rb +82 -0
  538. data/src/com/zoho/crm/api/fields/maps.rb +82 -0
  539. data/src/com/zoho/crm/api/fields/minified_field.rb +82 -0
  540. data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +102 -0
  541. data/src/com/zoho/crm/api/fields/multiselectlookup.rb +120 -0
  542. data/src/com/zoho/crm/api/fields/operation_type.rb +120 -0
  543. data/src/com/zoho/crm/api/fields/pick_list_value.rb +369 -0
  544. data/src/com/zoho/crm/api/fields/private.rb +101 -0
  545. data/src/com/zoho/crm/api/fields/profile.rb +101 -0
  546. data/src/com/zoho/crm/api/fields/query_details.rb +82 -0
  547. data/src/com/zoho/crm/api/fields/refer_from_field.rb +82 -0
  548. data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
  549. data/src/com/zoho/crm/api/fields/response_wrapper.rb +65 -0
  550. data/src/com/zoho/crm/api/fields/rollup_criteria.rb +98 -0
  551. data/src/com/zoho/crm/api/fields/rollup_summary.rb +141 -0
  552. data/src/com/zoho/crm/api/fields/sharing_properties.rb +102 -0
  553. data/src/com/zoho/crm/api/fields/show_fields.rb +82 -0
  554. data/src/com/zoho/crm/api/fields/subform.rb +82 -0
  555. data/src/com/zoho/crm/api/fields/success_response.rb +123 -0
  556. data/src/com/zoho/crm/api/fields/textarea.rb +63 -0
  557. data/src/com/zoho/crm/api/fields/tooltip.rb +82 -0
  558. data/src/com/zoho/crm/api/fields/unique.rb +79 -0
  559. data/src/com/zoho/crm/api/fields/view_type.rb +120 -0
  560. data/src/com/zoho/crm/api/files/action_handler.rb +12 -0
  561. data/src/com/zoho/crm/api/files/action_response.rb +12 -0
  562. data/src/com/zoho/crm/api/files/action_wrapper.rb +65 -0
  563. data/src/com/zoho/crm/api/files/api_exception.rb +125 -0
  564. data/src/com/zoho/crm/api/files/body_wrapper.rb +64 -0
  565. data/src/com/zoho/crm/api/files/file_body_wrapper.rb +66 -0
  566. data/src/com/zoho/crm/api/files/files_operations.rb +80 -0
  567. data/src/com/zoho/crm/api/files/response_handler.rb +12 -0
  568. data/src/com/zoho/crm/api/files/success_response.rb +123 -0
  569. data/src/com/zoho/crm/api/find_and_merge/action_handler.rb +12 -0
  570. data/src/com/zoho/crm/api/find_and_merge/action_response.rb +12 -0
  571. data/src/com/zoho/crm/api/find_and_merge/action_wrapper.rb +65 -0
  572. data/src/com/zoho/crm/api/find_and_merge/api_exception.rb +127 -0
  573. data/src/com/zoho/crm/api/find_and_merge/body_wrapper.rb +63 -0
  574. data/src/com/zoho/crm/api/find_and_merge/data_fields.rb +82 -0
  575. data/src/com/zoho/crm/api/find_and_merge/find_and_merge_operations.rb +83 -0
  576. data/src/com/zoho/crm/api/find_and_merge/image_data.rb +63 -0
  577. data/src/com/zoho/crm/api/find_and_merge/master_record_fields.rb +82 -0
  578. data/src/com/zoho/crm/api/find_and_merge/merge.rb +120 -0
  579. data/src/com/zoho/crm/api/find_and_merge/merge_data.rb +82 -0
  580. data/src/com/zoho/crm/api/find_and_merge/response_handler.rb +12 -0
  581. data/src/com/zoho/crm/api/find_and_merge/response_wrapper.rb +65 -0
  582. data/src/com/zoho/crm/api/find_and_merge/success_response.rb +123 -0
  583. data/src/com/zoho/crm/api/fiscal_year/action_handler.rb +12 -0
  584. data/src/com/zoho/crm/api/fiscal_year/action_response.rb +12 -0
  585. data/src/com/zoho/crm/api/fiscal_year/action_wrapper.rb +65 -0
  586. data/src/com/zoho/crm/api/fiscal_year/api_exception.rb +127 -0
  587. data/src/com/zoho/crm/api/fiscal_year/body_wrapper.rb +63 -0
  588. data/src/com/zoho/crm/api/fiscal_year/fiscal_year_operations.rb +51 -0
  589. data/src/com/zoho/crm/api/fiscal_year/response_handler.rb +12 -0
  590. data/src/com/zoho/crm/api/fiscal_year/response_wrapper.rb +65 -0
  591. data/src/com/zoho/crm/api/fiscal_year/success_response.rb +123 -0
  592. data/src/com/zoho/crm/api/fiscal_year/year.rb +102 -0
  593. data/src/com/zoho/crm/api/from_addresses/address.rb +139 -0
  594. data/src/com/zoho/crm/api/from_addresses/api_exception.rb +123 -0
  595. data/src/com/zoho/crm/api/from_addresses/from_addresses_operations.rb +40 -0
  596. data/src/com/zoho/crm/api/from_addresses/response_handler.rb +12 -0
  597. data/src/com/zoho/crm/api/from_addresses/response_wrapper.rb +65 -0
  598. data/src/com/zoho/crm/api/functions/api_exception.rb +123 -0
  599. data/src/com/zoho/crm/api/functions/body_wrapper.rb +63 -0
  600. data/src/com/zoho/crm/api/functions/file_body_wrapper.rb +64 -0
  601. data/src/com/zoho/crm/api/functions/functions_operations.rb +175 -0
  602. data/src/com/zoho/crm/api/functions/response_wrapper.rb +12 -0
  603. data/src/com/zoho/crm/api/functions/success_response.rb +104 -0
  604. data/src/com/zoho/crm/api/get_related_records_count/action_handler.rb +12 -0
  605. data/src/com/zoho/crm/api/get_related_records_count/action_response.rb +12 -0
  606. data/src/com/zoho/crm/api/get_related_records_count/action_wrapper.rb +65 -0
  607. data/src/com/zoho/crm/api/get_related_records_count/api_exception.rb +125 -0
  608. data/src/com/zoho/crm/api/get_related_records_count/body_wrapper.rb +63 -0
  609. data/src/com/zoho/crm/api/get_related_records_count/dependee.rb +82 -0
  610. data/src/com/zoho/crm/api/get_related_records_count/field.rb +63 -0
  611. data/src/com/zoho/crm/api/get_related_records_count/filters.rb +102 -0
  612. data/src/com/zoho/crm/api/get_related_records_count/get_related_record_count.rb +63 -0
  613. data/src/com/zoho/crm/api/get_related_records_count/get_related_records_count_operations.rb +50 -0
  614. data/src/com/zoho/crm/api/get_related_records_count/params.rb +159 -0
  615. data/src/com/zoho/crm/api/get_related_records_count/related_list.rb +82 -0
  616. data/src/com/zoho/crm/api/get_related_records_count/success_response.rb +84 -0
  617. data/src/com/zoho/crm/api/global_picklists/action_handler.rb +12 -0
  618. data/src/com/zoho/crm/api/global_picklists/action_response.rb +12 -0
  619. data/src/com/zoho/crm/api/global_picklists/action_wrapper.rb +65 -0
  620. data/src/com/zoho/crm/api/global_picklists/api_exception.rb +137 -0
  621. data/src/com/zoho/crm/api/global_picklists/association.rb +101 -0
  622. data/src/com/zoho/crm/api/global_picklists/associations_response_handler.rb +12 -0
  623. data/src/com/zoho/crm/api/global_picklists/associations_response_wrapper.rb +84 -0
  624. data/src/com/zoho/crm/api/global_picklists/body_wrapper.rb +63 -0
  625. data/src/com/zoho/crm/api/global_picklists/field.rb +82 -0
  626. data/src/com/zoho/crm/api/global_picklists/global_picklists_operations.rb +313 -0
  627. data/src/com/zoho/crm/api/global_picklists/info.rb +120 -0
  628. data/src/com/zoho/crm/api/global_picklists/layout.rb +101 -0
  629. data/src/com/zoho/crm/api/global_picklists/module.rb +101 -0
  630. data/src/com/zoho/crm/api/global_picklists/pick_list_values.rb +159 -0
  631. data/src/com/zoho/crm/api/global_picklists/pick_list_values_association.rb +82 -0
  632. data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_handler.rb +12 -0
  633. data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_wrapper.rb +65 -0
  634. data/src/com/zoho/crm/api/global_picklists/picklist.rb +330 -0
  635. data/src/com/zoho/crm/api/global_picklists/replace_action_handler.rb +12 -0
  636. data/src/com/zoho/crm/api/global_picklists/replace_action_response.rb +12 -0
  637. data/src/com/zoho/crm/api/global_picklists/replace_action_wrapper.rb +65 -0
  638. data/src/com/zoho/crm/api/global_picklists/replace_body_wrapper.rb +63 -0
  639. data/src/com/zoho/crm/api/global_picklists/replace_picklist_value.rb +82 -0
  640. data/src/com/zoho/crm/api/global_picklists/replace_picklist_values.rb +82 -0
  641. data/src/com/zoho/crm/api/global_picklists/replace_success_response.rb +123 -0
  642. data/src/com/zoho/crm/api/global_picklists/replaced_response_handler.rb +12 -0
  643. data/src/com/zoho/crm/api/global_picklists/replaced_response_wrapper.rb +65 -0
  644. data/src/com/zoho/crm/api/global_picklists/replaced_value.rb +82 -0
  645. data/src/com/zoho/crm/api/global_picklists/resource.rb +102 -0
  646. data/src/com/zoho/crm/api/global_picklists/response_handler.rb +12 -0
  647. data/src/com/zoho/crm/api/global_picklists/response_wrapper.rb +65 -0
  648. data/src/com/zoho/crm/api/global_picklists/success_response.rb +123 -0
  649. data/src/com/zoho/crm/api/header.rb +12 -0
  650. data/src/com/zoho/crm/api/header_map.rb +63 -0
  651. data/src/com/zoho/crm/api/hipaa_compliance/action_handler.rb +12 -0
  652. data/src/com/zoho/crm/api/hipaa_compliance/action_response.rb +12 -0
  653. data/src/com/zoho/crm/api/hipaa_compliance/action_wrapper.rb +63 -0
  654. data/src/com/zoho/crm/api/hipaa_compliance/api_exception.rb +123 -0
  655. data/src/com/zoho/crm/api/hipaa_compliance/hipaa_compliance.rb +158 -0
  656. data/src/com/zoho/crm/api/hipaa_compliance/modules.rb +82 -0
  657. data/src/com/zoho/crm/api/hipaa_compliance/response_wrapper.rb +63 -0
  658. data/src/com/zoho/crm/api/hipaa_compliance/success_response.rb +123 -0
  659. data/src/com/zoho/crm/api/holidays/action_handler.rb +12 -0
  660. data/src/com/zoho/crm/api/holidays/action_response.rb +12 -0
  661. data/src/com/zoho/crm/api/holidays/action_wrapper.rb +65 -0
  662. data/src/com/zoho/crm/api/holidays/api_exception.rb +127 -0
  663. data/src/com/zoho/crm/api/holidays/body_wrapper.rb +12 -0
  664. data/src/com/zoho/crm/api/holidays/business_holiday.rb +101 -0
  665. data/src/com/zoho/crm/api/holidays/create_business_holiday.rb +65 -0
  666. data/src/com/zoho/crm/api/holidays/create_shift_holiday.rb +65 -0
  667. data/src/com/zoho/crm/api/holidays/holiday.rb +158 -0
  668. data/src/com/zoho/crm/api/holidays/holidays.rb +63 -0
  669. data/src/com/zoho/crm/api/holidays/holidays_operations.rb +189 -0
  670. data/src/com/zoho/crm/api/holidays/info.rb +120 -0
  671. data/src/com/zoho/crm/api/holidays/response_handler.rb +12 -0
  672. data/src/com/zoho/crm/api/holidays/response_wrapper.rb +84 -0
  673. data/src/com/zoho/crm/api/holidays/shift_holiday.rb +121 -0
  674. data/src/com/zoho/crm/api/holidays/shift_hour.rb +82 -0
  675. data/src/com/zoho/crm/api/holidays/success_response.rb +123 -0
  676. data/src/com/zoho/crm/api/initializer.rb +232 -0
  677. data/src/com/zoho/crm/api/inventory_convert/action_handler.rb +12 -0
  678. data/src/com/zoho/crm/api/inventory_convert/action_response.rb +12 -0
  679. data/src/com/zoho/crm/api/inventory_convert/action_wrapper.rb +65 -0
  680. data/src/com/zoho/crm/api/inventory_convert/api_exception.rb +125 -0
  681. data/src/com/zoho/crm/api/inventory_convert/body_wrapper.rb +63 -0
  682. data/src/com/zoho/crm/api/inventory_convert/convert_to.rb +82 -0
  683. data/src/com/zoho/crm/api/inventory_convert/inventory_convert_operations.rb +51 -0
  684. data/src/com/zoho/crm/api/inventory_convert/inventory_converter.rb +63 -0
  685. data/src/com/zoho/crm/api/inventory_convert/module.rb +82 -0
  686. data/src/com/zoho/crm/api/inventory_convert/record.rb +82 -0
  687. data/src/com/zoho/crm/api/inventory_convert/success_response.rb +123 -0
  688. data/src/com/zoho/crm/api/inventory_mass_convert/action_response.rb +12 -0
  689. data/src/com/zoho/crm/api/inventory_mass_convert/api_exception.rb +125 -0
  690. data/src/com/zoho/crm/api/inventory_mass_convert/body_wrapper.rb +120 -0
  691. data/src/com/zoho/crm/api/inventory_mass_convert/convert_to.rb +82 -0
  692. data/src/com/zoho/crm/api/inventory_mass_convert/inventory_mass_convert_operations.rb +74 -0
  693. data/src/com/zoho/crm/api/inventory_mass_convert/module.rb +82 -0
  694. data/src/com/zoho/crm/api/inventory_mass_convert/related_modules.rb +82 -0
  695. data/src/com/zoho/crm/api/inventory_mass_convert/response_handler.rb +12 -0
  696. data/src/com/zoho/crm/api/inventory_mass_convert/status.rb +141 -0
  697. data/src/com/zoho/crm/api/inventory_mass_convert/success_response.rb +123 -0
  698. data/src/com/zoho/crm/api/inventory_mass_convert/user.rb +82 -0
  699. data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +123 -0
  700. data/src/com/zoho/crm/api/inventory_templates/folder.rb +82 -0
  701. data/src/com/zoho/crm/api/inventory_templates/info.rb +120 -0
  702. data/src/com/zoho/crm/api/inventory_templates/inventory_templates.rb +333 -0
  703. data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +79 -0
  704. data/src/com/zoho/crm/api/inventory_templates/module_map.rb +82 -0
  705. data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +12 -0
  706. data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +84 -0
  707. data/src/com/zoho/crm/api/inventory_templates/user.rb +82 -0
  708. data/src/com/zoho/crm/api/isc_signature/signature.rb +60 -0
  709. data/src/com/zoho/crm/api/layouts/action_handler.rb +12 -0
  710. data/src/com/zoho/crm/api/layouts/action_response.rb +12 -0
  711. data/src/com/zoho/crm/api/layouts/action_wrapper.rb +65 -0
  712. data/src/com/zoho/crm/api/layouts/actions_allowed.rb +272 -0
  713. data/src/com/zoho/crm/api/layouts/api_exception.rb +127 -0
  714. data/src/com/zoho/crm/api/layouts/body_wrapper.rb +63 -0
  715. data/src/com/zoho/crm/api/layouts/convert_mapping.rb +139 -0
  716. data/src/com/zoho/crm/api/layouts/deal_field.rb +120 -0
  717. data/src/com/zoho/crm/api/layouts/deal_layout_mapping.rb +103 -0
  718. data/src/com/zoho/crm/api/layouts/default_assignment_view.rb +101 -0
  719. data/src/com/zoho/crm/api/layouts/default_view.rb +101 -0
  720. data/src/com/zoho/crm/api/layouts/delete1.rb +63 -0
  721. data/src/com/zoho/crm/api/layouts/layouts.rb +463 -0
  722. data/src/com/zoho/crm/api/layouts/layouts_operations.rb +228 -0
  723. data/src/com/zoho/crm/api/layouts/minified_layout.rb +82 -0
  724. data/src/com/zoho/crm/api/layouts/profiles.rb +139 -0
  725. data/src/com/zoho/crm/api/layouts/properties.rb +101 -0
  726. data/src/com/zoho/crm/api/layouts/response_handler.rb +12 -0
  727. data/src/com/zoho/crm/api/layouts/response_wrapper.rb +65 -0
  728. data/src/com/zoho/crm/api/layouts/section_field.rb +1652 -0
  729. data/src/com/zoho/crm/api/layouts/section_subform_field.rb +101 -0
  730. data/src/com/zoho/crm/api/layouts/sections.rb +310 -0
  731. data/src/com/zoho/crm/api/layouts/static_values.rb +101 -0
  732. data/src/com/zoho/crm/api/layouts/subform_property.rb +63 -0
  733. data/src/com/zoho/crm/api/layouts/success_response.rb +123 -0
  734. data/src/com/zoho/crm/api/layouts/tooltip.rb +83 -0
  735. data/src/com/zoho/crm/api/mail_merge/action_handler.rb +12 -0
  736. data/src/com/zoho/crm/api/mail_merge/action_response.rb +12 -0
  737. data/src/com/zoho/crm/api/mail_merge/action_wrapper.rb +65 -0
  738. data/src/com/zoho/crm/api/mail_merge/address.rb +82 -0
  739. data/src/com/zoho/crm/api/mail_merge/api_exception.rb +131 -0
  740. data/src/com/zoho/crm/api/mail_merge/download_mail_merge.rb +121 -0
  741. data/src/com/zoho/crm/api/mail_merge/download_mail_merge_wrapper.rb +63 -0
  742. data/src/com/zoho/crm/api/mail_merge/download_response_handler.rb +12 -0
  743. data/src/com/zoho/crm/api/mail_merge/file_body_wrapper.rb +66 -0
  744. data/src/com/zoho/crm/api/mail_merge/mail_merge.rb +215 -0
  745. data/src/com/zoho/crm/api/mail_merge/mail_merge_operations.rb +101 -0
  746. data/src/com/zoho/crm/api/mail_merge/mail_merge_template.rb +82 -0
  747. data/src/com/zoho/crm/api/mail_merge/mail_merge_wrapper.rb +63 -0
  748. data/src/com/zoho/crm/api/mail_merge/sign_action_handler.rb +12 -0
  749. data/src/com/zoho/crm/api/mail_merge/sign_action_response.rb +12 -0
  750. data/src/com/zoho/crm/api/mail_merge/sign_action_wrapper.rb +65 -0
  751. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge.rb +120 -0
  752. data/src/com/zoho/crm/api/mail_merge/sign_mail_merge_wrapper.rb +63 -0
  753. data/src/com/zoho/crm/api/mail_merge/signers.rb +102 -0
  754. data/src/com/zoho/crm/api/mail_merge/success_response.rb +125 -0
  755. data/src/com/zoho/crm/api/mass_change_owner/action_handler.rb +12 -0
  756. data/src/com/zoho/crm/api/mass_change_owner/action_response.rb +12 -0
  757. data/src/com/zoho/crm/api/mass_change_owner/action_wrapper.rb +65 -0
  758. data/src/com/zoho/crm/api/mass_change_owner/api_exception.rb +125 -0
  759. data/src/com/zoho/crm/api/mass_change_owner/body_wrapper.rb +120 -0
  760. data/src/com/zoho/crm/api/mass_change_owner/criteria.rb +136 -0
  761. data/src/com/zoho/crm/api/mass_change_owner/field.rb +82 -0
  762. data/src/com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb +73 -0
  763. data/src/com/zoho/crm/api/mass_change_owner/owner.rb +82 -0
  764. data/src/com/zoho/crm/api/mass_change_owner/response_handler.rb +12 -0
  765. data/src/com/zoho/crm/api/mass_change_owner/response_wrapper.rb +65 -0
  766. data/src/com/zoho/crm/api/mass_change_owner/status.rb +140 -0
  767. data/src/com/zoho/crm/api/mass_change_owner/success_response.rb +123 -0
  768. data/src/com/zoho/crm/api/mass_change_owner/territory.rb +82 -0
  769. data/src/com/zoho/crm/api/mass_convert/action_response.rb +12 -0
  770. data/src/com/zoho/crm/api/mass_convert/api_exception.rb +125 -0
  771. data/src/com/zoho/crm/api/mass_convert/assign_to.rb +63 -0
  772. data/src/com/zoho/crm/api/mass_convert/body_wrapper.rb +197 -0
  773. data/src/com/zoho/crm/api/mass_convert/error_details.rb +82 -0
  774. data/src/com/zoho/crm/api/mass_convert/mass_convert_operations.rb +68 -0
  775. data/src/com/zoho/crm/api/mass_convert/move_attachments_to.rb +82 -0
  776. data/src/com/zoho/crm/api/mass_convert/portal_user_type.rb +82 -0
  777. data/src/com/zoho/crm/api/mass_convert/related_module.rb +82 -0
  778. data/src/com/zoho/crm/api/mass_convert/response_handler.rb +12 -0
  779. data/src/com/zoho/crm/api/mass_convert/response_wrapper.rb +65 -0
  780. data/src/com/zoho/crm/api/mass_convert/status.rb +139 -0
  781. data/src/com/zoho/crm/api/mass_convert/success_response.rb +123 -0
  782. data/src/com/zoho/crm/api/mass_delete_cvid/action_handler.rb +12 -0
  783. data/src/com/zoho/crm/api/mass_delete_cvid/action_response.rb +12 -0
  784. data/src/com/zoho/crm/api/mass_delete_cvid/action_wrapper.rb +65 -0
  785. data/src/com/zoho/crm/api/mass_delete_cvid/api_exception.rb +127 -0
  786. data/src/com/zoho/crm/api/mass_delete_cvid/cvid_body_wrapper.rb +82 -0
  787. data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_cvid_operations.rb +95 -0
  788. data/src/com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb +82 -0
  789. data/src/com/zoho/crm/api/mass_delete_cvid/response_handler.rb +12 -0
  790. data/src/com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb +65 -0
  791. data/src/com/zoho/crm/api/mass_delete_cvid/status.rb +121 -0
  792. data/src/com/zoho/crm/api/mass_delete_cvid/success_response.rb +123 -0
  793. data/src/com/zoho/crm/api/mass_delete_cvid/territory.rb +82 -0
  794. data/src/com/zoho/crm/api/mass_delete_tags/action_response.rb +12 -0
  795. data/src/com/zoho/crm/api/mass_delete_tags/api_exception.rb +127 -0
  796. data/src/com/zoho/crm/api/mass_delete_tags/body_wrapper.rb +63 -0
  797. data/src/com/zoho/crm/api/mass_delete_tags/error_detail1.rb +82 -0
  798. data/src/com/zoho/crm/api/mass_delete_tags/mass_delete.rb +82 -0
  799. data/src/com/zoho/crm/api/mass_delete_tags/mass_delete_details.rb +142 -0
  800. data/src/com/zoho/crm/api/mass_delete_tags/mass_delete_tags_operations.rb +64 -0
  801. data/src/com/zoho/crm/api/mass_delete_tags/module.rb +82 -0
  802. data/src/com/zoho/crm/api/mass_delete_tags/status_action_response.rb +12 -0
  803. data/src/com/zoho/crm/api/mass_delete_tags/status_response_handler.rb +12 -0
  804. data/src/com/zoho/crm/api/mass_delete_tags/status_response_wrapper.rb +65 -0
  805. data/src/com/zoho/crm/api/mass_delete_tags/success_response.rb +123 -0
  806. data/src/com/zoho/crm/api/mass_delete_tags/tag.rb +63 -0
  807. data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
  808. data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
  809. data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
  810. data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
  811. data/src/com/zoho/crm/api/modules/argument.rb +82 -0
  812. data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
  813. data/src/com/zoho/crm/api/modules/lookup_field.rb +103 -0
  814. data/src/com/zoho/crm/api/modules/lookup_field_properties.rb +63 -0
  815. data/src/com/zoho/crm/api/modules/minified_module.rb +139 -0
  816. data/src/com/zoho/crm/api/modules/module_field_lookup.rb +181 -0
  817. data/src/com/zoho/crm/api/modules/module_fields.rb +1555 -0
  818. data/src/com/zoho/crm/api/modules/modules.rb +1302 -0
  819. data/src/com/zoho/crm/api/modules/modules_operations.rb +169 -0
  820. data/src/com/zoho/crm/api/modules/related_list_properties.rb +102 -0
  821. data/src/com/zoho/crm/api/modules/response_handler.rb +12 -0
  822. data/src/com/zoho/crm/api/modules/response_wrapper.rb +65 -0
  823. data/src/com/zoho/crm/api/modules/sharing_properties.rb +102 -0
  824. data/src/com/zoho/crm/api/modules/static_subform_field.rb +82 -0
  825. data/src/com/zoho/crm/api/modules/static_subform_properties.rb +63 -0
  826. data/src/com/zoho/crm/api/modules/success_response.rb +123 -0
  827. data/src/com/zoho/crm/api/modules/territory.rb +101 -0
  828. data/src/com/zoho/crm/api/notes/action_handler.rb +12 -0
  829. data/src/com/zoho/crm/api/notes/action_response.rb +12 -0
  830. data/src/com/zoho/crm/api/notes/action_wrapper.rb +65 -0
  831. data/src/com/zoho/crm/api/notes/api_exception.rb +127 -0
  832. data/src/com/zoho/crm/api/notes/body_wrapper.rb +63 -0
  833. data/src/com/zoho/crm/api/notes/info.rb +215 -0
  834. data/src/com/zoho/crm/api/notes/note.rb +350 -0
  835. data/src/com/zoho/crm/api/notes/notes_operations.rb +233 -0
  836. data/src/com/zoho/crm/api/notes/parent_id.rb +102 -0
  837. data/src/com/zoho/crm/api/notes/response_handler.rb +12 -0
  838. data/src/com/zoho/crm/api/notes/response_wrapper.rb +84 -0
  839. data/src/com/zoho/crm/api/notes/success_response.rb +123 -0
  840. data/src/com/zoho/crm/api/notifications/action_handler.rb +12 -0
  841. data/src/com/zoho/crm/api/notifications/action_response.rb +12 -0
  842. data/src/com/zoho/crm/api/notifications/action_wrapper.rb +65 -0
  843. data/src/com/zoho/crm/api/notifications/api_exception.rb +127 -0
  844. data/src/com/zoho/crm/api/notifications/body_wrapper.rb +63 -0
  845. data/src/com/zoho/crm/api/notifications/criteria.rb +136 -0
  846. data/src/com/zoho/crm/api/notifications/event.rb +158 -0
  847. data/src/com/zoho/crm/api/notifications/field.rb +82 -0
  848. data/src/com/zoho/crm/api/notifications/info.rb +120 -0
  849. data/src/com/zoho/crm/api/notifications/module.rb +82 -0
  850. data/src/com/zoho/crm/api/notifications/notification.rb +294 -0
  851. data/src/com/zoho/crm/api/notifications/notification_condition.rb +101 -0
  852. data/src/com/zoho/crm/api/notifications/notifications_operations.rb +165 -0
  853. data/src/com/zoho/crm/api/notifications/response_handler.rb +12 -0
  854. data/src/com/zoho/crm/api/notifications/response_wrapper.rb +84 -0
  855. data/src/com/zoho/crm/api/notifications/success_response.rb +123 -0
  856. data/src/com/zoho/crm/api/org/action_handler.rb +12 -0
  857. data/src/com/zoho/crm/api/org/action_response.rb +12 -0
  858. data/src/com/zoho/crm/api/org/action_wrapper.rb +63 -0
  859. data/src/com/zoho/crm/api/org/api_exception.rb +184 -0
  860. data/src/com/zoho/crm/api/org/checkin_preferences.rb +63 -0
  861. data/src/com/zoho/crm/api/org/feature.rb +82 -0
  862. data/src/com/zoho/crm/api/org/file_body_wrapper.rb +66 -0
  863. data/src/com/zoho/crm/api/org/hierarchy_preferences.rb +83 -0
  864. data/src/com/zoho/crm/api/org/license_details.rb +177 -0
  865. data/src/com/zoho/crm/api/org/org.rb +862 -0
  866. data/src/com/zoho/crm/api/org/org_operations.rb +82 -0
  867. data/src/com/zoho/crm/api/org/resource.rb +82 -0
  868. data/src/com/zoho/crm/api/org/response_handler.rb +12 -0
  869. data/src/com/zoho/crm/api/org/response_wrapper.rb +65 -0
  870. data/src/com/zoho/crm/api/org/success_response.rb +125 -0
  871. data/src/com/zoho/crm/api/param.rb +12 -0
  872. data/src/com/zoho/crm/api/parameter_map.rb +62 -0
  873. data/src/com/zoho/crm/api/pick_list_values/api_exception.rb +123 -0
  874. data/src/com/zoho/crm/api/pick_list_values/layout_association.rb +101 -0
  875. data/src/com/zoho/crm/api/pick_list_values/pick_list_values.rb +196 -0
  876. data/src/com/zoho/crm/api/pick_list_values/pick_list_values_operations.rb +47 -0
  877. data/src/com/zoho/crm/api/pick_list_values/response_handler.rb +12 -0
  878. data/src/com/zoho/crm/api/pick_list_values/response_wrapper.rb +65 -0
  879. data/src/com/zoho/crm/api/pipeline/action_handler.rb +12 -0
  880. data/src/com/zoho/crm/api/pipeline/action_response.rb +12 -0
  881. data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +65 -0
  882. data/src/com/zoho/crm/api/pipeline/api_exception.rb +131 -0
  883. data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +63 -0
  884. data/src/com/zoho/crm/api/pipeline/d_pipeline.rb +63 -0
  885. data/src/com/zoho/crm/api/pipeline/d_pipeline_wrapper.rb +63 -0
  886. data/src/com/zoho/crm/api/pipeline/delete.rb +63 -0
  887. data/src/com/zoho/crm/api/pipeline/forecast_category.rb +82 -0
  888. data/src/com/zoho/crm/api/pipeline/json_details.rb +101 -0
  889. data/src/com/zoho/crm/api/pipeline/maps.rb +196 -0
  890. data/src/com/zoho/crm/api/pipeline/pipeline.rb +177 -0
  891. data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +195 -0
  892. data/src/com/zoho/crm/api/pipeline/response_handler.rb +12 -0
  893. data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +65 -0
  894. data/src/com/zoho/crm/api/pipeline/stages.rb +82 -0
  895. data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
  896. data/src/com/zoho/crm/api/pipeline/t_pipeline.rb +82 -0
  897. data/src/com/zoho/crm/api/pipeline/transfer_pipeline.rb +82 -0
  898. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_handler.rb +12 -0
  899. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_response.rb +12 -0
  900. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_wrapper.rb +65 -0
  901. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_success_response.rb +123 -0
  902. data/src/com/zoho/crm/api/pipeline/transfer_pipeline_wrapper.rb +63 -0
  903. data/src/com/zoho/crm/api/portal_invite/action_handler.rb +12 -0
  904. data/src/com/zoho/crm/api/portal_invite/action_response.rb +12 -0
  905. data/src/com/zoho/crm/api/portal_invite/action_wrapper.rb +65 -0
  906. data/src/com/zoho/crm/api/portal_invite/api_exception.rb +127 -0
  907. data/src/com/zoho/crm/api/portal_invite/body_wrapper.rb +63 -0
  908. data/src/com/zoho/crm/api/portal_invite/data.rb +12 -0
  909. data/src/com/zoho/crm/api/portal_invite/job_response.rb +101 -0
  910. data/src/com/zoho/crm/api/portal_invite/portal.rb +121 -0
  911. data/src/com/zoho/crm/api/portal_invite/portal_invite.rb +63 -0
  912. data/src/com/zoho/crm/api/portal_invite/portal_invite_operations.rb +66 -0
  913. data/src/com/zoho/crm/api/portal_invite/response_wrapper.rb +63 -0
  914. data/src/com/zoho/crm/api/portal_invite/success_response.rb +125 -0
  915. data/src/com/zoho/crm/api/portal_user_type/action_handler.rb +12 -0
  916. data/src/com/zoho/crm/api/portal_user_type/action_response.rb +12 -0
  917. data/src/com/zoho/crm/api/portal_user_type/action_wrapper.rb +65 -0
  918. data/src/com/zoho/crm/api/portal_user_type/api_exception.rb +127 -0
  919. data/src/com/zoho/crm/api/portal_user_type/body_wrapper.rb +63 -0
  920. data/src/com/zoho/crm/api/portal_user_type/fields.rb +101 -0
  921. data/src/com/zoho/crm/api/portal_user_type/filters.rb +101 -0
  922. data/src/com/zoho/crm/api/portal_user_type/layouts.rb +120 -0
  923. data/src/com/zoho/crm/api/portal_user_type/modules.rb +215 -0
  924. data/src/com/zoho/crm/api/portal_user_type/owner.rb +82 -0
  925. data/src/com/zoho/crm/api/portal_user_type/permissions.rb +177 -0
  926. data/src/com/zoho/crm/api/portal_user_type/personality_module.rb +101 -0
  927. data/src/com/zoho/crm/api/portal_user_type/portal_user_type_operations.rb +144 -0
  928. data/src/com/zoho/crm/api/portal_user_type/response_handler.rb +12 -0
  929. data/src/com/zoho/crm/api/portal_user_type/response_wrapper.rb +65 -0
  930. data/src/com/zoho/crm/api/portal_user_type/success_response.rb +123 -0
  931. data/src/com/zoho/crm/api/portal_user_type/user_type.rb +253 -0
  932. data/src/com/zoho/crm/api/portal_user_type/views.rb +120 -0
  933. data/src/com/zoho/crm/api/portals/action_handler.rb +12 -0
  934. data/src/com/zoho/crm/api/portals/action_response.rb +12 -0
  935. data/src/com/zoho/crm/api/portals/action_wrapper.rb +65 -0
  936. data/src/com/zoho/crm/api/portals/api_exception.rb +127 -0
  937. data/src/com/zoho/crm/api/portals/body_wrapper.rb +63 -0
  938. data/src/com/zoho/crm/api/portals/owner.rb +82 -0
  939. data/src/com/zoho/crm/api/portals/portals.rb +177 -0
  940. data/src/com/zoho/crm/api/portals/portals_operations.rb +96 -0
  941. data/src/com/zoho/crm/api/portals/response_handler.rb +12 -0
  942. data/src/com/zoho/crm/api/portals/response_wrapper.rb +65 -0
  943. data/src/com/zoho/crm/api/portals/success_response.rb +123 -0
  944. data/src/com/zoho/crm/api/portals_meta/filters.rb +101 -0
  945. data/src/com/zoho/crm/api/portals_meta/layouts.rb +101 -0
  946. data/src/com/zoho/crm/api/portals_meta/modules.rb +177 -0
  947. data/src/com/zoho/crm/api/portals_meta/related_lists.rb +63 -0
  948. data/src/com/zoho/crm/api/portals_meta/views.rb +120 -0
  949. data/src/com/zoho/crm/api/portals_meta/wrapper.rb +63 -0
  950. data/src/com/zoho/crm/api/privacy_configurable_apps/apps.rb +63 -0
  951. data/src/com/zoho/crm/api/privacy_configurable_apps/wrapper.rb +63 -0
  952. data/src/com/zoho/crm/api/privacy_preference/config.rb +101 -0
  953. data/src/com/zoho/crm/api/privacy_preference/option.rb +120 -0
  954. data/src/com/zoho/crm/api/privacy_preference/preference.rb +462 -0
  955. data/src/com/zoho/crm/api/privacy_preference/privacy_preference.rb +82 -0
  956. data/src/com/zoho/crm/api/privacy_preference/section.rb +139 -0
  957. data/src/com/zoho/crm/api/privacy_preference/tpt.rb +101 -0
  958. data/src/com/zoho/crm/api/privacy_preference/wrapper.rb +63 -0
  959. data/src/com/zoho/crm/api/profiles/action_handler.rb +12 -0
  960. data/src/com/zoho/crm/api/profiles/action_response.rb +12 -0
  961. data/src/com/zoho/crm/api/profiles/action_wrapper.rb +65 -0
  962. data/src/com/zoho/crm/api/profiles/api_exception.rb +127 -0
  963. data/src/com/zoho/crm/api/profiles/body_wrapper.rb +63 -0
  964. data/src/com/zoho/crm/api/profiles/category.rb +12 -0
  965. data/src/com/zoho/crm/api/profiles/category_module.rb +122 -0
  966. data/src/com/zoho/crm/api/profiles/category_others.rb +103 -0
  967. data/src/com/zoho/crm/api/profiles/default_view.rb +101 -0
  968. data/src/com/zoho/crm/api/profiles/info.rb +63 -0
  969. data/src/com/zoho/crm/api/profiles/minified_profile.rb +101 -0
  970. data/src/com/zoho/crm/api/profiles/permission_detail.rb +177 -0
  971. data/src/com/zoho/crm/api/profiles/profile.rb +369 -0
  972. data/src/com/zoho/crm/api/profiles/profiles_operations.rb +152 -0
  973. data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
  974. data/src/com/zoho/crm/api/profiles/response_wrapper.rb +84 -0
  975. data/src/com/zoho/crm/api/profiles/section.rb +82 -0
  976. data/src/com/zoho/crm/api/profiles/success_response.rb +125 -0
  977. data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
  978. data/src/com/zoho/crm/api/record/action_response.rb +12 -0
  979. data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
  980. data/src/com/zoho/crm/api/record/api_exception.rb +143 -0
  981. data/src/com/zoho/crm/api/record/body_wrapper.rb +158 -0
  982. data/src/com/zoho/crm/api/record/comment.rb +120 -0
  983. data/src/com/zoho/crm/api/record/consent.rb +307 -0
  984. data/src/com/zoho/crm/api/record/count_handler.rb +12 -0
  985. data/src/com/zoho/crm/api/record/count_wrapper.rb +65 -0
  986. data/src/com/zoho/crm/api/record/criteria.rb +137 -0
  987. data/src/com/zoho/crm/api/record/deleted_record.rb +159 -0
  988. data/src/com/zoho/crm/api/record/deleted_records_handler.rb +12 -0
  989. data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +84 -0
  990. data/src/com/zoho/crm/api/record/download_handler.rb +12 -0
  991. data/src/com/zoho/crm/api/record/duplicate_record.rb +103 -0
  992. data/src/com/zoho/crm/api/record/field.rb +2867 -0
  993. data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
  994. data/src/com/zoho/crm/api/record/file_details.rb +235 -0
  995. data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
  996. data/src/com/zoho/crm/api/record/image_upload.rb +330 -0
  997. data/src/com/zoho/crm/api/record/info.rb +253 -0
  998. data/src/com/zoho/crm/api/record/line_item_product.rb +171 -0
  999. data/src/com/zoho/crm/api/record/line_tax.rb +139 -0
  1000. data/src/com/zoho/crm/api/record/mass_update.rb +142 -0
  1001. data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +12 -0
  1002. data/src/com/zoho/crm/api/record/mass_update_action_response.rb +12 -0
  1003. data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +65 -0
  1004. data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +158 -0
  1005. data/src/com/zoho/crm/api/record/mass_update_response.rb +12 -0
  1006. data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +12 -0
  1007. data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +65 -0
  1008. data/src/com/zoho/crm/api/record/mass_update_success_response.rb +123 -0
  1009. data/src/com/zoho/crm/api/record/mass_update_territory.rb +82 -0
  1010. data/src/com/zoho/crm/api/record/multi_select_lookup.rb +101 -0
  1011. data/src/com/zoho/crm/api/record/multi_select_picklist.rb +82 -0
  1012. data/src/com/zoho/crm/api/record/options.rb +32 -0
  1013. data/src/com/zoho/crm/api/record/participants.rb +222 -0
  1014. data/src/com/zoho/crm/api/record/price_book.rb +137 -0
  1015. data/src/com/zoho/crm/api/record/pricing_details.rb +188 -0
  1016. data/src/com/zoho/crm/api/record/record.rb +211 -0
  1017. data/src/com/zoho/crm/api/record/record_operations.rb +1147 -0
  1018. data/src/com/zoho/crm/api/record/recurring_activity.rb +82 -0
  1019. data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
  1020. data/src/com/zoho/crm/api/record/reminder.rb +101 -0
  1021. data/src/com/zoho/crm/api/record/response_handler.rb +12 -0
  1022. data/src/com/zoho/crm/api/record/response_wrapper.rb +84 -0
  1023. data/src/com/zoho/crm/api/record/success_response.rb +163 -0
  1024. data/src/com/zoho/crm/api/record/tax.rb +82 -0
  1025. data/src/com/zoho/crm/api/record/territory.rb +140 -0
  1026. data/src/com/zoho/crm/api/record/time_range.rb +82 -0
  1027. data/src/com/zoho/crm/api/record/widget.rb +82 -0
  1028. data/src/com/zoho/crm/api/record/wizard.rb +82 -0
  1029. data/src/com/zoho/crm/api/record_locking/action_handler.rb +12 -0
  1030. data/src/com/zoho/crm/api/record_locking/action_response.rb +12 -0
  1031. data/src/com/zoho/crm/api/record_locking/action_wrapper.rb +65 -0
  1032. data/src/com/zoho/crm/api/record_locking/api_exception.rb +127 -0
  1033. data/src/com/zoho/crm/api/record_locking/body_wrapper.rb +63 -0
  1034. data/src/com/zoho/crm/api/record_locking/info.rb +253 -0
  1035. data/src/com/zoho/crm/api/record_locking/lock_record.rb +63 -0
  1036. data/src/com/zoho/crm/api/record_locking/locked_for_s.rb +101 -0
  1037. data/src/com/zoho/crm/api/record_locking/record_lock.rb +257 -0
  1038. data/src/com/zoho/crm/api/record_locking/record_locking_operations.rb +198 -0
  1039. data/src/com/zoho/crm/api/record_locking/response_handler.rb +12 -0
  1040. data/src/com/zoho/crm/api/record_locking/response_wrapper.rb +84 -0
  1041. data/src/com/zoho/crm/api/record_locking/success_response.rb +161 -0
  1042. data/src/com/zoho/crm/api/record_locking_configuration/action_handler.rb +12 -0
  1043. data/src/com/zoho/crm/api/record_locking_configuration/action_response.rb +12 -0
  1044. data/src/com/zoho/crm/api/record_locking_configuration/action_wrapper.rb +65 -0
  1045. data/src/com/zoho/crm/api/record_locking_configuration/api_exception.rb +127 -0
  1046. data/src/com/zoho/crm/api/record_locking_configuration/body_wrapper.rb +63 -0
  1047. data/src/com/zoho/crm/api/record_locking_configuration/criteria.rb +136 -0
  1048. data/src/com/zoho/crm/api/record_locking_configuration/dependee.rb +82 -0
  1049. data/src/com/zoho/crm/api/record_locking_configuration/field.rb +82 -0
  1050. data/src/com/zoho/crm/api/record_locking_configuration/lock_excluded_profile.rb +82 -0
  1051. data/src/com/zoho/crm/api/record_locking_configuration/locking_rules.rb +139 -0
  1052. data/src/com/zoho/crm/api/record_locking_configuration/record_lock.rb +351 -0
  1053. data/src/com/zoho/crm/api/record_locking_configuration/record_locking_configuration_operations.rb +153 -0
  1054. data/src/com/zoho/crm/api/record_locking_configuration/response_handler.rb +12 -0
  1055. data/src/com/zoho/crm/api/record_locking_configuration/response_wrapper.rb +65 -0
  1056. data/src/com/zoho/crm/api/record_locking_configuration/restricted_custom_button.rb +82 -0
  1057. data/src/com/zoho/crm/api/record_locking_configuration/success_response.rb +123 -0
  1058. data/src/com/zoho/crm/api/record_share_email/action_handler.rb +12 -0
  1059. data/src/com/zoho/crm/api/record_share_email/action_response.rb +12 -0
  1060. data/src/com/zoho/crm/api/record_share_email/action_wrapper.rb +65 -0
  1061. data/src/com/zoho/crm/api/record_share_email/api_exception.rb +125 -0
  1062. data/src/com/zoho/crm/api/record_share_email/body_wrapper.rb +63 -0
  1063. data/src/com/zoho/crm/api/record_share_email/record_share_email_operations.rb +109 -0
  1064. data/src/com/zoho/crm/api/record_share_email/success_response.rb +123 -0
  1065. data/src/com/zoho/crm/api/recycle_bin/action_handler.rb +12 -0
  1066. data/src/com/zoho/crm/api/recycle_bin/action_response.rb +12 -0
  1067. data/src/com/zoho/crm/api/recycle_bin/action_wrapper.rb +65 -0
  1068. data/src/com/zoho/crm/api/recycle_bin/api_exception.rb +127 -0
  1069. data/src/com/zoho/crm/api/recycle_bin/count.rb +63 -0
  1070. data/src/com/zoho/crm/api/recycle_bin/field.rb +82 -0
  1071. data/src/com/zoho/crm/api/recycle_bin/info.rb +120 -0
  1072. data/src/com/zoho/crm/api/recycle_bin/recycle_bin.rb +160 -0
  1073. data/src/com/zoho/crm/api/recycle_bin/recycle_bin_operations.rb +132 -0
  1074. data/src/com/zoho/crm/api/recycle_bin/response_handler.rb +12 -0
  1075. data/src/com/zoho/crm/api/recycle_bin/response_wrapper.rb +84 -0
  1076. data/src/com/zoho/crm/api/recycle_bin/restore_all_records.rb +64 -0
  1077. data/src/com/zoho/crm/api/recycle_bin/success_response.rb +123 -0
  1078. data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
  1079. data/src/com/zoho/crm/api/related_lists/field.rb +82 -0
  1080. data/src/com/zoho/crm/api/related_lists/module_map.rb +82 -0
  1081. data/src/com/zoho/crm/api/related_lists/related_list.rb +406 -0
  1082. data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +82 -0
  1083. data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
  1084. data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
  1085. data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
  1086. data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
  1087. data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
  1088. data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
  1089. data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
  1090. data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
  1091. data/src/com/zoho/crm/api/related_records/related_records_operations.rb +677 -0
  1092. data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
  1093. data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
  1094. data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
  1095. data/src/com/zoho/crm/api/request_proxy.rb +17 -0
  1096. data/src/com/zoho/crm/api/reschedule_history/action_handler.rb +12 -0
  1097. data/src/com/zoho/crm/api/reschedule_history/action_response.rb +12 -0
  1098. data/src/com/zoho/crm/api/reschedule_history/action_wrapper.rb +65 -0
  1099. data/src/com/zoho/crm/api/reschedule_history/api_exception.rb +127 -0
  1100. data/src/com/zoho/crm/api/reschedule_history/appointment_name.rb +82 -0
  1101. data/src/com/zoho/crm/api/reschedule_history/approval.rb +120 -0
  1102. data/src/com/zoho/crm/api/reschedule_history/body_wrapper.rb +63 -0
  1103. data/src/com/zoho/crm/api/reschedule_history/info.rb +177 -0
  1104. data/src/com/zoho/crm/api/reschedule_history/reschedule_history.rb +557 -0
  1105. data/src/com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb +181 -0
  1106. data/src/com/zoho/crm/api/reschedule_history/response_handler.rb +12 -0
  1107. data/src/com/zoho/crm/api/reschedule_history/response_wrapper.rb +84 -0
  1108. data/src/com/zoho/crm/api/reschedule_history/success_response.rb +123 -0
  1109. data/src/com/zoho/crm/api/reschedule_history/user.rb +101 -0
  1110. data/src/com/zoho/crm/api/roles/action_handler.rb +12 -0
  1111. data/src/com/zoho/crm/api/roles/action_response.rb +12 -0
  1112. data/src/com/zoho/crm/api/roles/action_wrapper.rb +65 -0
  1113. data/src/com/zoho/crm/api/roles/api_exception.rb +127 -0
  1114. data/src/com/zoho/crm/api/roles/body_wrapper.rb +63 -0
  1115. data/src/com/zoho/crm/api/roles/reporting_to.rb +82 -0
  1116. data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
  1117. data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
  1118. data/src/com/zoho/crm/api/roles/role.rb +273 -0
  1119. data/src/com/zoho/crm/api/roles/roles_operations.rb +150 -0
  1120. data/src/com/zoho/crm/api/roles/success_response.rb +123 -0
  1121. data/src/com/zoho/crm/api/scoring_rules/action_handler.rb +12 -0
  1122. data/src/com/zoho/crm/api/scoring_rules/action_response.rb +12 -0
  1123. data/src/com/zoho/crm/api/scoring_rules/action_wrapper.rb +65 -0
  1124. data/src/com/zoho/crm/api/scoring_rules/api_exception.rb +127 -0
  1125. data/src/com/zoho/crm/api/scoring_rules/body_wrapper.rb +63 -0
  1126. data/src/com/zoho/crm/api/scoring_rules/criteria.rb +136 -0
  1127. data/src/com/zoho/crm/api/scoring_rules/expected_field.rb +82 -0
  1128. data/src/com/zoho/crm/api/scoring_rules/field.rb +82 -0
  1129. data/src/com/zoho/crm/api/scoring_rules/field_rule.rb +101 -0
  1130. data/src/com/zoho/crm/api/scoring_rules/info.rb +215 -0
  1131. data/src/com/zoho/crm/api/scoring_rules/layout.rb +82 -0
  1132. data/src/com/zoho/crm/api/scoring_rules/layout_request_wrapper.rb +63 -0
  1133. data/src/com/zoho/crm/api/scoring_rules/response_handler.rb +12 -0
  1134. data/src/com/zoho/crm/api/scoring_rules/response_wrapper.rb +84 -0
  1135. data/src/com/zoho/crm/api/scoring_rules/role_request_wrapper.rb +63 -0
  1136. data/src/com/zoho/crm/api/scoring_rules/scoring_rule.rb +274 -0
  1137. data/src/com/zoho/crm/api/scoring_rules/scoring_rules_operations.rb +328 -0
  1138. data/src/com/zoho/crm/api/scoring_rules/signal.rb +82 -0
  1139. data/src/com/zoho/crm/api/scoring_rules/signal_rule.rb +101 -0
  1140. data/src/com/zoho/crm/api/scoring_rules/success_response.rb +125 -0
  1141. data/src/com/zoho/crm/api/sdk_config.rb +16 -0
  1142. data/src/com/zoho/crm/api/send_mail/action_handler.rb +12 -0
  1143. data/src/com/zoho/crm/api/send_mail/action_response.rb +12 -0
  1144. data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +65 -0
  1145. data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
  1146. data/src/com/zoho/crm/api/send_mail/attachment.rb +63 -0
  1147. data/src/com/zoho/crm/api/send_mail/blocked_email_address.rb +82 -0
  1148. data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +63 -0
  1149. data/src/com/zoho/crm/api/send_mail/cc.rb +82 -0
  1150. data/src/com/zoho/crm/api/send_mail/data.rb +368 -0
  1151. data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +82 -0
  1152. data/src/com/zoho/crm/api/send_mail/from.rb +82 -0
  1153. data/src/com/zoho/crm/api/send_mail/in_reply_to.rb +82 -0
  1154. data/src/com/zoho/crm/api/send_mail/inventory_details.rb +63 -0
  1155. data/src/com/zoho/crm/api/send_mail/inventory_template.rb +82 -0
  1156. data/src/com/zoho/crm/api/send_mail/linked_module.rb +82 -0
  1157. data/src/com/zoho/crm/api/send_mail/linked_record.rb +101 -0
  1158. data/src/com/zoho/crm/api/send_mail/owner.rb +82 -0
  1159. data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +51 -0
  1160. data/src/com/zoho/crm/api/send_mail/success_response.rb +123 -0
  1161. data/src/com/zoho/crm/api/send_mail/template.rb +12 -0
  1162. data/src/com/zoho/crm/api/send_mail/to.rb +82 -0
  1163. data/src/com/zoho/crm/api/service_preference/action_handler.rb +12 -0
  1164. data/src/com/zoho/crm/api/service_preference/action_response.rb +12 -0
  1165. data/src/com/zoho/crm/api/service_preference/action_wrapper.rb +65 -0
  1166. data/src/com/zoho/crm/api/service_preference/api_exception.rb +127 -0
  1167. data/src/com/zoho/crm/api/service_preference/body_wrapper.rb +63 -0
  1168. data/src/com/zoho/crm/api/service_preference/response_handler.rb +12 -0
  1169. data/src/com/zoho/crm/api/service_preference/response_wrapper.rb +65 -0
  1170. data/src/com/zoho/crm/api/service_preference/service_preference.rb +63 -0
  1171. data/src/com/zoho/crm/api/service_preference/service_preference_operations.rb +51 -0
  1172. data/src/com/zoho/crm/api/service_preference/success_response.rb +123 -0
  1173. data/src/com/zoho/crm/api/share_records/action_handler.rb +12 -0
  1174. data/src/com/zoho/crm/api/share_records/action_response.rb +12 -0
  1175. data/src/com/zoho/crm/api/share_records/action_wrapper.rb +84 -0
  1176. data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
  1177. data/src/com/zoho/crm/api/share_records/body_wrapper.rb +101 -0
  1178. data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +12 -0
  1179. data/src/com/zoho/crm/api/share_records/delete_action_response.rb +12 -0
  1180. data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +65 -0
  1181. data/src/com/zoho/crm/api/share_records/dependee.rb +82 -0
  1182. data/src/com/zoho/crm/api/share_records/module.rb +101 -0
  1183. data/src/com/zoho/crm/api/share_records/response_handler.rb +12 -0
  1184. data/src/com/zoho/crm/api/share_records/response_wrapper.rb +85 -0
  1185. data/src/com/zoho/crm/api/share_records/share_record.rb +198 -0
  1186. data/src/com/zoho/crm/api/share_records/share_records_operations.rb +130 -0
  1187. data/src/com/zoho/crm/api/share_records/shared_through.rb +120 -0
  1188. data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
  1189. data/src/com/zoho/crm/api/sharing_rules/action_handler.rb +12 -0
  1190. data/src/com/zoho/crm/api/sharing_rules/action_response.rb +12 -0
  1191. data/src/com/zoho/crm/api/sharing_rules/action_wrapper.rb +65 -0
  1192. data/src/com/zoho/crm/api/sharing_rules/api_exception.rb +129 -0
  1193. data/src/com/zoho/crm/api/sharing_rules/body_wrapper.rb +63 -0
  1194. data/src/com/zoho/crm/api/sharing_rules/criteria.rb +155 -0
  1195. data/src/com/zoho/crm/api/sharing_rules/field.rb +82 -0
  1196. data/src/com/zoho/crm/api/sharing_rules/filters_body.rb +63 -0
  1197. data/src/com/zoho/crm/api/sharing_rules/info.rb +120 -0
  1198. data/src/com/zoho/crm/api/sharing_rules/module.rb +101 -0
  1199. data/src/com/zoho/crm/api/sharing_rules/resource.rb +82 -0
  1200. data/src/com/zoho/crm/api/sharing_rules/response_handler.rb +12 -0
  1201. data/src/com/zoho/crm/api/sharing_rules/response_wrapper.rb +84 -0
  1202. data/src/com/zoho/crm/api/sharing_rules/rules_summary.rb +101 -0
  1203. data/src/com/zoho/crm/api/sharing_rules/shared.rb +102 -0
  1204. data/src/com/zoho/crm/api/sharing_rules/sharing_rules.rb +254 -0
  1205. data/src/com/zoho/crm/api/sharing_rules/sharing_rules_operations.rb +324 -0
  1206. data/src/com/zoho/crm/api/sharing_rules/success_response.rb +123 -0
  1207. data/src/com/zoho/crm/api/sharing_rules/summary_response_handler.rb +12 -0
  1208. data/src/com/zoho/crm/api/sharing_rules/summary_response_wrapper.rb +65 -0
  1209. data/src/com/zoho/crm/api/shift_hours/action_handler.rb +12 -0
  1210. data/src/com/zoho/crm/api/shift_hours/action_response.rb +12 -0
  1211. data/src/com/zoho/crm/api/shift_hours/action_wrapper.rb +65 -0
  1212. data/src/com/zoho/crm/api/shift_hours/api_exception.rb +127 -0
  1213. data/src/com/zoho/crm/api/shift_hours/body_wrapper.rb +63 -0
  1214. data/src/com/zoho/crm/api/shift_hours/break_custom_timing.rb +82 -0
  1215. data/src/com/zoho/crm/api/shift_hours/break_hours.rb +139 -0
  1216. data/src/com/zoho/crm/api/shift_hours/holidays.rb +120 -0
  1217. data/src/com/zoho/crm/api/shift_hours/mandatory_details.rb +82 -0
  1218. data/src/com/zoho/crm/api/shift_hours/response_handler.rb +12 -0
  1219. data/src/com/zoho/crm/api/shift_hours/response_wrapper.rb +84 -0
  1220. data/src/com/zoho/crm/api/shift_hours/role.rb +82 -0
  1221. data/src/com/zoho/crm/api/shift_hours/shift_count.rb +82 -0
  1222. data/src/com/zoho/crm/api/shift_hours/shift_custom_timing.rb +82 -0
  1223. data/src/com/zoho/crm/api/shift_hours/shift_hours.rb +253 -0
  1224. data/src/com/zoho/crm/api/shift_hours/shift_hours_operations.rb +166 -0
  1225. data/src/com/zoho/crm/api/shift_hours/success_response.rb +123 -0
  1226. data/src/com/zoho/crm/api/shift_hours/users.rb +158 -0
  1227. data/src/com/zoho/crm/api/signals/api_exception.rb +123 -0
  1228. data/src/com/zoho/crm/api/signals/extension.rb +120 -0
  1229. data/src/com/zoho/crm/api/signals/feature_availability.rb +82 -0
  1230. data/src/com/zoho/crm/api/signals/response_handler.rb +12 -0
  1231. data/src/com/zoho/crm/api/signals/response_wrapper.rb +65 -0
  1232. data/src/com/zoho/crm/api/signals/signals.rb +177 -0
  1233. data/src/com/zoho/crm/api/signals/signals_operations.rb +30 -0
  1234. data/src/com/zoho/crm/api/signals_notifications/action.rb +120 -0
  1235. data/src/com/zoho/crm/api/signals_notifications/action_handler.rb +12 -0
  1236. data/src/com/zoho/crm/api/signals_notifications/action_response.rb +12 -0
  1237. data/src/com/zoho/crm/api/signals_notifications/action_wrapper.rb +65 -0
  1238. data/src/com/zoho/crm/api/signals_notifications/api_exception.rb +125 -0
  1239. data/src/com/zoho/crm/api/signals_notifications/body_wrapper.rb +63 -0
  1240. data/src/com/zoho/crm/api/signals_notifications/signals.rb +177 -0
  1241. data/src/com/zoho/crm/api/signals_notifications/signals_notifications_operations.rb +37 -0
  1242. data/src/com/zoho/crm/api/signals_notifications/success_response.rb +123 -0
  1243. data/src/com/zoho/crm/api/tags/action_handler.rb +12 -0
  1244. data/src/com/zoho/crm/api/tags/action_response.rb +12 -0
  1245. data/src/com/zoho/crm/api/tags/action_wrapper.rb +65 -0
  1246. data/src/com/zoho/crm/api/tags/api_exception.rb +131 -0
  1247. data/src/com/zoho/crm/api/tags/associated_places.rb +82 -0
  1248. data/src/com/zoho/crm/api/tags/body_wrapper.rb +63 -0
  1249. data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +63 -0
  1250. data/src/com/zoho/crm/api/tags/count_response_wrapper.rb +65 -0
  1251. data/src/com/zoho/crm/api/tags/error_details.rb +82 -0
  1252. data/src/com/zoho/crm/api/tags/existing_tag.rb +82 -0
  1253. data/src/com/zoho/crm/api/tags/existing_tag_request_wrapper.rb +82 -0
  1254. data/src/com/zoho/crm/api/tags/info.rb +82 -0
  1255. data/src/com/zoho/crm/api/tags/merge_wrapper.rb +63 -0
  1256. data/src/com/zoho/crm/api/tags/new_tag_request_wrapper.rb +101 -0
  1257. data/src/com/zoho/crm/api/tags/record_action_handler.rb +12 -0
  1258. data/src/com/zoho/crm/api/tags/record_action_response.rb +12 -0
  1259. data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +122 -0
  1260. data/src/com/zoho/crm/api/tags/record_detail_tag.rb +101 -0
  1261. data/src/com/zoho/crm/api/tags/record_success_response.rb +123 -0
  1262. data/src/com/zoho/crm/api/tags/resources.rb +101 -0
  1263. data/src/com/zoho/crm/api/tags/response_handler.rb +12 -0
  1264. data/src/com/zoho/crm/api/tags/response_wrapper.rb +84 -0
  1265. data/src/com/zoho/crm/api/tags/success_response.rb +123 -0
  1266. data/src/com/zoho/crm/api/tags/success_wrapper.rb +65 -0
  1267. data/src/com/zoho/crm/api/tags/tag.rb +179 -0
  1268. data/src/com/zoho/crm/api/tags/tags_operations.rb +393 -0
  1269. data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
  1270. data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
  1271. data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
  1272. data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
  1273. data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
  1274. data/src/com/zoho/crm/api/taxes/expected_field.rb +82 -0
  1275. data/src/com/zoho/crm/api/taxes/org_tax.rb +82 -0
  1276. data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
  1277. data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
  1278. data/src/com/zoho/crm/api/taxes/response_wrapper.rb +65 -0
  1279. data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
  1280. data/src/com/zoho/crm/api/taxes/tax.rb +158 -0
  1281. data/src/com/zoho/crm/api/taxes/taxes_operations.rb +70 -0
  1282. data/src/com/zoho/crm/api/templates/api_exception.rb +121 -0
  1283. data/src/com/zoho/crm/api/templates/folder.rb +82 -0
  1284. data/src/com/zoho/crm/api/templates/templates.rb +234 -0
  1285. data/src/com/zoho/crm/api/templates/wrapper.rb +63 -0
  1286. data/src/com/zoho/crm/api/territories/action_handler.rb +12 -0
  1287. data/src/com/zoho/crm/api/territories/action_response.rb +12 -0
  1288. data/src/com/zoho/crm/api/territories/action_wrapper.rb +65 -0
  1289. data/src/com/zoho/crm/api/territories/api_exception.rb +127 -0
  1290. data/src/com/zoho/crm/api/territories/associated_users_count.rb +82 -0
  1291. data/src/com/zoho/crm/api/territories/associated_users_count_wrapper.rb +84 -0
  1292. data/src/com/zoho/crm/api/territories/body_wrapper.rb +63 -0
  1293. data/src/com/zoho/crm/api/territories/criteria.rb +136 -0
  1294. data/src/com/zoho/crm/api/territories/deleted_associated_territories.rb +121 -0
  1295. data/src/com/zoho/crm/api/territories/deleted_associated_wrapper.rb +82 -0
  1296. data/src/com/zoho/crm/api/territories/field.rb +82 -0
  1297. data/src/com/zoho/crm/api/territories/info.rb +120 -0
  1298. data/src/com/zoho/crm/api/territories/manager.rb +82 -0
  1299. data/src/com/zoho/crm/api/territories/minified_territory.rb +101 -0
  1300. data/src/com/zoho/crm/api/territories/reporting_to.rb +82 -0
  1301. data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
  1302. data/src/com/zoho/crm/api/territories/response_wrapper.rb +84 -0
  1303. data/src/com/zoho/crm/api/territories/success_response.rb +123 -0
  1304. data/src/com/zoho/crm/api/territories/territories.rb +312 -0
  1305. data/src/com/zoho/crm/api/territories/territories_operations.rb +307 -0
  1306. data/src/com/zoho/crm/api/territories/transfer_body_wrapper.rb +63 -0
  1307. data/src/com/zoho/crm/api/territories/transfer_territory.rb +101 -0
  1308. data/src/com/zoho/crm/api/territory_users/action_handler.rb +12 -0
  1309. data/src/com/zoho/crm/api/territory_users/action_response.rb +12 -0
  1310. data/src/com/zoho/crm/api/territory_users/action_wrapper.rb +65 -0
  1311. data/src/com/zoho/crm/api/territory_users/api_exception.rb +127 -0
  1312. data/src/com/zoho/crm/api/territory_users/body_wrapper.rb +64 -0
  1313. data/src/com/zoho/crm/api/territory_users/info.rb +120 -0
  1314. data/src/com/zoho/crm/api/territory_users/response_handler.rb +12 -0
  1315. data/src/com/zoho/crm/api/territory_users/response_wrapper.rb +85 -0
  1316. data/src/com/zoho/crm/api/territory_users/success_response.rb +123 -0
  1317. data/src/com/zoho/crm/api/territory_users/territory_users_operations.rb +172 -0
  1318. data/src/com/zoho/crm/api/timelines/api_exception.rb +123 -0
  1319. data/src/com/zoho/crm/api/timelines/automation_detail.rb +101 -0
  1320. data/src/com/zoho/crm/api/timelines/field_history.rb +177 -0
  1321. data/src/com/zoho/crm/api/timelines/field_history_value.rb +82 -0
  1322. data/src/com/zoho/crm/api/timelines/info.rb +158 -0
  1323. data/src/com/zoho/crm/api/timelines/module.rb +82 -0
  1324. data/src/com/zoho/crm/api/timelines/name_id_structure.rb +82 -0
  1325. data/src/com/zoho/crm/api/timelines/path_finder.rb +101 -0
  1326. data/src/com/zoho/crm/api/timelines/picklist_detail.rb +158 -0
  1327. data/src/com/zoho/crm/api/timelines/record.rb +101 -0
  1328. data/src/com/zoho/crm/api/timelines/related_record.rb +101 -0
  1329. data/src/com/zoho/crm/api/timelines/response_handler.rb +12 -0
  1330. data/src/com/zoho/crm/api/timelines/response_wrapper.rb +84 -0
  1331. data/src/com/zoho/crm/api/timelines/state.rb +120 -0
  1332. data/src/com/zoho/crm/api/timelines/timeline.rb +253 -0
  1333. data/src/com/zoho/crm/api/timelines/timelines_operations.rb +89 -0
  1334. data/src/com/zoho/crm/api/unblock_email/action_handler.rb +12 -0
  1335. data/src/com/zoho/crm/api/unblock_email/action_response.rb +12 -0
  1336. data/src/com/zoho/crm/api/unblock_email/action_wrapper.rb +65 -0
  1337. data/src/com/zoho/crm/api/unblock_email/api_exception.rb +123 -0
  1338. data/src/com/zoho/crm/api/unblock_email/body_wrapper.rb +82 -0
  1339. data/src/com/zoho/crm/api/unblock_email/success_response.rb +122 -0
  1340. data/src/com/zoho/crm/api/unblock_email/unblock_email_operations.rb +71 -0
  1341. data/src/com/zoho/crm/api/unsubscribe_links/action_handler.rb +12 -0
  1342. data/src/com/zoho/crm/api/unsubscribe_links/action_response.rb +12 -0
  1343. data/src/com/zoho/crm/api/unsubscribe_links/action_wrapper.rb +65 -0
  1344. data/src/com/zoho/crm/api/unsubscribe_links/api_exception.rb +129 -0
  1345. data/src/com/zoho/crm/api/unsubscribe_links/associated_places.rb +101 -0
  1346. data/src/com/zoho/crm/api/unsubscribe_links/association_details.rb +82 -0
  1347. data/src/com/zoho/crm/api/unsubscribe_links/associations_response_handler.rb +12 -0
  1348. data/src/com/zoho/crm/api/unsubscribe_links/associations_response_wrapper.rb +65 -0
  1349. data/src/com/zoho/crm/api/unsubscribe_links/body_wrapper.rb +63 -0
  1350. data/src/com/zoho/crm/api/unsubscribe_links/detail.rb +63 -0
  1351. data/src/com/zoho/crm/api/unsubscribe_links/module.rb +82 -0
  1352. data/src/com/zoho/crm/api/unsubscribe_links/resource.rb +82 -0
  1353. data/src/com/zoho/crm/api/unsubscribe_links/response_handler.rb +12 -0
  1354. data/src/com/zoho/crm/api/unsubscribe_links/response_wrapper.rb +65 -0
  1355. data/src/com/zoho/crm/api/unsubscribe_links/success_response.rb +123 -0
  1356. data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links.rb +330 -0
  1357. data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links_operations.rb +149 -0
  1358. data/src/com/zoho/crm/api/unsubscribe_links/user.rb +82 -0
  1359. data/src/com/zoho/crm/api/user_groups/action_handler.rb +12 -0
  1360. data/src/com/zoho/crm/api/user_groups/action_response.rb +12 -0
  1361. data/src/com/zoho/crm/api/user_groups/action_wrapper.rb +65 -0
  1362. data/src/com/zoho/crm/api/user_groups/api_exception.rb +131 -0
  1363. data/src/com/zoho/crm/api/user_groups/assign.rb +159 -0
  1364. data/src/com/zoho/crm/api/user_groups/assigned_action_response.rb +12 -0
  1365. data/src/com/zoho/crm/api/user_groups/assigned_action_wrapper.rb +63 -0
  1366. data/src/com/zoho/crm/api/user_groups/associated_user.rb +82 -0
  1367. data/src/com/zoho/crm/api/user_groups/associated_user_count.rb +84 -0
  1368. data/src/com/zoho/crm/api/user_groups/association_module.rb +64 -0
  1369. data/src/com/zoho/crm/api/user_groups/association_response.rb +101 -0
  1370. data/src/com/zoho/crm/api/user_groups/association_wrapper.rb +65 -0
  1371. data/src/com/zoho/crm/api/user_groups/body_wrapper.rb +63 -0
  1372. data/src/com/zoho/crm/api/user_groups/criteria.rb +137 -0
  1373. data/src/com/zoho/crm/api/user_groups/field.rb +82 -0
  1374. data/src/com/zoho/crm/api/user_groups/get_assign_body_wrapper.rb +63 -0
  1375. data/src/com/zoho/crm/api/user_groups/get_unassign_body_wrapper.rb +63 -0
  1376. data/src/com/zoho/crm/api/user_groups/grouped_count.rb +83 -0
  1377. data/src/com/zoho/crm/api/user_groups/grouped_count_wrapper.rb +84 -0
  1378. data/src/com/zoho/crm/api/user_groups/groups.rb +215 -0
  1379. data/src/com/zoho/crm/api/user_groups/info.rb +120 -0
  1380. data/src/com/zoho/crm/api/user_groups/jobs.rb +63 -0
  1381. data/src/com/zoho/crm/api/user_groups/jobs_wrapper.rb +63 -0
  1382. data/src/com/zoho/crm/api/user_groups/owner.rb +82 -0
  1383. data/src/com/zoho/crm/api/user_groups/resource.rb +82 -0
  1384. data/src/com/zoho/crm/api/user_groups/response_handler.rb +12 -0
  1385. data/src/com/zoho/crm/api/user_groups/response_wrapper.rb +84 -0
  1386. data/src/com/zoho/crm/api/user_groups/source.rb +82 -0
  1387. data/src/com/zoho/crm/api/user_groups/sources.rb +121 -0
  1388. data/src/com/zoho/crm/api/user_groups/sources_count.rb +120 -0
  1389. data/src/com/zoho/crm/api/user_groups/sources_count_wrapper.rb +65 -0
  1390. data/src/com/zoho/crm/api/user_groups/sources_wrapper.rb +84 -0
  1391. data/src/com/zoho/crm/api/user_groups/success_response.rb +123 -0
  1392. data/src/com/zoho/crm/api/user_groups/un_assigned_action_response.rb +12 -0
  1393. data/src/com/zoho/crm/api/user_groups/un_assigned_action_wrapper.rb +63 -0
  1394. data/src/com/zoho/crm/api/user_groups/user_group.rb +82 -0
  1395. data/src/com/zoho/crm/api/user_groups/user_groups_operations.rb +356 -0
  1396. data/src/com/zoho/crm/api/user_groups/users.rb +101 -0
  1397. data/src/com/zoho/crm/api/user_signature.rb +15 -0
  1398. data/src/com/zoho/crm/api/user_type_users/action_handler.rb +12 -0
  1399. data/src/com/zoho/crm/api/user_type_users/action_response.rb +12 -0
  1400. data/src/com/zoho/crm/api/user_type_users/action_wrapper.rb +65 -0
  1401. data/src/com/zoho/crm/api/user_type_users/api_exception.rb +131 -0
  1402. data/src/com/zoho/crm/api/user_type_users/body_wrapper.rb +63 -0
  1403. data/src/com/zoho/crm/api/user_type_users/info.rb +139 -0
  1404. data/src/com/zoho/crm/api/user_type_users/response_handler.rb +12 -0
  1405. data/src/com/zoho/crm/api/user_type_users/response_wrapper.rb +84 -0
  1406. data/src/com/zoho/crm/api/user_type_users/status_action_handler.rb +12 -0
  1407. data/src/com/zoho/crm/api/user_type_users/status_action_response.rb +12 -0
  1408. data/src/com/zoho/crm/api/user_type_users/status_action_wrapper.rb +65 -0
  1409. data/src/com/zoho/crm/api/user_type_users/success_response.rb +125 -0
  1410. data/src/com/zoho/crm/api/user_type_users/user_type_users_operations.rb +164 -0
  1411. data/src/com/zoho/crm/api/user_type_users/users.rb +196 -0
  1412. data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
  1413. data/src/com/zoho/crm/api/users/action_response.rb +12 -0
  1414. data/src/com/zoho/crm/api/users/action_wrapper.rb +67 -0
  1415. data/src/com/zoho/crm/api/users/api_exception.rb +129 -0
  1416. data/src/com/zoho/crm/api/users/associated_group.rb +177 -0
  1417. data/src/com/zoho/crm/api/users/associated_groups_wrapper.rb +84 -0
  1418. data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
  1419. data/src/com/zoho/crm/api/users/count_handler.rb +12 -0
  1420. data/src/com/zoho/crm/api/users/count_wrapper.rb +65 -0
  1421. data/src/com/zoho/crm/api/users/customize_info.rb +146 -0
  1422. data/src/com/zoho/crm/api/users/info.rb +120 -0
  1423. data/src/com/zoho/crm/api/users/minified_user.rb +101 -0
  1424. data/src/com/zoho/crm/api/users/owner.rb +120 -0
  1425. data/src/com/zoho/crm/api/users/profile.rb +82 -0
  1426. data/src/com/zoho/crm/api/users/response_handler.rb +12 -0
  1427. data/src/com/zoho/crm/api/users/response_wrapper.rb +84 -0
  1428. data/src/com/zoho/crm/api/users/role.rb +82 -0
  1429. data/src/com/zoho/crm/api/users/shift.rb +82 -0
  1430. data/src/com/zoho/crm/api/users/success_response.rb +123 -0
  1431. data/src/com/zoho/crm/api/users/tab.rb +83 -0
  1432. data/src/com/zoho/crm/api/users/theme.rb +159 -0
  1433. data/src/com/zoho/crm/api/users/users.rb +1086 -0
  1434. data/src/com/zoho/crm/api/users/users_operations.rb +247 -0
  1435. data/src/com/zoho/crm/api/users_territories/action_handler.rb +12 -0
  1436. data/src/com/zoho/crm/api/users_territories/action_response.rb +12 -0
  1437. data/src/com/zoho/crm/api/users_territories/action_wrapper.rb +65 -0
  1438. data/src/com/zoho/crm/api/users_territories/api_exception.rb +127 -0
  1439. data/src/com/zoho/crm/api/users_territories/body_wrapper.rb +63 -0
  1440. data/src/com/zoho/crm/api/users_territories/info.rb +120 -0
  1441. data/src/com/zoho/crm/api/users_territories/manager.rb +82 -0
  1442. data/src/com/zoho/crm/api/users_territories/response_handler.rb +12 -0
  1443. data/src/com/zoho/crm/api/users_territories/response_wrapper.rb +84 -0
  1444. data/src/com/zoho/crm/api/users_territories/success_response.rb +123 -0
  1445. data/src/com/zoho/crm/api/users_territories/territory.rb +120 -0
  1446. data/src/com/zoho/crm/api/users_territories/users_territories_operations.rb +132 -0
  1447. data/src/com/zoho/crm/api/users_transfer_delete/action_handler.rb +12 -0
  1448. data/src/com/zoho/crm/api/users_transfer_delete/action_response.rb +12 -0
  1449. data/src/com/zoho/crm/api/users_transfer_delete/action_wrapper.rb +65 -0
  1450. data/src/com/zoho/crm/api/users_transfer_delete/api_exception.rb +127 -0
  1451. data/src/com/zoho/crm/api/users_transfer_delete/body_wrapper.rb +63 -0
  1452. data/src/com/zoho/crm/api/users_transfer_delete/move_subordinate.rb +63 -0
  1453. data/src/com/zoho/crm/api/users_transfer_delete/response_handler.rb +12 -0
  1454. data/src/com/zoho/crm/api/users_transfer_delete/response_wrapper.rb +65 -0
  1455. data/src/com/zoho/crm/api/users_transfer_delete/status.rb +63 -0
  1456. data/src/com/zoho/crm/api/users_transfer_delete/success_response.rb +123 -0
  1457. data/src/com/zoho/crm/api/users_transfer_delete/transfer.rb +120 -0
  1458. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete.rb +101 -0
  1459. data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete_by_id.rb +82 -0
  1460. data/src/com/zoho/crm/api/users_transfer_delete/users_transfer_delete_operations.rb +92 -0
  1461. data/src/com/zoho/crm/api/users_unavailability/action_handler.rb +12 -0
  1462. data/src/com/zoho/crm/api/users_unavailability/action_response.rb +12 -0
  1463. data/src/com/zoho/crm/api/users_unavailability/action_wrapper.rb +65 -0
  1464. data/src/com/zoho/crm/api/users_unavailability/api_exception.rb +127 -0
  1465. data/src/com/zoho/crm/api/users_unavailability/body_wrapper.rb +63 -0
  1466. data/src/com/zoho/crm/api/users_unavailability/info.rb +120 -0
  1467. data/src/com/zoho/crm/api/users_unavailability/response_handler.rb +12 -0
  1468. data/src/com/zoho/crm/api/users_unavailability/response_wrapper.rb +84 -0
  1469. data/src/com/zoho/crm/api/users_unavailability/success_response.rb +123 -0
  1470. data/src/com/zoho/crm/api/users_unavailability/user.rb +101 -0
  1471. data/src/com/zoho/crm/api/users_unavailability/users_unavailability.rb +234 -0
  1472. data/src/com/zoho/crm/api/users_unavailability/users_unavailability_operations.rb +181 -0
  1473. data/src/com/zoho/crm/api/util/api_http_connector.rb +125 -0
  1474. data/src/com/zoho/crm/api/util/api_response.rb +21 -0
  1475. data/src/com/zoho/crm/api/util/choice.rb +11 -0
  1476. data/src/com/zoho/crm/api/util/common_api_handler.rb +252 -0
  1477. data/src/com/zoho/crm/api/util/constants.rb +765 -0
  1478. data/src/com/zoho/crm/api/util/converter.rb +318 -0
  1479. data/src/com/zoho/crm/api/util/data_type_converter.rb +194 -0
  1480. data/src/com/zoho/crm/api/util/downloader.rb +86 -0
  1481. data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
  1482. data/src/com/zoho/crm/api/util/header_param_validator.rb +92 -0
  1483. data/src/com/zoho/crm/api/util/json_converter.rb +785 -0
  1484. data/src/com/zoho/crm/api/util/model.rb +7 -0
  1485. data/src/com/zoho/crm/api/util/module_fields_handler.rb +91 -0
  1486. data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
  1487. data/src/com/zoho/crm/api/util/utility.rb +1031 -0
  1488. data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
  1489. data/src/com/zoho/crm/api/variable_groups/minified_variable_group.rb +82 -0
  1490. data/src/com/zoho/crm/api/variable_groups/response_handler.rb +12 -0
  1491. data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +65 -0
  1492. data/src/com/zoho/crm/api/variable_groups/variable_group.rb +158 -0
  1493. data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +68 -0
  1494. data/src/com/zoho/crm/api/variables/action_handler.rb +12 -0
  1495. data/src/com/zoho/crm/api/variables/action_response.rb +12 -0
  1496. data/src/com/zoho/crm/api/variables/action_wrapper.rb +65 -0
  1497. data/src/com/zoho/crm/api/variables/api_exception.rb +127 -0
  1498. data/src/com/zoho/crm/api/variables/body_wrapper.rb +63 -0
  1499. data/src/com/zoho/crm/api/variables/response_handler.rb +12 -0
  1500. data/src/com/zoho/crm/api/variables/response_wrapper.rb +65 -0
  1501. data/src/com/zoho/crm/api/variables/success_response.rb +123 -0
  1502. data/src/com/zoho/crm/api/variables/variable.rb +213 -0
  1503. data/src/com/zoho/crm/api/variables/variable_group.rb +101 -0
  1504. data/src/com/zoho/crm/api/variables/variables_operations.rb +267 -0
  1505. data/src/com/zoho/crm/api/webforms/abtesting.rb +120 -0
  1506. data/src/com/zoho/crm/api/webforms/acknowledge_visitor.rb +82 -0
  1507. data/src/com/zoho/crm/api/webforms/acknowledge_visitors.rb +101 -0
  1508. data/src/com/zoho/crm/api/webforms/action_handler.rb +12 -0
  1509. data/src/com/zoho/crm/api/webforms/action_response.rb +12 -0
  1510. data/src/com/zoho/crm/api/webforms/action_wrapper.rb +65 -0
  1511. data/src/com/zoho/crm/api/webforms/analytics_data.rb +139 -0
  1512. data/src/com/zoho/crm/api/webforms/api_exception.rb +127 -0
  1513. data/src/com/zoho/crm/api/webforms/assignment_rule.rb +82 -0
  1514. data/src/com/zoho/crm/api/webforms/auto_response_rule.rb +63 -0
  1515. data/src/com/zoho/crm/api/webforms/body_wrapper.rb +63 -0
  1516. data/src/com/zoho/crm/api/webforms/button_attributes.rb +82 -0
  1517. data/src/com/zoho/crm/api/webforms/fields.rb +348 -0
  1518. data/src/com/zoho/crm/api/webforms/font_attributes.rb +101 -0
  1519. data/src/com/zoho/crm/api/webforms/form_attributes.rb +139 -0
  1520. data/src/com/zoho/crm/api/webforms/from_address.rb +82 -0
  1521. data/src/com/zoho/crm/api/webforms/layout.rb +82 -0
  1522. data/src/com/zoho/crm/api/webforms/module.rb +101 -0
  1523. data/src/com/zoho/crm/api/webforms/owner.rb +82 -0
  1524. data/src/com/zoho/crm/api/webforms/response_handler.rb +12 -0
  1525. data/src/com/zoho/crm/api/webforms/response_wrapper.rb +65 -0
  1526. data/src/com/zoho/crm/api/webforms/spam_controll.rb +82 -0
  1527. data/src/com/zoho/crm/api/webforms/success_response.rb +123 -0
  1528. data/src/com/zoho/crm/api/webforms/suggestion.rb +82 -0
  1529. data/src/com/zoho/crm/api/webforms/tags.rb +82 -0
  1530. data/src/com/zoho/crm/api/webforms/user.rb +82 -0
  1531. data/src/com/zoho/crm/api/webforms/web_form.rb +804 -0
  1532. data/src/com/zoho/crm/api/webforms/webforms_operations.rb +190 -0
  1533. data/src/com/zoho/crm/api/wizards/actions.rb +176 -0
  1534. data/src/com/zoho/crm/api/wizards/api_exception.rb +123 -0
  1535. data/src/com/zoho/crm/api/wizards/button.rb +326 -0
  1536. data/src/com/zoho/crm/api/wizards/button_background.rb +63 -0
  1537. data/src/com/zoho/crm/api/wizards/chart_data.rb +139 -0
  1538. data/src/com/zoho/crm/api/wizards/conditional_rules.rb +121 -0
  1539. data/src/com/zoho/crm/api/wizards/connection.rb +101 -0
  1540. data/src/com/zoho/crm/api/wizards/container.rb +121 -0
  1541. data/src/com/zoho/crm/api/wizards/criteria.rb +136 -0
  1542. data/src/com/zoho/crm/api/wizards/element.rb +82 -0
  1543. data/src/com/zoho/crm/api/wizards/exempted_portal_user_type.rb +63 -0
  1544. data/src/com/zoho/crm/api/wizards/field.rb +82 -0
  1545. data/src/com/zoho/crm/api/wizards/message.rb +82 -0
  1546. data/src/com/zoho/crm/api/wizards/node.rb +120 -0
  1547. data/src/com/zoho/crm/api/wizards/portal_user_type.rb +121 -0
  1548. data/src/com/zoho/crm/api/wizards/resource.rb +82 -0
  1549. data/src/com/zoho/crm/api/wizards/response_handler.rb +12 -0
  1550. data/src/com/zoho/crm/api/wizards/response_wrapper.rb +65 -0
  1551. data/src/com/zoho/crm/api/wizards/screen.rb +158 -0
  1552. data/src/com/zoho/crm/api/wizards/segment.rb +197 -0
  1553. data/src/com/zoho/crm/api/wizards/transition.rb +82 -0
  1554. data/src/com/zoho/crm/api/wizards/wizard.rb +313 -0
  1555. data/src/com/zoho/crm/api/wizards/wizards_operations.rb +63 -0
  1556. data/src/com/zoho/crm/api/zia_allowed_field_mappings/allowed_field_map.rb +82 -0
  1557. data/src/com/zoho/crm/api/zia_allowed_field_mappings/allowed_output_data.rb +82 -0
  1558. data/src/com/zoho/crm/api/zia_allowed_field_mappings/api_exception.rb +121 -0
  1559. data/src/com/zoho/crm/api/zia_allowed_field_mappings/crm_field.rb +82 -0
  1560. data/src/com/zoho/crm/api/zia_allowed_field_mappings/enrich_field.rb +82 -0
  1561. data/src/com/zoho/crm/api/zia_allowed_field_mappings/response_wrapper.rb +63 -0
  1562. data/src/com/zoho/crm/api/zia_enrichment/action_response.rb +12 -0
  1563. data/src/com/zoho/crm/api/zia_enrichment/action_wrapper.rb +63 -0
  1564. data/src/com/zoho/crm/api/zia_enrichment/api_exception.rb +127 -0
  1565. data/src/com/zoho/crm/api/zia_enrichment/body_wrapper.rb +63 -0
  1566. data/src/com/zoho/crm/api/zia_enrichment/crm_field.rb +101 -0
  1567. data/src/com/zoho/crm/api/zia_enrichment/data_enrichment.rb +234 -0
  1568. data/src/com/zoho/crm/api/zia_enrichment/enrich_field.rb +82 -0
  1569. data/src/com/zoho/crm/api/zia_enrichment/input_data.rb +82 -0
  1570. data/src/com/zoho/crm/api/zia_enrichment/module.rb +82 -0
  1571. data/src/com/zoho/crm/api/zia_enrichment/output_data.rb +82 -0
  1572. data/src/com/zoho/crm/api/zia_enrichment/response_handler.rb +12 -0
  1573. data/src/com/zoho/crm/api/zia_enrichment/response_wrapper.rb +65 -0
  1574. data/src/com/zoho/crm/api/zia_enrichment/scrapy_action_response.rb +12 -0
  1575. data/src/com/zoho/crm/api/zia_enrichment/scrapy_action_wrapper.rb +63 -0
  1576. data/src/com/zoho/crm/api/zia_enrichment/scrapy_body_wrapper.rb +63 -0
  1577. data/src/com/zoho/crm/api/zia_enrichment/scrapy_feedback.rb +121 -0
  1578. data/src/com/zoho/crm/api/zia_enrichment/scrapy_success.rb +123 -0
  1579. data/src/com/zoho/crm/api/zia_enrichment/success_response.rb +121 -0
  1580. data/src/com/zoho/crm/api/zia_enrichment/user.rb +82 -0
  1581. data/src/com/zoho/crm/api/zia_enrichment/zia_enrichment_operations.rb +30 -0
  1582. data/src/com/zoho/crm/api/zia_org_enrichment/action_handler.rb +12 -0
  1583. data/src/com/zoho/crm/api/zia_org_enrichment/action_response.rb +12 -0
  1584. data/src/com/zoho/crm/api/zia_org_enrichment/action_wrapper.rb +65 -0
  1585. data/src/com/zoho/crm/api/zia_org_enrichment/address.rb +139 -0
  1586. data/src/com/zoho/crm/api/zia_org_enrichment/api_exception.rb +127 -0
  1587. data/src/com/zoho/crm/api/zia_org_enrichment/body_wrapper.rb +63 -0
  1588. data/src/com/zoho/crm/api/zia_org_enrichment/description.rb +82 -0
  1589. data/src/com/zoho/crm/api/zia_org_enrichment/enrich_based_on.rb +101 -0
  1590. data/src/com/zoho/crm/api/zia_org_enrichment/enriched_data.rb +557 -0
  1591. data/src/com/zoho/crm/api/zia_org_enrichment/industry.rb +82 -0
  1592. data/src/com/zoho/crm/api/zia_org_enrichment/info.rb +120 -0
  1593. data/src/com/zoho/crm/api/zia_org_enrichment/response_handler.rb +12 -0
  1594. data/src/com/zoho/crm/api/zia_org_enrichment/response_wrapper.rb +84 -0
  1595. data/src/com/zoho/crm/api/zia_org_enrichment/social_media.rb +82 -0
  1596. data/src/com/zoho/crm/api/zia_org_enrichment/success_response.rb +123 -0
  1597. data/src/com/zoho/crm/api/zia_org_enrichment/user.rb +82 -0
  1598. data/src/com/zoho/crm/api/zia_org_enrichment/zia_org_enrichment.rb +158 -0
  1599. data/src/com/zoho/crm/api/zia_org_enrichment/zia_org_enrichment_operations.rb +117 -0
  1600. data/src/com/zoho/crm/api/zia_people_enrichment/action_handler.rb +12 -0
  1601. data/src/com/zoho/crm/api/zia_people_enrichment/action_response.rb +12 -0
  1602. data/src/com/zoho/crm/api/zia_people_enrichment/action_wrapper.rb +65 -0
  1603. data/src/com/zoho/crm/api/zia_people_enrichment/address.rb +139 -0
  1604. data/src/com/zoho/crm/api/zia_people_enrichment/api_exception.rb +127 -0
  1605. data/src/com/zoho/crm/api/zia_people_enrichment/body_wrapper.rb +63 -0
  1606. data/src/com/zoho/crm/api/zia_people_enrichment/company.rb +82 -0
  1607. data/src/com/zoho/crm/api/zia_people_enrichment/company_info.rb +101 -0
  1608. data/src/com/zoho/crm/api/zia_people_enrichment/email_info.rb +82 -0
  1609. data/src/com/zoho/crm/api/zia_people_enrichment/enrich_based_on.rb +120 -0
  1610. data/src/com/zoho/crm/api/zia_people_enrichment/enriched_data.rb +424 -0
  1611. data/src/com/zoho/crm/api/zia_people_enrichment/experience.rb +139 -0
  1612. data/src/com/zoho/crm/api/zia_people_enrichment/industry.rb +82 -0
  1613. data/src/com/zoho/crm/api/zia_people_enrichment/info.rb +120 -0
  1614. data/src/com/zoho/crm/api/zia_people_enrichment/response_handler.rb +12 -0
  1615. data/src/com/zoho/crm/api/zia_people_enrichment/response_wrapper.rb +84 -0
  1616. data/src/com/zoho/crm/api/zia_people_enrichment/social.rb +101 -0
  1617. data/src/com/zoho/crm/api/zia_people_enrichment/social_media.rb +82 -0
  1618. data/src/com/zoho/crm/api/zia_people_enrichment/success_response.rb +123 -0
  1619. data/src/com/zoho/crm/api/zia_people_enrichment/user.rb +82 -0
  1620. data/src/com/zoho/crm/api/zia_people_enrichment/zia_people_enrichment.rb +158 -0
  1621. data/src/com/zoho/crm/api/zia_people_enrichment/zia_people_enrichment_operations.rb +121 -0
  1622. data/src/resources/json_details.json +1 -0
  1623. data/src/version.rb +3 -0
  1624. metadata +1779 -0
@@ -0,0 +1,2867 @@
1
+ require_relative '../layouts/layouts'
2
+ require_relative '../record/comment'
3
+ require_relative '../record/consent'
4
+ require_relative '../record/participants'
5
+ require_relative '../record/pricing_details'
6
+ require_relative '../record/record'
7
+ require_relative '../record/recurring_activity'
8
+ require_relative '../record/remind_at'
9
+ require_relative '../record/reminder'
10
+ require_relative '../record/tax'
11
+ require_relative '../record/territory'
12
+ require_relative '../record/time_range'
13
+ require_relative '../users/minified_user'
14
+ require_relative '../util/choice'
15
+
16
+ module ZOHOCRMSDK
17
+ module Record
18
+ class Field
19
+
20
+ # Creates an instance of Field with the given parameters
21
+ # @param api_name [String] A String
22
+ def initialize(api_name)
23
+ if api_name!=nil and !api_name.is_a? String
24
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
25
+ end
26
+ @api_name = api_name
27
+ end
28
+
29
+ # The method to get the api_name
30
+ # @return A String value
31
+
32
+ def api_name
33
+ @api_name
34
+ end
35
+
36
+ class Products
37
+ @@Product_category = Field.new('Product_Category')
38
+ def self.Product_category
39
+ @@Product_category
40
+ end
41
+ @@Qty_in_demand = Field.new('Qty_in_Demand')
42
+ def self.Qty_in_demand
43
+ @@Qty_in_demand
44
+ end
45
+ @@Owner = Field.new('Owner')
46
+ def self.Owner
47
+ @@Owner
48
+ end
49
+ @@Description = Field.new('Description')
50
+ def self.Description
51
+ @@Description
52
+ end
53
+ @@Vendor_name = Field.new('Vendor_Name')
54
+ def self.Vendor_name
55
+ @@Vendor_name
56
+ end
57
+ @@Sales_start_date = Field.new('Sales_Start_Date')
58
+ def self.Sales_start_date
59
+ @@Sales_start_date
60
+ end
61
+ @@Tax = Field.new('Tax')
62
+ def self.Tax
63
+ @@Tax
64
+ end
65
+ @@Product_active = Field.new('Product_Active')
66
+ def self.Product_active
67
+ @@Product_active
68
+ end
69
+ @@Record_image = Field.new('Record_Image')
70
+ def self.Record_image
71
+ @@Record_image
72
+ end
73
+ @@Modified_by = Field.new('Modified_By')
74
+ def self.Modified_by
75
+ @@Modified_by
76
+ end
77
+ @@Product_code = Field.new('Product_Code')
78
+ def self.Product_code
79
+ @@Product_code
80
+ end
81
+ @@Manufacturer = Field.new('Manufacturer')
82
+ def self.Manufacturer
83
+ @@Manufacturer
84
+ end
85
+ @@id = Field.new('id')
86
+ def self.id
87
+ @@id
88
+ end
89
+ @@Support_expiry_date = Field.new('Support_Expiry_Date')
90
+ def self.Support_expiry_date
91
+ @@Support_expiry_date
92
+ end
93
+ @@Modified_time = Field.new('Modified_Time')
94
+ def self.Modified_time
95
+ @@Modified_time
96
+ end
97
+ @@Created_time = Field.new('Created_Time')
98
+ def self.Created_time
99
+ @@Created_time
100
+ end
101
+ @@Commission_rate = Field.new('Commission_Rate')
102
+ def self.Commission_rate
103
+ @@Commission_rate
104
+ end
105
+ @@Product_name = Field.new('Product_Name')
106
+ def self.Product_name
107
+ @@Product_name
108
+ end
109
+ @@Handler = Field.new('Handler')
110
+ def self.Handler
111
+ @@Handler
112
+ end
113
+ @@Support_start_date = Field.new('Support_Start_Date')
114
+ def self.Support_start_date
115
+ @@Support_start_date
116
+ end
117
+ @@Record_status__s = Field.new('Record_Status__s')
118
+ def self.Record_status__s
119
+ @@Record_status__s
120
+ end
121
+ @@Usage_unit = Field.new('Usage_Unit')
122
+ def self.Usage_unit
123
+ @@Usage_unit
124
+ end
125
+ @@Qty_ordered = Field.new('Qty_Ordered')
126
+ def self.Qty_ordered
127
+ @@Qty_ordered
128
+ end
129
+ @@Locked__s = Field.new('Locked__s')
130
+ def self.Locked__s
131
+ @@Locked__s
132
+ end
133
+ @@Qty_in_stock = Field.new('Qty_in_Stock')
134
+ def self.Qty_in_stock
135
+ @@Qty_in_stock
136
+ end
137
+ @@Created_by = Field.new('Created_By')
138
+ def self.Created_by
139
+ @@Created_by
140
+ end
141
+ @@Tag = Field.new('Tag')
142
+ def self.Tag
143
+ @@Tag
144
+ end
145
+ @@Sales_end_date = Field.new('Sales_End_Date')
146
+ def self.Sales_end_date
147
+ @@Sales_end_date
148
+ end
149
+ @@Unit_price = Field.new('Unit_Price')
150
+ def self.Unit_price
151
+ @@Unit_price
152
+ end
153
+ @@Reorder_level = Field.new('Reorder_Level')
154
+ def self.Reorder_level
155
+ @@Reorder_level
156
+ end
157
+ @@Taxable = Field.new('Taxable')
158
+ def self.Taxable
159
+ @@Taxable
160
+ end
161
+ end
162
+
163
+ class Consents
164
+ @@Contact_through_email = Field.new('Contact_Through_Email')
165
+ def self.Contact_through_email
166
+ @@Contact_through_email
167
+ end
168
+ @@Owner = Field.new('Owner')
169
+ def self.Owner
170
+ @@Owner
171
+ end
172
+ @@Modified_time = Field.new('Modified_Time')
173
+ def self.Modified_time
174
+ @@Modified_time
175
+ end
176
+ @@Email = Field.new('Email')
177
+ def self.Email
178
+ @@Email
179
+ end
180
+ @@Created_time = Field.new('Created_Time')
181
+ def self.Created_time
182
+ @@Created_time
183
+ end
184
+ @@Consent_through = Field.new('Consent_Through')
185
+ def self.Consent_through
186
+ @@Consent_through
187
+ end
188
+ @@Contact_through_survey = Field.new('Contact_Through_Survey')
189
+ def self.Contact_through_survey
190
+ @@Contact_through_survey
191
+ end
192
+ @@Record_status__s = Field.new('Record_Status__s')
193
+ def self.Record_status__s
194
+ @@Record_status__s
195
+ end
196
+ @@Data_processing_basis = Field.new('Data_Processing_Basis')
197
+ def self.Data_processing_basis
198
+ @@Data_processing_basis
199
+ end
200
+ @@Contact_through_phone = Field.new('Contact_Through_Phone')
201
+ def self.Contact_through_phone
202
+ @@Contact_through_phone
203
+ end
204
+ @@Lawful_reason = Field.new('Lawful_Reason')
205
+ def self.Lawful_reason
206
+ @@Lawful_reason
207
+ end
208
+ @@Mail_sent_time = Field.new('Mail_Sent_Time')
209
+ def self.Mail_sent_time
210
+ @@Mail_sent_time
211
+ end
212
+ @@Modified_by = Field.new('Modified_By')
213
+ def self.Modified_by
214
+ @@Modified_by
215
+ end
216
+ @@Consent_date = Field.new('Consent_Date')
217
+ def self.Consent_date
218
+ @@Consent_date
219
+ end
220
+ @@id = Field.new('id')
221
+ def self.id
222
+ @@id
223
+ end
224
+ @@Created_by = Field.new('Created_By')
225
+ def self.Created_by
226
+ @@Created_by
227
+ end
228
+ @@Consent_remarks = Field.new('Consent_Remarks')
229
+ def self.Consent_remarks
230
+ @@Consent_remarks
231
+ end
232
+ end
233
+
234
+ class Tasks
235
+ @@Status = Field.new('Status')
236
+ def self.Status
237
+ @@Status
238
+ end
239
+ @@Owner = Field.new('Owner')
240
+ def self.Owner
241
+ @@Owner
242
+ end
243
+ @@Modified_time = Field.new('Modified_Time')
244
+ def self.Modified_time
245
+ @@Modified_time
246
+ end
247
+ @@Description = Field.new('Description')
248
+ def self.Description
249
+ @@Description
250
+ end
251
+ @@Due_date = Field.new('Due_Date')
252
+ def self.Due_date
253
+ @@Due_date
254
+ end
255
+ @@Priority = Field.new('Priority')
256
+ def self.Priority
257
+ @@Priority
258
+ end
259
+ @@Created_time = Field.new('Created_Time')
260
+ def self.Created_time
261
+ @@Created_time
262
+ end
263
+ @@Closed_time = Field.new('Closed_Time')
264
+ def self.Closed_time
265
+ @@Closed_time
266
+ end
267
+ @@Record_status__s = Field.new('Record_Status__s')
268
+ def self.Record_status__s
269
+ @@Record_status__s
270
+ end
271
+ @@Subject = Field.new('Subject')
272
+ def self.Subject
273
+ @@Subject
274
+ end
275
+ @@Send_notification_email = Field.new('Send_Notification_Email')
276
+ def self.Send_notification_email
277
+ @@Send_notification_email
278
+ end
279
+ @@Modified_by = Field.new('Modified_By')
280
+ def self.Modified_by
281
+ @@Modified_by
282
+ end
283
+ @@Recurring_activity = Field.new('Recurring_Activity')
284
+ def self.Recurring_activity
285
+ @@Recurring_activity
286
+ end
287
+ @@What_id = Field.new('What_Id')
288
+ def self.What_id
289
+ @@What_id
290
+ end
291
+ @@Locked__s = Field.new('Locked__s')
292
+ def self.Locked__s
293
+ @@Locked__s
294
+ end
295
+ @@Created_by = Field.new('Created_By')
296
+ def self.Created_by
297
+ @@Created_by
298
+ end
299
+ @@Tag = Field.new('Tag')
300
+ def self.Tag
301
+ @@Tag
302
+ end
303
+ @@id = Field.new('id')
304
+ def self.id
305
+ @@id
306
+ end
307
+ @@Remind_at = Field.new('Remind_At')
308
+ def self.Remind_at
309
+ @@Remind_at
310
+ end
311
+ @@Who_id = Field.new('Who_Id')
312
+ def self.Who_id
313
+ @@Who_id
314
+ end
315
+ end
316
+
317
+ class Data_Subject_Requests
318
+ @@Request_type = Field.new('Request_Type')
319
+ def self.Request_type
320
+ @@Request_type
321
+ end
322
+ @@Is_closed = Field.new('Is_Closed')
323
+ def self.Is_closed
324
+ @@Is_closed
325
+ end
326
+ @@Parent_id = Field.new('Parent_Id')
327
+ def self.Parent_id
328
+ @@Parent_id
329
+ end
330
+ @@Request_source = Field.new('Request_Source')
331
+ def self.Request_source
332
+ @@Request_source
333
+ end
334
+ @@id = Field.new('id')
335
+ def self.id
336
+ @@id
337
+ end
338
+ @@Closed_by = Field.new('Closed_By')
339
+ def self.Closed_by
340
+ @@Closed_by
341
+ end
342
+ @@Record_status__s = Field.new('Record_Status__s')
343
+ def self.Record_status__s
344
+ @@Record_status__s
345
+ end
346
+ @@Requested_by = Field.new('Requested_By')
347
+ def self.Requested_by
348
+ @@Requested_by
349
+ end
350
+ @@Requested_date = Field.new('Requested_Date')
351
+ def self.Requested_date
352
+ @@Requested_date
353
+ end
354
+ @@Closed_date = Field.new('Closed_Date')
355
+ def self.Closed_date
356
+ @@Closed_date
357
+ end
358
+ end
359
+
360
+ class Vendors
361
+ @@Owner = Field.new('Owner')
362
+ def self.Owner
363
+ @@Owner
364
+ end
365
+ @@Email = Field.new('Email')
366
+ def self.Email
367
+ @@Email
368
+ end
369
+ @@Category = Field.new('Category')
370
+ def self.Category
371
+ @@Category
372
+ end
373
+ @@Description = Field.new('Description')
374
+ def self.Description
375
+ @@Description
376
+ end
377
+ @@Vendor_name = Field.new('Vendor_Name')
378
+ def self.Vendor_name
379
+ @@Vendor_name
380
+ end
381
+ @@Website = Field.new('Website')
382
+ def self.Website
383
+ @@Website
384
+ end
385
+ @@Record_image = Field.new('Record_Image')
386
+ def self.Record_image
387
+ @@Record_image
388
+ end
389
+ @@Modified_by = Field.new('Modified_By')
390
+ def self.Modified_by
391
+ @@Modified_by
392
+ end
393
+ @@Unsubscribed_mode = Field.new('Unsubscribed_Mode')
394
+ def self.Unsubscribed_mode
395
+ @@Unsubscribed_mode
396
+ end
397
+ @@Phone = Field.new('Phone')
398
+ def self.Phone
399
+ @@Phone
400
+ end
401
+ @@Street = Field.new('Street')
402
+ def self.Street
403
+ @@Street
404
+ end
405
+ @@Zip_code = Field.new('Zip_Code')
406
+ def self.Zip_code
407
+ @@Zip_code
408
+ end
409
+ @@id = Field.new('id')
410
+ def self.id
411
+ @@id
412
+ end
413
+ @@Email_opt_out = Field.new('Email_Opt_Out')
414
+ def self.Email_opt_out
415
+ @@Email_opt_out
416
+ end
417
+ @@Modified_time = Field.new('Modified_Time')
418
+ def self.Modified_time
419
+ @@Modified_time
420
+ end
421
+ @@Created_time = Field.new('Created_Time')
422
+ def self.Created_time
423
+ @@Created_time
424
+ end
425
+ @@Unsubscribed_time = Field.new('Unsubscribed_Time')
426
+ def self.Unsubscribed_time
427
+ @@Unsubscribed_time
428
+ end
429
+ @@City = Field.new('City')
430
+ def self.City
431
+ @@City
432
+ end
433
+ @@Record_status__s = Field.new('Record_Status__s')
434
+ def self.Record_status__s
435
+ @@Record_status__s
436
+ end
437
+ @@State = Field.new('State')
438
+ def self.State
439
+ @@State
440
+ end
441
+ @@GL_account = Field.new('GL_Account')
442
+ def self.GL_account
443
+ @@GL_account
444
+ end
445
+ @@Locked__s = Field.new('Locked__s')
446
+ def self.Locked__s
447
+ @@Locked__s
448
+ end
449
+ @@Country = Field.new('Country')
450
+ def self.Country
451
+ @@Country
452
+ end
453
+ @@Created_by = Field.new('Created_By')
454
+ def self.Created_by
455
+ @@Created_by
456
+ end
457
+ @@Tag = Field.new('Tag')
458
+ def self.Tag
459
+ @@Tag
460
+ end
461
+ end
462
+
463
+ class Appointments__s
464
+ @@Owner = Field.new('Owner')
465
+ def self.Owner
466
+ @@Owner
467
+ end
468
+ @@Address = Field.new('Address')
469
+ def self.Address
470
+ @@Address
471
+ end
472
+ @@Appointment_start_time = Field.new('Appointment_Start_Time')
473
+ def self.Appointment_start_time
474
+ @@Appointment_start_time
475
+ end
476
+ @@Cancellation_reason = Field.new('Cancellation_Reason')
477
+ def self.Cancellation_reason
478
+ @@Cancellation_reason
479
+ end
480
+ @@Appointment_for = Field.new('Appointment_For')
481
+ def self.Appointment_for
482
+ @@Appointment_for
483
+ end
484
+ @@Rescheduled_to = Field.new('Rescheduled_To')
485
+ def self.Rescheduled_to
486
+ @@Rescheduled_to
487
+ end
488
+ @@Reschedule_reason = Field.new('Reschedule_Reason')
489
+ def self.Reschedule_reason
490
+ @@Reschedule_reason
491
+ end
492
+ @@Job_sheet_name__s = Field.new('Job_Sheet_Name__s')
493
+ def self.Job_sheet_name__s
494
+ @@Job_sheet_name__s
495
+ end
496
+ @@Additional_information = Field.new('Additional_Information')
497
+ def self.Additional_information
498
+ @@Additional_information
499
+ end
500
+ @@Job_sheet_created__s = Field.new('Job_Sheet_Created__s')
501
+ def self.Job_sheet_created__s
502
+ @@Job_sheet_created__s
503
+ end
504
+ @@Cancelled_time = Field.new('Cancelled_Time')
505
+ def self.Cancelled_time
506
+ @@Cancelled_time
507
+ end
508
+ @@Cancellation_note = Field.new('Cancellation_Note')
509
+ def self.Cancellation_note
510
+ @@Cancellation_note
511
+ end
512
+ @@Modified_by = Field.new('Modified_By')
513
+ def self.Modified_by
514
+ @@Modified_by
515
+ end
516
+ @@Reschedule_count = Field.new('Reschedule_Count')
517
+ def self.Reschedule_count
518
+ @@Reschedule_count
519
+ end
520
+ @@Rescheduled_by = Field.new('Rescheduled_By')
521
+ def self.Rescheduled_by
522
+ @@Rescheduled_by
523
+ end
524
+ @@id = Field.new('id')
525
+ def self.id
526
+ @@id
527
+ end
528
+ @@Rescheduled_time = Field.new('Rescheduled_Time')
529
+ def self.Rescheduled_time
530
+ @@Rescheduled_time
531
+ end
532
+ @@Remind_at = Field.new('Remind_At')
533
+ def self.Remind_at
534
+ @@Remind_at
535
+ end
536
+ @@Appointment_end_time = Field.new('Appointment_End_Time')
537
+ def self.Appointment_end_time
538
+ @@Appointment_end_time
539
+ end
540
+ @@Status = Field.new('Status')
541
+ def self.Status
542
+ @@Status
543
+ end
544
+ @@Modified_time = Field.new('Modified_Time')
545
+ def self.Modified_time
546
+ @@Modified_time
547
+ end
548
+ @@Service_name = Field.new('Service_Name')
549
+ def self.Service_name
550
+ @@Service_name
551
+ end
552
+ @@Created_time = Field.new('Created_Time')
553
+ def self.Created_time
554
+ @@Created_time
555
+ end
556
+ @@Rescheduled_from = Field.new('Rescheduled_From')
557
+ def self.Rescheduled_from
558
+ @@Rescheduled_from
559
+ end
560
+ @@Cancelled_by = Field.new('Cancelled_By')
561
+ def self.Cancelled_by
562
+ @@Cancelled_by
563
+ end
564
+ @@Appointment_name = Field.new('Appointment_Name')
565
+ def self.Appointment_name
566
+ @@Appointment_name
567
+ end
568
+ @@Duration = Field.new('Duration')
569
+ def self.Duration
570
+ @@Duration
571
+ end
572
+ @@Job_sheet_section__s = Field.new('Job_Sheet_Section__s')
573
+ def self.Job_sheet_section__s
574
+ @@Job_sheet_section__s
575
+ end
576
+ @@Record_status__s = Field.new('Record_Status__s')
577
+ def self.Record_status__s
578
+ @@Record_status__s
579
+ end
580
+ @@Job_sheet_description__s = Field.new('Job_Sheet_Description__s')
581
+ def self.Job_sheet_description__s
582
+ @@Job_sheet_description__s
583
+ end
584
+ @@Created_by = Field.new('Created_By')
585
+ def self.Created_by
586
+ @@Created_by
587
+ end
588
+ @@Tag = Field.new('Tag')
589
+ def self.Tag
590
+ @@Tag
591
+ end
592
+ @@Location = Field.new('Location')
593
+ def self.Location
594
+ @@Location
595
+ end
596
+ @@Reschedule_note = Field.new('Reschedule_Note')
597
+ def self.Reschedule_note
598
+ @@Reschedule_note
599
+ end
600
+ end
601
+
602
+ class Calls
603
+ @@Call_duration = Field.new('Call_Duration')
604
+ def self.Call_duration
605
+ @@Call_duration
606
+ end
607
+ @@Owner = Field.new('Owner')
608
+ def self.Owner
609
+ @@Owner
610
+ end
611
+ @@Description = Field.new('Description')
612
+ def self.Description
613
+ @@Description
614
+ end
615
+ @@CTI_entry = Field.new('CTI_Entry')
616
+ def self.CTI_entry
617
+ @@CTI_entry
618
+ end
619
+ @@Caller_id = Field.new('Caller_ID')
620
+ def self.Caller_id
621
+ @@Caller_id
622
+ end
623
+ @@Call_agenda = Field.new('Call_Agenda')
624
+ def self.Call_agenda
625
+ @@Call_agenda
626
+ end
627
+ @@Modified_by = Field.new('Modified_By')
628
+ def self.Modified_by
629
+ @@Modified_by
630
+ end
631
+ @@Call_purpose = Field.new('Call_Purpose')
632
+ def self.Call_purpose
633
+ @@Call_purpose
634
+ end
635
+ @@id = Field.new('id')
636
+ def self.id
637
+ @@id
638
+ end
639
+ @@Who_id = Field.new('Who_Id')
640
+ def self.Who_id
641
+ @@Who_id
642
+ end
643
+ @@Outgoing_call_status = Field.new('Outgoing_Call_Status')
644
+ def self.Outgoing_call_status
645
+ @@Outgoing_call_status
646
+ end
647
+ @@Modified_time = Field.new('Modified_Time')
648
+ def self.Modified_time
649
+ @@Modified_time
650
+ end
651
+ @@Reminder = Field.new('Reminder')
652
+ def self.Reminder
653
+ @@Reminder
654
+ end
655
+ @@Voice_recording__s = Field.new('Voice_Recording__s')
656
+ def self.Voice_recording__s
657
+ @@Voice_recording__s
658
+ end
659
+ @@Created_time = Field.new('Created_Time')
660
+ def self.Created_time
661
+ @@Created_time
662
+ end
663
+ @@Call_start_time = Field.new('Call_Start_Time')
664
+ def self.Call_start_time
665
+ @@Call_start_time
666
+ end
667
+ @@Record_status__s = Field.new('Record_Status__s')
668
+ def self.Record_status__s
669
+ @@Record_status__s
670
+ end
671
+ @@Subject = Field.new('Subject')
672
+ def self.Subject
673
+ @@Subject
674
+ end
675
+ @@Call_type = Field.new('Call_Type')
676
+ def self.Call_type
677
+ @@Call_type
678
+ end
679
+ @@Call_result = Field.new('Call_Result')
680
+ def self.Call_result
681
+ @@Call_result
682
+ end
683
+ @@Scheduled_in_crm = Field.new('Scheduled_In_CRM')
684
+ def self.Scheduled_in_crm
685
+ @@Scheduled_in_crm
686
+ end
687
+ @@What_id = Field.new('What_Id')
688
+ def self.What_id
689
+ @@What_id
690
+ end
691
+ @@Call_duration_in_seconds = Field.new('Call_Duration_in_seconds')
692
+ def self.Call_duration_in_seconds
693
+ @@Call_duration_in_seconds
694
+ end
695
+ @@Created_by = Field.new('Created_By')
696
+ def self.Created_by
697
+ @@Created_by
698
+ end
699
+ @@Tag = Field.new('Tag')
700
+ def self.Tag
701
+ @@Tag
702
+ end
703
+ @@Dialled_number = Field.new('Dialled_Number')
704
+ def self.Dialled_number
705
+ @@Dialled_number
706
+ end
707
+ end
708
+
709
+ class Leads
710
+ @@Owner = Field.new('Owner')
711
+ def self.Owner
712
+ @@Owner
713
+ end
714
+ @@Company = Field.new('Company')
715
+ def self.Company
716
+ @@Company
717
+ end
718
+ @@Email = Field.new('Email')
719
+ def self.Email
720
+ @@Email
721
+ end
722
+ @@Visitor_score = Field.new('Visitor_Score')
723
+ def self.Visitor_score
724
+ @@Visitor_score
725
+ end
726
+ @@Last_activity_time = Field.new('Last_Activity_Time')
727
+ def self.Last_activity_time
728
+ @@Last_activity_time
729
+ end
730
+ @@Industry = Field.new('Industry')
731
+ def self.Industry
732
+ @@Industry
733
+ end
734
+ @@Unsubscribed_mode = Field.new('Unsubscribed_Mode')
735
+ def self.Unsubscribed_mode
736
+ @@Unsubscribed_mode
737
+ end
738
+ @@Exchange_rate = Field.new('Exchange_Rate')
739
+ def self.Exchange_rate
740
+ @@Exchange_rate
741
+ end
742
+ @@Currency = Field.new('Currency')
743
+ def self.Currency
744
+ @@Currency
745
+ end
746
+ @@Street = Field.new('Street')
747
+ def self.Street
748
+ @@Street
749
+ end
750
+ @@Zip_code = Field.new('Zip_Code')
751
+ def self.Zip_code
752
+ @@Zip_code
753
+ end
754
+ @@Data_processing_basis_details = Field.new('Data_Processing_Basis_Details')
755
+ def self.Data_processing_basis_details
756
+ @@Data_processing_basis_details
757
+ end
758
+ @@id = Field.new('id')
759
+ def self.id
760
+ @@id
761
+ end
762
+ @@Data_source = Field.new('Data_Source')
763
+ def self.Data_source
764
+ @@Data_source
765
+ end
766
+ @@Enrich_status__s = Field.new('Enrich_Status__s')
767
+ def self.Enrich_status__s
768
+ @@Enrich_status__s
769
+ end
770
+ @@First_visited_url = Field.new('First_Visited_URL')
771
+ def self.First_visited_url
772
+ @@First_visited_url
773
+ end
774
+ @@Days_visited = Field.new('Days_Visited')
775
+ def self.Days_visited
776
+ @@Days_visited
777
+ end
778
+ @@Created_time = Field.new('Created_Time')
779
+ def self.Created_time
780
+ @@Created_time
781
+ end
782
+ @@Change_log_time__s = Field.new('Change_Log_Time__s')
783
+ def self.Change_log_time__s
784
+ @@Change_log_time__s
785
+ end
786
+ @@City = Field.new('City')
787
+ def self.City
788
+ @@City
789
+ end
790
+ @@No_of_employees = Field.new('No_of_Employees')
791
+ def self.No_of_employees
792
+ @@No_of_employees
793
+ end
794
+ @@Data_processing_basis = Field.new('Data_Processing_Basis')
795
+ def self.Data_processing_basis
796
+ @@Data_processing_basis
797
+ end
798
+ @@Converted__s = Field.new('Converted__s')
799
+ def self.Converted__s
800
+ @@Converted__s
801
+ end
802
+ @@Converted_date_time = Field.new('Converted_Date_Time')
803
+ def self.Converted_date_time
804
+ @@Converted_date_time
805
+ end
806
+ @@Converted_account = Field.new('Converted_Account')
807
+ def self.Converted_account
808
+ @@Converted_account
809
+ end
810
+ @@State = Field.new('State')
811
+ def self.State
812
+ @@State
813
+ end
814
+ @@Country = Field.new('Country')
815
+ def self.Country
816
+ @@Country
817
+ end
818
+ @@Last_visited_time = Field.new('Last_Visited_Time')
819
+ def self.Last_visited_time
820
+ @@Last_visited_time
821
+ end
822
+ @@Created_by = Field.new('Created_By')
823
+ def self.Created_by
824
+ @@Created_by
825
+ end
826
+ @@Annual_revenue = Field.new('Annual_Revenue')
827
+ def self.Annual_revenue
828
+ @@Annual_revenue
829
+ end
830
+ @@Secondary_email = Field.new('Secondary_Email')
831
+ def self.Secondary_email
832
+ @@Secondary_email
833
+ end
834
+ @@Description = Field.new('Description')
835
+ def self.Description
836
+ @@Description
837
+ end
838
+ @@Number_of_chats = Field.new('Number_Of_Chats')
839
+ def self.Number_of_chats
840
+ @@Number_of_chats
841
+ end
842
+ @@Rating = Field.new('Rating')
843
+ def self.Rating
844
+ @@Rating
845
+ end
846
+ @@Website = Field.new('Website')
847
+ def self.Website
848
+ @@Website
849
+ end
850
+ @@Twitter = Field.new('Twitter')
851
+ def self.Twitter
852
+ @@Twitter
853
+ end
854
+ @@Average_time_spent_minutes = Field.new('Average_Time_Spent_Minutes')
855
+ def self.Average_time_spent_minutes
856
+ @@Average_time_spent_minutes
857
+ end
858
+ @@Salutation = Field.new('Salutation')
859
+ def self.Salutation
860
+ @@Salutation
861
+ end
862
+ @@First_name = Field.new('First_Name')
863
+ def self.First_name
864
+ @@First_name
865
+ end
866
+ @@Lead_status = Field.new('Lead_Status')
867
+ def self.Lead_status
868
+ @@Lead_status
869
+ end
870
+ @@Full_name = Field.new('Full_Name')
871
+ def self.Full_name
872
+ @@Full_name
873
+ end
874
+ @@Record_image = Field.new('Record_Image')
875
+ def self.Record_image
876
+ @@Record_image
877
+ end
878
+ @@Modified_by = Field.new('Modified_By')
879
+ def self.Modified_by
880
+ @@Modified_by
881
+ end
882
+ @@Converted_deal = Field.new('Converted_Deal')
883
+ def self.Converted_deal
884
+ @@Converted_deal
885
+ end
886
+ @@Lead_conversion_time = Field.new('Lead_Conversion_Time')
887
+ def self.Lead_conversion_time
888
+ @@Lead_conversion_time
889
+ end
890
+ @@Skype_id = Field.new('Skype_ID')
891
+ def self.Skype_id
892
+ @@Skype_id
893
+ end
894
+ @@Phone = Field.new('Phone')
895
+ def self.Phone
896
+ @@Phone
897
+ end
898
+ @@Email_opt_out = Field.new('Email_Opt_Out')
899
+ def self.Email_opt_out
900
+ @@Email_opt_out
901
+ end
902
+ @@Designation = Field.new('Designation')
903
+ def self.Designation
904
+ @@Designation
905
+ end
906
+ @@Modified_time = Field.new('Modified_Time')
907
+ def self.Modified_time
908
+ @@Modified_time
909
+ end
910
+ @@Unsubscribed_time = Field.new('Unsubscribed_Time')
911
+ def self.Unsubscribed_time
912
+ @@Unsubscribed_time
913
+ end
914
+ @@Converted_contact = Field.new('Converted_Contact')
915
+ def self.Converted_contact
916
+ @@Converted_contact
917
+ end
918
+ @@Mobile = Field.new('Mobile')
919
+ def self.Mobile
920
+ @@Mobile
921
+ end
922
+ @@Territories = Field.new('Territories')
923
+ def self.Territories
924
+ @@Territories
925
+ end
926
+ @@Record_status__s = Field.new('Record_Status__s')
927
+ def self.Record_status__s
928
+ @@Record_status__s
929
+ end
930
+ @@First_visited_time = Field.new('First_Visited_Time')
931
+ def self.First_visited_time
932
+ @@First_visited_time
933
+ end
934
+ @@Last_name = Field.new('Last_Name')
935
+ def self.Last_name
936
+ @@Last_name
937
+ end
938
+ @@Layout = Field.new('Layout')
939
+ def self.Layout
940
+ @@Layout
941
+ end
942
+ @@Referrer = Field.new('Referrer')
943
+ def self.Referrer
944
+ @@Referrer
945
+ end
946
+ @@Locked__s = Field.new('Locked__s')
947
+ def self.Locked__s
948
+ @@Locked__s
949
+ end
950
+ @@Lead_source = Field.new('Lead_Source')
951
+ def self.Lead_source
952
+ @@Lead_source
953
+ end
954
+ @@Tag = Field.new('Tag')
955
+ def self.Tag
956
+ @@Tag
957
+ end
958
+ @@Fax = Field.new('Fax')
959
+ def self.Fax
960
+ @@Fax
961
+ end
962
+ @@Last_enriched_time__s = Field.new('Last_Enriched_Time__s')
963
+ def self.Last_enriched_time__s
964
+ @@Last_enriched_time__s
965
+ end
966
+ end
967
+
968
+ class Deals
969
+ @@Owner = Field.new('Owner')
970
+ def self.Owner
971
+ @@Owner
972
+ end
973
+ @@Description = Field.new('Description')
974
+ def self.Description
975
+ @@Description
976
+ end
977
+ @@Campaign_source = Field.new('Campaign_Source')
978
+ def self.Campaign_source
979
+ @@Campaign_source
980
+ end
981
+ @@Closing_date = Field.new('Closing_Date')
982
+ def self.Closing_date
983
+ @@Closing_date
984
+ end
985
+ @@Last_activity_time = Field.new('Last_Activity_Time')
986
+ def self.Last_activity_time
987
+ @@Last_activity_time
988
+ end
989
+ @@Reason_for_loss__s = Field.new('Reason_For_Loss__s')
990
+ def self.Reason_for_loss__s
991
+ @@Reason_for_loss__s
992
+ end
993
+ @@Modified_by = Field.new('Modified_By')
994
+ def self.Modified_by
995
+ @@Modified_by
996
+ end
997
+ @@Lead_conversion_time = Field.new('Lead_Conversion_Time')
998
+ def self.Lead_conversion_time
999
+ @@Lead_conversion_time
1000
+ end
1001
+ @@Deal_name = Field.new('Deal_Name')
1002
+ def self.Deal_name
1003
+ @@Deal_name
1004
+ end
1005
+ @@Exchange_rate = Field.new('Exchange_Rate')
1006
+ def self.Exchange_rate
1007
+ @@Exchange_rate
1008
+ end
1009
+ @@Expected_revenue = Field.new('Expected_Revenue')
1010
+ def self.Expected_revenue
1011
+ @@Expected_revenue
1012
+ end
1013
+ @@Currency = Field.new('Currency')
1014
+ def self.Currency
1015
+ @@Currency
1016
+ end
1017
+ @@Overall_sales_duration = Field.new('Overall_Sales_Duration')
1018
+ def self.Overall_sales_duration
1019
+ @@Overall_sales_duration
1020
+ end
1021
+ @@Stage = Field.new('Stage')
1022
+ def self.Stage
1023
+ @@Stage
1024
+ end
1025
+ @@Account_name = Field.new('Account_Name')
1026
+ def self.Account_name
1027
+ @@Account_name
1028
+ end
1029
+ @@id = Field.new('id')
1030
+ def self.id
1031
+ @@id
1032
+ end
1033
+ @@Modified_time = Field.new('Modified_Time')
1034
+ def self.Modified_time
1035
+ @@Modified_time
1036
+ end
1037
+ @@Territory = Field.new('Territory')
1038
+ def self.Territory
1039
+ @@Territory
1040
+ end
1041
+ @@Created_time = Field.new('Created_Time')
1042
+ def self.Created_time
1043
+ @@Created_time
1044
+ end
1045
+ @@Amount = Field.new('Amount')
1046
+ def self.Amount
1047
+ @@Amount
1048
+ end
1049
+ @@Probability = Field.new('Probability')
1050
+ def self.Probability
1051
+ @@Probability
1052
+ end
1053
+ @@Next_step = Field.new('Next_Step')
1054
+ def self.Next_step
1055
+ @@Next_step
1056
+ end
1057
+ @@Change_log_time__s = Field.new('Change_Log_Time__s')
1058
+ def self.Change_log_time__s
1059
+ @@Change_log_time__s
1060
+ end
1061
+ @@Record_status__s = Field.new('Record_Status__s')
1062
+ def self.Record_status__s
1063
+ @@Record_status__s
1064
+ end
1065
+ @@Contact_name = Field.new('Contact_Name')
1066
+ def self.Contact_name
1067
+ @@Contact_name
1068
+ end
1069
+ @@Pipeline = Field.new('Pipeline')
1070
+ def self.Pipeline
1071
+ @@Pipeline
1072
+ end
1073
+ @@Sales_cycle_duration = Field.new('Sales_Cycle_Duration')
1074
+ def self.Sales_cycle_duration
1075
+ @@Sales_cycle_duration
1076
+ end
1077
+ @@Type = Field.new('Type')
1078
+ def self.Type
1079
+ @@Type
1080
+ end
1081
+ @@Locked__s = Field.new('Locked__s')
1082
+ def self.Locked__s
1083
+ @@Locked__s
1084
+ end
1085
+ @@Lead_source = Field.new('Lead_Source')
1086
+ def self.Lead_source
1087
+ @@Lead_source
1088
+ end
1089
+ @@Created_by = Field.new('Created_By')
1090
+ def self.Created_by
1091
+ @@Created_by
1092
+ end
1093
+ @@Tag = Field.new('Tag')
1094
+ def self.Tag
1095
+ @@Tag
1096
+ end
1097
+ end
1098
+
1099
+ class Quotes
1100
+ @@Owner = Field.new('Owner')
1101
+ def self.Owner
1102
+ @@Owner
1103
+ end
1104
+ @@Description = Field.new('Description')
1105
+ def self.Description
1106
+ @@Description
1107
+ end
1108
+ @@Discount = Field.new('Discount')
1109
+ def self.Discount
1110
+ @@Discount
1111
+ end
1112
+ @@Shipping_state = Field.new('Shipping_State')
1113
+ def self.Shipping_state
1114
+ @@Shipping_state
1115
+ end
1116
+ @@Tax = Field.new('Tax')
1117
+ def self.Tax
1118
+ @@Tax
1119
+ end
1120
+ @@Modified_by = Field.new('Modified_By')
1121
+ def self.Modified_by
1122
+ @@Modified_by
1123
+ end
1124
+ @@Deal_name = Field.new('Deal_Name')
1125
+ def self.Deal_name
1126
+ @@Deal_name
1127
+ end
1128
+ @@Exchange_rate = Field.new('Exchange_Rate')
1129
+ def self.Exchange_rate
1130
+ @@Exchange_rate
1131
+ end
1132
+ @@Valid_till = Field.new('Valid_Till')
1133
+ def self.Valid_till
1134
+ @@Valid_till
1135
+ end
1136
+ @@Billing_country = Field.new('Billing_Country')
1137
+ def self.Billing_country
1138
+ @@Billing_country
1139
+ end
1140
+ @@Currency = Field.new('Currency')
1141
+ def self.Currency
1142
+ @@Currency
1143
+ end
1144
+ @@Team = Field.new('Team')
1145
+ def self.Team
1146
+ @@Team
1147
+ end
1148
+ @@Account_name = Field.new('Account_Name')
1149
+ def self.Account_name
1150
+ @@Account_name
1151
+ end
1152
+ @@Carrier = Field.new('Carrier')
1153
+ def self.Carrier
1154
+ @@Carrier
1155
+ end
1156
+ @@Quoted_items = Field.new('Quoted_Items')
1157
+ def self.Quoted_items
1158
+ @@Quoted_items
1159
+ end
1160
+ @@id = Field.new('id')
1161
+ def self.id
1162
+ @@id
1163
+ end
1164
+ @@Quote_stage = Field.new('Quote_Stage')
1165
+ def self.Quote_stage
1166
+ @@Quote_stage
1167
+ end
1168
+ @@Grand_total = Field.new('Grand_Total')
1169
+ def self.Grand_total
1170
+ @@Grand_total
1171
+ end
1172
+ @@Modified_time = Field.new('Modified_Time')
1173
+ def self.Modified_time
1174
+ @@Modified_time
1175
+ end
1176
+ @@Adjustment = Field.new('Adjustment')
1177
+ def self.Adjustment
1178
+ @@Adjustment
1179
+ end
1180
+ @@Billing_street = Field.new('Billing_Street')
1181
+ def self.Billing_street
1182
+ @@Billing_street
1183
+ end
1184
+ @@Created_time = Field.new('Created_Time')
1185
+ def self.Created_time
1186
+ @@Created_time
1187
+ end
1188
+ @@Terms_and_conditions = Field.new('Terms_and_Conditions')
1189
+ def self.Terms_and_conditions
1190
+ @@Terms_and_conditions
1191
+ end
1192
+ @@Sub_total = Field.new('Sub_Total')
1193
+ def self.Sub_total
1194
+ @@Sub_total
1195
+ end
1196
+ @@Billing_code = Field.new('Billing_Code')
1197
+ def self.Billing_code
1198
+ @@Billing_code
1199
+ end
1200
+ @@Record_status__s = Field.new('Record_Status__s')
1201
+ def self.Record_status__s
1202
+ @@Record_status__s
1203
+ end
1204
+ @@Subject = Field.new('Subject')
1205
+ def self.Subject
1206
+ @@Subject
1207
+ end
1208
+ @@Contact_name = Field.new('Contact_Name')
1209
+ def self.Contact_name
1210
+ @@Contact_name
1211
+ end
1212
+ @@Shipping_city = Field.new('Shipping_City')
1213
+ def self.Shipping_city
1214
+ @@Shipping_city
1215
+ end
1216
+ @@Shipping_country = Field.new('Shipping_Country')
1217
+ def self.Shipping_country
1218
+ @@Shipping_country
1219
+ end
1220
+ @@Shipping_code = Field.new('Shipping_Code')
1221
+ def self.Shipping_code
1222
+ @@Shipping_code
1223
+ end
1224
+ @@Billing_city = Field.new('Billing_City')
1225
+ def self.Billing_city
1226
+ @@Billing_city
1227
+ end
1228
+ @@Quote_number = Field.new('Quote_Number')
1229
+ def self.Quote_number
1230
+ @@Quote_number
1231
+ end
1232
+ @@Locked__s = Field.new('Locked__s')
1233
+ def self.Locked__s
1234
+ @@Locked__s
1235
+ end
1236
+ @@Billing_state = Field.new('Billing_State')
1237
+ def self.Billing_state
1238
+ @@Billing_state
1239
+ end
1240
+ @@Created_by = Field.new('Created_By')
1241
+ def self.Created_by
1242
+ @@Created_by
1243
+ end
1244
+ @@Tag = Field.new('Tag')
1245
+ def self.Tag
1246
+ @@Tag
1247
+ end
1248
+ @@Shipping_street = Field.new('Shipping_Street')
1249
+ def self.Shipping_street
1250
+ @@Shipping_street
1251
+ end
1252
+ end
1253
+
1254
+ class Invoices
1255
+ @@Owner = Field.new('Owner')
1256
+ def self.Owner
1257
+ @@Owner
1258
+ end
1259
+ @@Description = Field.new('Description')
1260
+ def self.Description
1261
+ @@Description
1262
+ end
1263
+ @@Discount = Field.new('Discount')
1264
+ def self.Discount
1265
+ @@Discount
1266
+ end
1267
+ @@Shipping_state = Field.new('Shipping_State')
1268
+ def self.Shipping_state
1269
+ @@Shipping_state
1270
+ end
1271
+ @@Tax = Field.new('Tax')
1272
+ def self.Tax
1273
+ @@Tax
1274
+ end
1275
+ @@Invoice_date = Field.new('Invoice_Date')
1276
+ def self.Invoice_date
1277
+ @@Invoice_date
1278
+ end
1279
+ @@Modified_by = Field.new('Modified_By')
1280
+ def self.Modified_by
1281
+ @@Modified_by
1282
+ end
1283
+ @@Invoiced_items = Field.new('Invoiced_Items')
1284
+ def self.Invoiced_items
1285
+ @@Invoiced_items
1286
+ end
1287
+ @@Exchange_rate = Field.new('Exchange_Rate')
1288
+ def self.Exchange_rate
1289
+ @@Exchange_rate
1290
+ end
1291
+ @@Billing_country = Field.new('Billing_Country')
1292
+ def self.Billing_country
1293
+ @@Billing_country
1294
+ end
1295
+ @@Currency = Field.new('Currency')
1296
+ def self.Currency
1297
+ @@Currency
1298
+ end
1299
+ @@Account_name = Field.new('Account_Name')
1300
+ def self.Account_name
1301
+ @@Account_name
1302
+ end
1303
+ @@id = Field.new('id')
1304
+ def self.id
1305
+ @@id
1306
+ end
1307
+ @@Sales_order = Field.new('Sales_Order')
1308
+ def self.Sales_order
1309
+ @@Sales_order
1310
+ end
1311
+ @@Status = Field.new('Status')
1312
+ def self.Status
1313
+ @@Status
1314
+ end
1315
+ @@Sales_commission = Field.new('Sales_Commission')
1316
+ def self.Sales_commission
1317
+ @@Sales_commission
1318
+ end
1319
+ @@Grand_total = Field.new('Grand_Total')
1320
+ def self.Grand_total
1321
+ @@Grand_total
1322
+ end
1323
+ @@Modified_time = Field.new('Modified_Time')
1324
+ def self.Modified_time
1325
+ @@Modified_time
1326
+ end
1327
+ @@Due_date = Field.new('Due_Date')
1328
+ def self.Due_date
1329
+ @@Due_date
1330
+ end
1331
+ @@Adjustment = Field.new('Adjustment')
1332
+ def self.Adjustment
1333
+ @@Adjustment
1334
+ end
1335
+ @@Billing_street = Field.new('Billing_Street')
1336
+ def self.Billing_street
1337
+ @@Billing_street
1338
+ end
1339
+ @@Created_time = Field.new('Created_Time')
1340
+ def self.Created_time
1341
+ @@Created_time
1342
+ end
1343
+ @@Terms_and_conditions = Field.new('Terms_and_Conditions')
1344
+ def self.Terms_and_conditions
1345
+ @@Terms_and_conditions
1346
+ end
1347
+ @@Sub_total = Field.new('Sub_Total')
1348
+ def self.Sub_total
1349
+ @@Sub_total
1350
+ end
1351
+ @@Invoice_number = Field.new('Invoice_Number')
1352
+ def self.Invoice_number
1353
+ @@Invoice_number
1354
+ end
1355
+ @@Billing_code = Field.new('Billing_Code')
1356
+ def self.Billing_code
1357
+ @@Billing_code
1358
+ end
1359
+ @@Record_status__s = Field.new('Record_Status__s')
1360
+ def self.Record_status__s
1361
+ @@Record_status__s
1362
+ end
1363
+ @@Subject = Field.new('Subject')
1364
+ def self.Subject
1365
+ @@Subject
1366
+ end
1367
+ @@Excise_duty = Field.new('Excise_Duty')
1368
+ def self.Excise_duty
1369
+ @@Excise_duty
1370
+ end
1371
+ @@Contact_name = Field.new('Contact_Name')
1372
+ def self.Contact_name
1373
+ @@Contact_name
1374
+ end
1375
+ @@Shipping_city = Field.new('Shipping_City')
1376
+ def self.Shipping_city
1377
+ @@Shipping_city
1378
+ end
1379
+ @@Shipping_country = Field.new('Shipping_Country')
1380
+ def self.Shipping_country
1381
+ @@Shipping_country
1382
+ end
1383
+ @@Shipping_code = Field.new('Shipping_Code')
1384
+ def self.Shipping_code
1385
+ @@Shipping_code
1386
+ end
1387
+ @@Billing_city = Field.new('Billing_City')
1388
+ def self.Billing_city
1389
+ @@Billing_city
1390
+ end
1391
+ @@Locked__s = Field.new('Locked__s')
1392
+ def self.Locked__s
1393
+ @@Locked__s
1394
+ end
1395
+ @@Purchase_order = Field.new('Purchase_Order')
1396
+ def self.Purchase_order
1397
+ @@Purchase_order
1398
+ end
1399
+ @@Billing_state = Field.new('Billing_State')
1400
+ def self.Billing_state
1401
+ @@Billing_state
1402
+ end
1403
+ @@Created_by = Field.new('Created_By')
1404
+ def self.Created_by
1405
+ @@Created_by
1406
+ end
1407
+ @@Tag = Field.new('Tag')
1408
+ def self.Tag
1409
+ @@Tag
1410
+ end
1411
+ @@Shipping_street = Field.new('Shipping_Street')
1412
+ def self.Shipping_street
1413
+ @@Shipping_street
1414
+ end
1415
+ end
1416
+
1417
+ class Campaigns
1418
+ @@Status = Field.new('Status')
1419
+ def self.Status
1420
+ @@Status
1421
+ end
1422
+ @@Owner = Field.new('Owner')
1423
+ def self.Owner
1424
+ @@Owner
1425
+ end
1426
+ @@Modified_time = Field.new('Modified_Time')
1427
+ def self.Modified_time
1428
+ @@Modified_time
1429
+ end
1430
+ @@Description = Field.new('Description')
1431
+ def self.Description
1432
+ @@Description
1433
+ end
1434
+ @@Campaign_name = Field.new('Campaign_Name')
1435
+ def self.Campaign_name
1436
+ @@Campaign_name
1437
+ end
1438
+ @@Created_time = Field.new('Created_Time')
1439
+ def self.Created_time
1440
+ @@Created_time
1441
+ end
1442
+ @@End_date = Field.new('End_Date')
1443
+ def self.End_date
1444
+ @@End_date
1445
+ end
1446
+ @@Record_status__s = Field.new('Record_Status__s')
1447
+ def self.Record_status__s
1448
+ @@Record_status__s
1449
+ end
1450
+ @@Type = Field.new('Type')
1451
+ def self.Type
1452
+ @@Type
1453
+ end
1454
+ @@Modified_by = Field.new('Modified_By')
1455
+ def self.Modified_by
1456
+ @@Modified_by
1457
+ end
1458
+ @@Num_sent = Field.new('Num_sent')
1459
+ def self.Num_sent
1460
+ @@Num_sent
1461
+ end
1462
+ @@Exchange_rate = Field.new('Exchange_Rate')
1463
+ def self.Exchange_rate
1464
+ @@Exchange_rate
1465
+ end
1466
+ @@Expected_revenue = Field.new('Expected_Revenue')
1467
+ def self.Expected_revenue
1468
+ @@Expected_revenue
1469
+ end
1470
+ @@Currency = Field.new('Currency')
1471
+ def self.Currency
1472
+ @@Currency
1473
+ end
1474
+ @@Actual_cost = Field.new('Actual_Cost')
1475
+ def self.Actual_cost
1476
+ @@Actual_cost
1477
+ end
1478
+ @@Expected_response = Field.new('Expected_Response')
1479
+ def self.Expected_response
1480
+ @@Expected_response
1481
+ end
1482
+ @@Created_by = Field.new('Created_By')
1483
+ def self.Created_by
1484
+ @@Created_by
1485
+ end
1486
+ @@Tag = Field.new('Tag')
1487
+ def self.Tag
1488
+ @@Tag
1489
+ end
1490
+ @@Parent_campaign = Field.new('Parent_Campaign')
1491
+ def self.Parent_campaign
1492
+ @@Parent_campaign
1493
+ end
1494
+ @@id = Field.new('id')
1495
+ def self.id
1496
+ @@id
1497
+ end
1498
+ @@Start_date = Field.new('Start_Date')
1499
+ def self.Start_date
1500
+ @@Start_date
1501
+ end
1502
+ @@Budgeted_cost = Field.new('Budgeted_Cost')
1503
+ def self.Budgeted_cost
1504
+ @@Budgeted_cost
1505
+ end
1506
+ end
1507
+
1508
+ class Attachments
1509
+ @@Owner = Field.new('Owner')
1510
+ def self.Owner
1511
+ @@Owner
1512
+ end
1513
+ @@Modified_by = Field.new('Modified_By')
1514
+ def self.Modified_by
1515
+ @@Modified_by
1516
+ end
1517
+ @@Modified_time = Field.new('Modified_Time')
1518
+ def self.Modified_time
1519
+ @@Modified_time
1520
+ end
1521
+ @@File_name = Field.new('File_Name')
1522
+ def self.File_name
1523
+ @@File_name
1524
+ end
1525
+ @@Created_time = Field.new('Created_Time')
1526
+ def self.Created_time
1527
+ @@Created_time
1528
+ end
1529
+ @@Size = Field.new('Size')
1530
+ def self.Size
1531
+ @@Size
1532
+ end
1533
+ @@Parent_id = Field.new('Parent_Id')
1534
+ def self.Parent_id
1535
+ @@Parent_id
1536
+ end
1537
+ @@Created_by = Field.new('Created_By')
1538
+ def self.Created_by
1539
+ @@Created_by
1540
+ end
1541
+ @@id = Field.new('id')
1542
+ def self.id
1543
+ @@id
1544
+ end
1545
+ @@Record_status__s = Field.new('Record_Status__s')
1546
+ def self.Record_status__s
1547
+ @@Record_status__s
1548
+ end
1549
+ end
1550
+
1551
+ class Price_Books
1552
+ @@Owner = Field.new('Owner')
1553
+ def self.Owner
1554
+ @@Owner
1555
+ end
1556
+ @@Modified_time = Field.new('Modified_Time')
1557
+ def self.Modified_time
1558
+ @@Modified_time
1559
+ end
1560
+ @@Pricing_details = Field.new('Pricing_Details')
1561
+ def self.Pricing_details
1562
+ @@Pricing_details
1563
+ end
1564
+ @@Description = Field.new('Description')
1565
+ def self.Description
1566
+ @@Description
1567
+ end
1568
+ @@Created_time = Field.new('Created_Time')
1569
+ def self.Created_time
1570
+ @@Created_time
1571
+ end
1572
+ @@Record_status__s = Field.new('Record_Status__s')
1573
+ def self.Record_status__s
1574
+ @@Record_status__s
1575
+ end
1576
+ @@Modified_by = Field.new('Modified_By')
1577
+ def self.Modified_by
1578
+ @@Modified_by
1579
+ end
1580
+ @@Active = Field.new('Active')
1581
+ def self.Active
1582
+ @@Active
1583
+ end
1584
+ @@Pricing_model = Field.new('Pricing_Model')
1585
+ def self.Pricing_model
1586
+ @@Pricing_model
1587
+ end
1588
+ @@Locked__s = Field.new('Locked__s')
1589
+ def self.Locked__s
1590
+ @@Locked__s
1591
+ end
1592
+ @@Price_book_name = Field.new('Price_Book_Name')
1593
+ def self.Price_book_name
1594
+ @@Price_book_name
1595
+ end
1596
+ @@Created_by = Field.new('Created_By')
1597
+ def self.Created_by
1598
+ @@Created_by
1599
+ end
1600
+ @@Tag = Field.new('Tag')
1601
+ def self.Tag
1602
+ @@Tag
1603
+ end
1604
+ @@id = Field.new('id')
1605
+ def self.id
1606
+ @@id
1607
+ end
1608
+ end
1609
+
1610
+ class Sales_Orders
1611
+ @@Owner = Field.new('Owner')
1612
+ def self.Owner
1613
+ @@Owner
1614
+ end
1615
+ @@Description = Field.new('Description')
1616
+ def self.Description
1617
+ @@Description
1618
+ end
1619
+ @@Discount = Field.new('Discount')
1620
+ def self.Discount
1621
+ @@Discount
1622
+ end
1623
+ @@Customer_no = Field.new('Customer_No')
1624
+ def self.Customer_no
1625
+ @@Customer_no
1626
+ end
1627
+ @@Shipping_state = Field.new('Shipping_State')
1628
+ def self.Shipping_state
1629
+ @@Shipping_state
1630
+ end
1631
+ @@Tax = Field.new('Tax')
1632
+ def self.Tax
1633
+ @@Tax
1634
+ end
1635
+ @@Modified_by = Field.new('Modified_By')
1636
+ def self.Modified_by
1637
+ @@Modified_by
1638
+ end
1639
+ @@Deal_name = Field.new('Deal_Name')
1640
+ def self.Deal_name
1641
+ @@Deal_name
1642
+ end
1643
+ @@Exchange_rate = Field.new('Exchange_Rate')
1644
+ def self.Exchange_rate
1645
+ @@Exchange_rate
1646
+ end
1647
+ @@Billing_country = Field.new('Billing_Country')
1648
+ def self.Billing_country
1649
+ @@Billing_country
1650
+ end
1651
+ @@Currency = Field.new('Currency')
1652
+ def self.Currency
1653
+ @@Currency
1654
+ end
1655
+ @@Account_name = Field.new('Account_Name')
1656
+ def self.Account_name
1657
+ @@Account_name
1658
+ end
1659
+ @@Carrier = Field.new('Carrier')
1660
+ def self.Carrier
1661
+ @@Carrier
1662
+ end
1663
+ @@id = Field.new('id')
1664
+ def self.id
1665
+ @@id
1666
+ end
1667
+ @@Ordered_items = Field.new('Ordered_Items')
1668
+ def self.Ordered_items
1669
+ @@Ordered_items
1670
+ end
1671
+ @@Quote_name = Field.new('Quote_Name')
1672
+ def self.Quote_name
1673
+ @@Quote_name
1674
+ end
1675
+ @@Status = Field.new('Status')
1676
+ def self.Status
1677
+ @@Status
1678
+ end
1679
+ @@Sales_commission = Field.new('Sales_Commission')
1680
+ def self.Sales_commission
1681
+ @@Sales_commission
1682
+ end
1683
+ @@Modified_time = Field.new('Modified_Time')
1684
+ def self.Modified_time
1685
+ @@Modified_time
1686
+ end
1687
+ @@Due_date = Field.new('Due_Date')
1688
+ def self.Due_date
1689
+ @@Due_date
1690
+ end
1691
+ @@Adjustment = Field.new('Adjustment')
1692
+ def self.Adjustment
1693
+ @@Adjustment
1694
+ end
1695
+ @@Billing_street = Field.new('Billing_Street')
1696
+ def self.Billing_street
1697
+ @@Billing_street
1698
+ end
1699
+ @@Created_time = Field.new('Created_Time')
1700
+ def self.Created_time
1701
+ @@Created_time
1702
+ end
1703
+ @@Terms_and_conditions = Field.new('Terms_and_Conditions')
1704
+ def self.Terms_and_conditions
1705
+ @@Terms_and_conditions
1706
+ end
1707
+ @@Sub_total = Field.new('Sub_Total')
1708
+ def self.Sub_total
1709
+ @@Sub_total
1710
+ end
1711
+ @@Billing_code = Field.new('Billing_Code')
1712
+ def self.Billing_code
1713
+ @@Billing_code
1714
+ end
1715
+ @@Record_status__s = Field.new('Record_Status__s')
1716
+ def self.Record_status__s
1717
+ @@Record_status__s
1718
+ end
1719
+ @@Subject = Field.new('Subject')
1720
+ def self.Subject
1721
+ @@Subject
1722
+ end
1723
+ @@Contact_name = Field.new('Contact_Name')
1724
+ def self.Contact_name
1725
+ @@Contact_name
1726
+ end
1727
+ @@Excise_duty = Field.new('Excise_Duty')
1728
+ def self.Excise_duty
1729
+ @@Excise_duty
1730
+ end
1731
+ @@Shipping_city = Field.new('Shipping_City')
1732
+ def self.Shipping_city
1733
+ @@Shipping_city
1734
+ end
1735
+ @@Shipping_country = Field.new('Shipping_Country')
1736
+ def self.Shipping_country
1737
+ @@Shipping_country
1738
+ end
1739
+ @@Shipping_code = Field.new('Shipping_Code')
1740
+ def self.Shipping_code
1741
+ @@Shipping_code
1742
+ end
1743
+ @@Billing_city = Field.new('Billing_City')
1744
+ def self.Billing_city
1745
+ @@Billing_city
1746
+ end
1747
+ @@SO_number = Field.new('SO_Number')
1748
+ def self.SO_number
1749
+ @@SO_number
1750
+ end
1751
+ @@Locked__s = Field.new('Locked__s')
1752
+ def self.Locked__s
1753
+ @@Locked__s
1754
+ end
1755
+ @@Purchase_order = Field.new('Purchase_Order')
1756
+ def self.Purchase_order
1757
+ @@Purchase_order
1758
+ end
1759
+ @@Billing_state = Field.new('Billing_State')
1760
+ def self.Billing_state
1761
+ @@Billing_state
1762
+ end
1763
+ @@Created_by = Field.new('Created_By')
1764
+ def self.Created_by
1765
+ @@Created_by
1766
+ end
1767
+ @@Tag = Field.new('Tag')
1768
+ def self.Tag
1769
+ @@Tag
1770
+ end
1771
+ @@Pending = Field.new('Pending')
1772
+ def self.Pending
1773
+ @@Pending
1774
+ end
1775
+ @@Shipping_street = Field.new('Shipping_Street')
1776
+ def self.Shipping_street
1777
+ @@Shipping_street
1778
+ end
1779
+ end
1780
+
1781
+ class Services__s
1782
+ @@Job_sheet_required = Field.new('Job_Sheet_Required')
1783
+ def self.Job_sheet_required
1784
+ @@Job_sheet_required
1785
+ end
1786
+ @@Owner = Field.new('Owner')
1787
+ def self.Owner
1788
+ @@Owner
1789
+ end
1790
+ @@Description = Field.new('Description')
1791
+ def self.Description
1792
+ @@Description
1793
+ end
1794
+ @@Available_days = Field.new('Available_Days')
1795
+ def self.Available_days
1796
+ @@Available_days
1797
+ end
1798
+ @@Tax = Field.new('Tax')
1799
+ def self.Tax
1800
+ @@Tax
1801
+ end
1802
+ @@Unavailable_from = Field.new('Unavailable_From')
1803
+ def self.Unavailable_from
1804
+ @@Unavailable_from
1805
+ end
1806
+ @@Record_image = Field.new('Record_Image')
1807
+ def self.Record_image
1808
+ @@Record_image
1809
+ end
1810
+ @@Modified_by = Field.new('Modified_By')
1811
+ def self.Modified_by
1812
+ @@Modified_by
1813
+ end
1814
+ @@id = Field.new('id')
1815
+ def self.id
1816
+ @@id
1817
+ end
1818
+ @@Available_dates = Field.new('Available_Dates')
1819
+ def self.Available_dates
1820
+ @@Available_dates
1821
+ end
1822
+ @@Status = Field.new('Status')
1823
+ def self.Status
1824
+ @@Status
1825
+ end
1826
+ @@Modified_time = Field.new('Modified_Time')
1827
+ def self.Modified_time
1828
+ @@Modified_time
1829
+ end
1830
+ @@Available_timings = Field.new('Available_Timings')
1831
+ def self.Available_timings
1832
+ @@Available_timings
1833
+ end
1834
+ @@Service_name = Field.new('Service_Name')
1835
+ def self.Service_name
1836
+ @@Service_name
1837
+ end
1838
+ @@Available_from = Field.new('Available_From')
1839
+ def self.Available_from
1840
+ @@Available_from
1841
+ end
1842
+ @@Created_time = Field.new('Created_Time')
1843
+ def self.Created_time
1844
+ @@Created_time
1845
+ end
1846
+ @@Available_till = Field.new('Available_Till')
1847
+ def self.Available_till
1848
+ @@Available_till
1849
+ end
1850
+ @@Duration = Field.new('Duration')
1851
+ def self.Duration
1852
+ @@Duration
1853
+ end
1854
+ @@Job_sheet_section__s = Field.new('Job_Sheet_Section__s')
1855
+ def self.Job_sheet_section__s
1856
+ @@Job_sheet_section__s
1857
+ end
1858
+ @@Record_status__s = Field.new('Record_Status__s')
1859
+ def self.Record_status__s
1860
+ @@Record_status__s
1861
+ end
1862
+ @@Price = Field.new('Price')
1863
+ def self.Price
1864
+ @@Price
1865
+ end
1866
+ @@Created_by = Field.new('Created_By')
1867
+ def self.Created_by
1868
+ @@Created_by
1869
+ end
1870
+ @@Tag = Field.new('Tag')
1871
+ def self.Tag
1872
+ @@Tag
1873
+ end
1874
+ @@Availability_type = Field.new('Availability_Type')
1875
+ def self.Availability_type
1876
+ @@Availability_type
1877
+ end
1878
+ @@Members = Field.new('Members')
1879
+ def self.Members
1880
+ @@Members
1881
+ end
1882
+ @@Location = Field.new('Location')
1883
+ def self.Location
1884
+ @@Location
1885
+ end
1886
+ @@Unavailable_till = Field.new('Unavailable_Till')
1887
+ def self.Unavailable_till
1888
+ @@Unavailable_till
1889
+ end
1890
+ end
1891
+
1892
+ class Contacts
1893
+ @@Owner = Field.new('Owner')
1894
+ def self.Owner
1895
+ @@Owner
1896
+ end
1897
+ @@Email = Field.new('Email')
1898
+ def self.Email
1899
+ @@Email
1900
+ end
1901
+ @@Visitor_score = Field.new('Visitor_Score')
1902
+ def self.Visitor_score
1903
+ @@Visitor_score
1904
+ end
1905
+ @@Other_phone = Field.new('Other_Phone')
1906
+ def self.Other_phone
1907
+ @@Other_phone
1908
+ end
1909
+ @@Mailing_state = Field.new('Mailing_State')
1910
+ def self.Mailing_state
1911
+ @@Mailing_state
1912
+ end
1913
+ @@Other_state = Field.new('Other_State')
1914
+ def self.Other_state
1915
+ @@Other_state
1916
+ end
1917
+ @@Other_country = Field.new('Other_Country')
1918
+ def self.Other_country
1919
+ @@Other_country
1920
+ end
1921
+ @@Last_activity_time = Field.new('Last_Activity_Time')
1922
+ def self.Last_activity_time
1923
+ @@Last_activity_time
1924
+ end
1925
+ @@Department = Field.new('Department')
1926
+ def self.Department
1927
+ @@Department
1928
+ end
1929
+ @@Unsubscribed_mode = Field.new('Unsubscribed_Mode')
1930
+ def self.Unsubscribed_mode
1931
+ @@Unsubscribed_mode
1932
+ end
1933
+ @@Assistant = Field.new('Assistant')
1934
+ def self.Assistant
1935
+ @@Assistant
1936
+ end
1937
+ @@Mailing_country = Field.new('Mailing_Country')
1938
+ def self.Mailing_country
1939
+ @@Mailing_country
1940
+ end
1941
+ @@Data_processing_basis_details = Field.new('Data_Processing_Basis_Details')
1942
+ def self.Data_processing_basis_details
1943
+ @@Data_processing_basis_details
1944
+ end
1945
+ @@id = Field.new('id')
1946
+ def self.id
1947
+ @@id
1948
+ end
1949
+ @@Data_source = Field.new('Data_Source')
1950
+ def self.Data_source
1951
+ @@Data_source
1952
+ end
1953
+ @@Reporting_to = Field.new('Reporting_To')
1954
+ def self.Reporting_to
1955
+ @@Reporting_to
1956
+ end
1957
+ @@Enrich_status__s = Field.new('Enrich_Status__s')
1958
+ def self.Enrich_status__s
1959
+ @@Enrich_status__s
1960
+ end
1961
+ @@First_visited_url = Field.new('First_Visited_URL')
1962
+ def self.First_visited_url
1963
+ @@First_visited_url
1964
+ end
1965
+ @@Days_visited = Field.new('Days_Visited')
1966
+ def self.Days_visited
1967
+ @@Days_visited
1968
+ end
1969
+ @@Other_city = Field.new('Other_City')
1970
+ def self.Other_city
1971
+ @@Other_city
1972
+ end
1973
+ @@Created_time = Field.new('Created_Time')
1974
+ def self.Created_time
1975
+ @@Created_time
1976
+ end
1977
+ @@Change_log_time__s = Field.new('Change_Log_Time__s')
1978
+ def self.Change_log_time__s
1979
+ @@Change_log_time__s
1980
+ end
1981
+ @@Data_processing_basis = Field.new('Data_Processing_Basis')
1982
+ def self.Data_processing_basis
1983
+ @@Data_processing_basis
1984
+ end
1985
+ @@Home_phone = Field.new('Home_Phone')
1986
+ def self.Home_phone
1987
+ @@Home_phone
1988
+ end
1989
+ @@Last_visited_time = Field.new('Last_Visited_Time')
1990
+ def self.Last_visited_time
1991
+ @@Last_visited_time
1992
+ end
1993
+ @@Created_by = Field.new('Created_By')
1994
+ def self.Created_by
1995
+ @@Created_by
1996
+ end
1997
+ @@Secondary_email = Field.new('Secondary_Email')
1998
+ def self.Secondary_email
1999
+ @@Secondary_email
2000
+ end
2001
+ @@Description = Field.new('Description')
2002
+ def self.Description
2003
+ @@Description
2004
+ end
2005
+ @@Vendor_name = Field.new('Vendor_Name')
2006
+ def self.Vendor_name
2007
+ @@Vendor_name
2008
+ end
2009
+ @@Mailing_zip = Field.new('Mailing_Zip')
2010
+ def self.Mailing_zip
2011
+ @@Mailing_zip
2012
+ end
2013
+ @@Reports_to = Field.new('Reports_To')
2014
+ def self.Reports_to
2015
+ @@Reports_to
2016
+ end
2017
+ @@Number_of_chats = Field.new('Number_Of_Chats')
2018
+ def self.Number_of_chats
2019
+ @@Number_of_chats
2020
+ end
2021
+ @@Other_zip = Field.new('Other_Zip')
2022
+ def self.Other_zip
2023
+ @@Other_zip
2024
+ end
2025
+ @@Twitter = Field.new('Twitter')
2026
+ def self.Twitter
2027
+ @@Twitter
2028
+ end
2029
+ @@Mailing_street = Field.new('Mailing_Street')
2030
+ def self.Mailing_street
2031
+ @@Mailing_street
2032
+ end
2033
+ @@Average_time_spent_minutes = Field.new('Average_Time_Spent_Minutes')
2034
+ def self.Average_time_spent_minutes
2035
+ @@Average_time_spent_minutes
2036
+ end
2037
+ @@Salutation = Field.new('Salutation')
2038
+ def self.Salutation
2039
+ @@Salutation
2040
+ end
2041
+ @@First_name = Field.new('First_Name')
2042
+ def self.First_name
2043
+ @@First_name
2044
+ end
2045
+ @@Asst_phone = Field.new('Asst_Phone')
2046
+ def self.Asst_phone
2047
+ @@Asst_phone
2048
+ end
2049
+ @@Full_name = Field.new('Full_Name')
2050
+ def self.Full_name
2051
+ @@Full_name
2052
+ end
2053
+ @@Record_image = Field.new('Record_Image')
2054
+ def self.Record_image
2055
+ @@Record_image
2056
+ end
2057
+ @@Modified_by = Field.new('Modified_By')
2058
+ def self.Modified_by
2059
+ @@Modified_by
2060
+ end
2061
+ @@Skype_id = Field.new('Skype_ID')
2062
+ def self.Skype_id
2063
+ @@Skype_id
2064
+ end
2065
+ @@Phone = Field.new('Phone')
2066
+ def self.Phone
2067
+ @@Phone
2068
+ end
2069
+ @@Account_name = Field.new('Account_Name')
2070
+ def self.Account_name
2071
+ @@Account_name
2072
+ end
2073
+ @@Email_opt_out = Field.new('Email_Opt_Out')
2074
+ def self.Email_opt_out
2075
+ @@Email_opt_out
2076
+ end
2077
+ @@Modified_time = Field.new('Modified_Time')
2078
+ def self.Modified_time
2079
+ @@Modified_time
2080
+ end
2081
+ @@Date_of_birth = Field.new('Date_of_Birth')
2082
+ def self.Date_of_birth
2083
+ @@Date_of_birth
2084
+ end
2085
+ @@Mailing_city = Field.new('Mailing_City')
2086
+ def self.Mailing_city
2087
+ @@Mailing_city
2088
+ end
2089
+ @@Unsubscribed_time = Field.new('Unsubscribed_Time')
2090
+ def self.Unsubscribed_time
2091
+ @@Unsubscribed_time
2092
+ end
2093
+ @@Title = Field.new('Title')
2094
+ def self.Title
2095
+ @@Title
2096
+ end
2097
+ @@Other_street = Field.new('Other_Street')
2098
+ def self.Other_street
2099
+ @@Other_street
2100
+ end
2101
+ @@Mobile = Field.new('Mobile')
2102
+ def self.Mobile
2103
+ @@Mobile
2104
+ end
2105
+ @@Territories = Field.new('Territories')
2106
+ def self.Territories
2107
+ @@Territories
2108
+ end
2109
+ @@Record_status__s = Field.new('Record_Status__s')
2110
+ def self.Record_status__s
2111
+ @@Record_status__s
2112
+ end
2113
+ @@First_visited_time = Field.new('First_Visited_Time')
2114
+ def self.First_visited_time
2115
+ @@First_visited_time
2116
+ end
2117
+ @@Last_name = Field.new('Last_Name')
2118
+ def self.Last_name
2119
+ @@Last_name
2120
+ end
2121
+ @@Referrer = Field.new('Referrer')
2122
+ def self.Referrer
2123
+ @@Referrer
2124
+ end
2125
+ @@Locked__s = Field.new('Locked__s')
2126
+ def self.Locked__s
2127
+ @@Locked__s
2128
+ end
2129
+ @@Lead_source = Field.new('Lead_Source')
2130
+ def self.Lead_source
2131
+ @@Lead_source
2132
+ end
2133
+ @@Tag = Field.new('Tag')
2134
+ def self.Tag
2135
+ @@Tag
2136
+ end
2137
+ @@Fax = Field.new('Fax')
2138
+ def self.Fax
2139
+ @@Fax
2140
+ end
2141
+ @@Last_enriched_time__s = Field.new('Last_Enriched_Time__s')
2142
+ def self.Last_enriched_time__s
2143
+ @@Last_enriched_time__s
2144
+ end
2145
+ end
2146
+
2147
+ class Solutions
2148
+ @@Status = Field.new('Status')
2149
+ def self.Status
2150
+ @@Status
2151
+ end
2152
+ @@Owner = Field.new('Owner')
2153
+ def self.Owner
2154
+ @@Owner
2155
+ end
2156
+ @@Modified_time = Field.new('Modified_Time')
2157
+ def self.Modified_time
2158
+ @@Modified_time
2159
+ end
2160
+ @@Created_time = Field.new('Created_Time')
2161
+ def self.Created_time
2162
+ @@Created_time
2163
+ end
2164
+ @@Comments = Field.new('Comments')
2165
+ def self.Comments
2166
+ @@Comments
2167
+ end
2168
+ @@No_of_comments = Field.new('No_of_comments')
2169
+ def self.No_of_comments
2170
+ @@No_of_comments
2171
+ end
2172
+ @@Product_name = Field.new('Product_Name')
2173
+ def self.Product_name
2174
+ @@Product_name
2175
+ end
2176
+ @@Add_comment = Field.new('Add_Comment')
2177
+ def self.Add_comment
2178
+ @@Add_comment
2179
+ end
2180
+ @@Record_status__s = Field.new('Record_Status__s')
2181
+ def self.Record_status__s
2182
+ @@Record_status__s
2183
+ end
2184
+ @@Solution_number = Field.new('Solution_Number')
2185
+ def self.Solution_number
2186
+ @@Solution_number
2187
+ end
2188
+ @@Answer = Field.new('Answer')
2189
+ def self.Answer
2190
+ @@Answer
2191
+ end
2192
+ @@Modified_by = Field.new('Modified_By')
2193
+ def self.Modified_by
2194
+ @@Modified_by
2195
+ end
2196
+ @@Solution_title = Field.new('Solution_Title')
2197
+ def self.Solution_title
2198
+ @@Solution_title
2199
+ end
2200
+ @@Locked__s = Field.new('Locked__s')
2201
+ def self.Locked__s
2202
+ @@Locked__s
2203
+ end
2204
+ @@Published = Field.new('Published')
2205
+ def self.Published
2206
+ @@Published
2207
+ end
2208
+ @@Question = Field.new('Question')
2209
+ def self.Question
2210
+ @@Question
2211
+ end
2212
+ @@Created_by = Field.new('Created_By')
2213
+ def self.Created_by
2214
+ @@Created_by
2215
+ end
2216
+ @@Tag = Field.new('Tag')
2217
+ def self.Tag
2218
+ @@Tag
2219
+ end
2220
+ @@id = Field.new('id')
2221
+ def self.id
2222
+ @@id
2223
+ end
2224
+ end
2225
+
2226
+ class Events
2227
+ @@All_day = Field.new('All_day')
2228
+ def self.All_day
2229
+ @@All_day
2230
+ end
2231
+ @@Owner = Field.new('Owner')
2232
+ def self.Owner
2233
+ @@Owner
2234
+ end
2235
+ @@Check_in_state = Field.new('Check_In_State')
2236
+ def self.Check_in_state
2237
+ @@Check_in_state
2238
+ end
2239
+ @@Check_in_address = Field.new('Check_In_Address')
2240
+ def self.Check_in_address
2241
+ @@Check_in_address
2242
+ end
2243
+ @@Description = Field.new('Description')
2244
+ def self.Description
2245
+ @@Description
2246
+ end
2247
+ @@Remind_participants = Field.new('Remind_Participants')
2248
+ def self.Remind_participants
2249
+ @@Remind_participants
2250
+ end
2251
+ @@Start_datetime = Field.new('Start_DateTime')
2252
+ def self.Start_datetime
2253
+ @@Start_datetime
2254
+ end
2255
+ @@Latitude = Field.new('Latitude')
2256
+ def self.Latitude
2257
+ @@Latitude
2258
+ end
2259
+ @@Participants = Field.new('Participants')
2260
+ def self.Participants
2261
+ @@Participants
2262
+ end
2263
+ @@Event_title = Field.new('Event_Title')
2264
+ def self.Event_title
2265
+ @@Event_title
2266
+ end
2267
+ @@Check_in_by = Field.new('Check_In_By')
2268
+ def self.Check_in_by
2269
+ @@Check_in_by
2270
+ end
2271
+ @@End_datetime = Field.new('End_DateTime')
2272
+ def self.End_datetime
2273
+ @@End_datetime
2274
+ end
2275
+ @@Modified_by = Field.new('Modified_By')
2276
+ def self.Modified_by
2277
+ @@Modified_by
2278
+ end
2279
+ @@Check_in_city = Field.new('Check_In_City')
2280
+ def self.Check_in_city
2281
+ @@Check_in_city
2282
+ end
2283
+ @@id = Field.new('id')
2284
+ def self.id
2285
+ @@id
2286
+ end
2287
+ @@Check_in_comment = Field.new('Check_In_Comment')
2288
+ def self.Check_in_comment
2289
+ @@Check_in_comment
2290
+ end
2291
+ @@Remind_at = Field.new('Remind_At')
2292
+ def self.Remind_at
2293
+ @@Remind_at
2294
+ end
2295
+ @@Who_id = Field.new('Who_Id')
2296
+ def self.Who_id
2297
+ @@Who_id
2298
+ end
2299
+ @@Check_in_status = Field.new('Check_In_Status')
2300
+ def self.Check_in_status
2301
+ @@Check_in_status
2302
+ end
2303
+ @@Check_in_country = Field.new('Check_In_Country')
2304
+ def self.Check_in_country
2305
+ @@Check_in_country
2306
+ end
2307
+ @@Modified_time = Field.new('Modified_Time')
2308
+ def self.Modified_time
2309
+ @@Modified_time
2310
+ end
2311
+ @@Venue = Field.new('Venue')
2312
+ def self.Venue
2313
+ @@Venue
2314
+ end
2315
+ @@ZIP_code = Field.new('ZIP_Code')
2316
+ def self.ZIP_code
2317
+ @@ZIP_code
2318
+ end
2319
+ @@Created_time = Field.new('Created_Time')
2320
+ def self.Created_time
2321
+ @@Created_time
2322
+ end
2323
+ @@Longitude = Field.new('Longitude')
2324
+ def self.Longitude
2325
+ @@Longitude
2326
+ end
2327
+ @@Record_status__s = Field.new('Record_Status__s')
2328
+ def self.Record_status__s
2329
+ @@Record_status__s
2330
+ end
2331
+ @@Check_in_time = Field.new('Check_In_Time')
2332
+ def self.Check_in_time
2333
+ @@Check_in_time
2334
+ end
2335
+ @@Recurring_activity = Field.new('Recurring_Activity')
2336
+ def self.Recurring_activity
2337
+ @@Recurring_activity
2338
+ end
2339
+ @@What_id = Field.new('What_Id')
2340
+ def self.What_id
2341
+ @@What_id
2342
+ end
2343
+ @@Check_in_sub_locality = Field.new('Check_In_Sub_Locality')
2344
+ def self.Check_in_sub_locality
2345
+ @@Check_in_sub_locality
2346
+ end
2347
+ @@Created_by = Field.new('Created_By')
2348
+ def self.Created_by
2349
+ @@Created_by
2350
+ end
2351
+ @@Tag = Field.new('Tag')
2352
+ def self.Tag
2353
+ @@Tag
2354
+ end
2355
+ end
2356
+
2357
+ class Purchase_Orders
2358
+ @@Owner = Field.new('Owner')
2359
+ def self.Owner
2360
+ @@Owner
2361
+ end
2362
+ @@Description = Field.new('Description')
2363
+ def self.Description
2364
+ @@Description
2365
+ end
2366
+ @@Discount = Field.new('Discount')
2367
+ def self.Discount
2368
+ @@Discount
2369
+ end
2370
+ @@Vendor_name = Field.new('Vendor_Name')
2371
+ def self.Vendor_name
2372
+ @@Vendor_name
2373
+ end
2374
+ @@Shipping_state = Field.new('Shipping_State')
2375
+ def self.Shipping_state
2376
+ @@Shipping_state
2377
+ end
2378
+ @@Tax = Field.new('Tax')
2379
+ def self.Tax
2380
+ @@Tax
2381
+ end
2382
+ @@PO_date = Field.new('PO_Date')
2383
+ def self.PO_date
2384
+ @@PO_date
2385
+ end
2386
+ @@Modified_by = Field.new('Modified_By')
2387
+ def self.Modified_by
2388
+ @@Modified_by
2389
+ end
2390
+ @@Exchange_rate = Field.new('Exchange_Rate')
2391
+ def self.Exchange_rate
2392
+ @@Exchange_rate
2393
+ end
2394
+ @@Billing_country = Field.new('Billing_Country')
2395
+ def self.Billing_country
2396
+ @@Billing_country
2397
+ end
2398
+ @@Currency = Field.new('Currency')
2399
+ def self.Currency
2400
+ @@Currency
2401
+ end
2402
+ @@Purchase_items = Field.new('Purchase_Items')
2403
+ def self.Purchase_items
2404
+ @@Purchase_items
2405
+ end
2406
+ @@Carrier = Field.new('Carrier')
2407
+ def self.Carrier
2408
+ @@Carrier
2409
+ end
2410
+ @@id = Field.new('id')
2411
+ def self.id
2412
+ @@id
2413
+ end
2414
+ @@Status = Field.new('Status')
2415
+ def self.Status
2416
+ @@Status
2417
+ end
2418
+ @@Sales_commission = Field.new('Sales_Commission')
2419
+ def self.Sales_commission
2420
+ @@Sales_commission
2421
+ end
2422
+ @@Grand_total = Field.new('Grand_Total')
2423
+ def self.Grand_total
2424
+ @@Grand_total
2425
+ end
2426
+ @@Modified_time = Field.new('Modified_Time')
2427
+ def self.Modified_time
2428
+ @@Modified_time
2429
+ end
2430
+ @@PO_number = Field.new('PO_Number')
2431
+ def self.PO_number
2432
+ @@PO_number
2433
+ end
2434
+ @@Due_date = Field.new('Due_Date')
2435
+ def self.Due_date
2436
+ @@Due_date
2437
+ end
2438
+ @@Adjustment = Field.new('Adjustment')
2439
+ def self.Adjustment
2440
+ @@Adjustment
2441
+ end
2442
+ @@Billing_street = Field.new('Billing_Street')
2443
+ def self.Billing_street
2444
+ @@Billing_street
2445
+ end
2446
+ @@Created_time = Field.new('Created_Time')
2447
+ def self.Created_time
2448
+ @@Created_time
2449
+ end
2450
+ @@Terms_and_conditions = Field.new('Terms_and_Conditions')
2451
+ def self.Terms_and_conditions
2452
+ @@Terms_and_conditions
2453
+ end
2454
+ @@Sub_total = Field.new('Sub_Total')
2455
+ def self.Sub_total
2456
+ @@Sub_total
2457
+ end
2458
+ @@Billing_code = Field.new('Billing_Code')
2459
+ def self.Billing_code
2460
+ @@Billing_code
2461
+ end
2462
+ @@Record_status__s = Field.new('Record_Status__s')
2463
+ def self.Record_status__s
2464
+ @@Record_status__s
2465
+ end
2466
+ @@Subject = Field.new('Subject')
2467
+ def self.Subject
2468
+ @@Subject
2469
+ end
2470
+ @@Tracking_number = Field.new('Tracking_Number')
2471
+ def self.Tracking_number
2472
+ @@Tracking_number
2473
+ end
2474
+ @@Contact_name = Field.new('Contact_Name')
2475
+ def self.Contact_name
2476
+ @@Contact_name
2477
+ end
2478
+ @@Excise_duty = Field.new('Excise_Duty')
2479
+ def self.Excise_duty
2480
+ @@Excise_duty
2481
+ end
2482
+ @@Shipping_city = Field.new('Shipping_City')
2483
+ def self.Shipping_city
2484
+ @@Shipping_city
2485
+ end
2486
+ @@Shipping_country = Field.new('Shipping_Country')
2487
+ def self.Shipping_country
2488
+ @@Shipping_country
2489
+ end
2490
+ @@Shipping_code = Field.new('Shipping_Code')
2491
+ def self.Shipping_code
2492
+ @@Shipping_code
2493
+ end
2494
+ @@Billing_city = Field.new('Billing_City')
2495
+ def self.Billing_city
2496
+ @@Billing_city
2497
+ end
2498
+ @@Requisition_no = Field.new('Requisition_No')
2499
+ def self.Requisition_no
2500
+ @@Requisition_no
2501
+ end
2502
+ @@Locked__s = Field.new('Locked__s')
2503
+ def self.Locked__s
2504
+ @@Locked__s
2505
+ end
2506
+ @@Billing_state = Field.new('Billing_State')
2507
+ def self.Billing_state
2508
+ @@Billing_state
2509
+ end
2510
+ @@Created_by = Field.new('Created_By')
2511
+ def self.Created_by
2512
+ @@Created_by
2513
+ end
2514
+ @@Tag = Field.new('Tag')
2515
+ def self.Tag
2516
+ @@Tag
2517
+ end
2518
+ @@Shipping_street = Field.new('Shipping_Street')
2519
+ def self.Shipping_street
2520
+ @@Shipping_street
2521
+ end
2522
+ end
2523
+
2524
+ class Accounts
2525
+ @@Owner = Field.new('Owner')
2526
+ def self.Owner
2527
+ @@Owner
2528
+ end
2529
+ @@Ownership = Field.new('Ownership')
2530
+ def self.Ownership
2531
+ @@Ownership
2532
+ end
2533
+ @@Description = Field.new('Description')
2534
+ def self.Description
2535
+ @@Description
2536
+ end
2537
+ @@Account_type = Field.new('Account_Type')
2538
+ def self.Account_type
2539
+ @@Account_type
2540
+ end
2541
+ @@Rating = Field.new('Rating')
2542
+ def self.Rating
2543
+ @@Rating
2544
+ end
2545
+ @@SIC_code = Field.new('SIC_Code')
2546
+ def self.SIC_code
2547
+ @@SIC_code
2548
+ end
2549
+ @@Shipping_state = Field.new('Shipping_State')
2550
+ def self.Shipping_state
2551
+ @@Shipping_state
2552
+ end
2553
+ @@Website = Field.new('Website')
2554
+ def self.Website
2555
+ @@Website
2556
+ end
2557
+ @@Employees = Field.new('Employees')
2558
+ def self.Employees
2559
+ @@Employees
2560
+ end
2561
+ @@Last_activity_time = Field.new('Last_Activity_Time')
2562
+ def self.Last_activity_time
2563
+ @@Last_activity_time
2564
+ end
2565
+ @@Industry = Field.new('Industry')
2566
+ def self.Industry
2567
+ @@Industry
2568
+ end
2569
+ @@Record_image = Field.new('Record_Image')
2570
+ def self.Record_image
2571
+ @@Record_image
2572
+ end
2573
+ @@Modified_by = Field.new('Modified_By')
2574
+ def self.Modified_by
2575
+ @@Modified_by
2576
+ end
2577
+ @@Account_site = Field.new('Account_Site')
2578
+ def self.Account_site
2579
+ @@Account_site
2580
+ end
2581
+ @@Exchange_rate = Field.new('Exchange_Rate')
2582
+ def self.Exchange_rate
2583
+ @@Exchange_rate
2584
+ end
2585
+ @@Phone = Field.new('Phone')
2586
+ def self.Phone
2587
+ @@Phone
2588
+ end
2589
+ @@Billing_country = Field.new('Billing_Country')
2590
+ def self.Billing_country
2591
+ @@Billing_country
2592
+ end
2593
+ @@Currency = Field.new('Currency')
2594
+ def self.Currency
2595
+ @@Currency
2596
+ end
2597
+ @@Account_name = Field.new('Account_Name')
2598
+ def self.Account_name
2599
+ @@Account_name
2600
+ end
2601
+ @@id = Field.new('id')
2602
+ def self.id
2603
+ @@id
2604
+ end
2605
+ @@Account_number = Field.new('Account_Number')
2606
+ def self.Account_number
2607
+ @@Account_number
2608
+ end
2609
+ @@Ticker_symbol = Field.new('Ticker_Symbol')
2610
+ def self.Ticker_symbol
2611
+ @@Ticker_symbol
2612
+ end
2613
+ @@Modified_time = Field.new('Modified_Time')
2614
+ def self.Modified_time
2615
+ @@Modified_time
2616
+ end
2617
+ @@Billing_street = Field.new('Billing_Street')
2618
+ def self.Billing_street
2619
+ @@Billing_street
2620
+ end
2621
+ @@Enrich_status__s = Field.new('Enrich_Status__s')
2622
+ def self.Enrich_status__s
2623
+ @@Enrich_status__s
2624
+ end
2625
+ @@Created_time = Field.new('Created_Time')
2626
+ def self.Created_time
2627
+ @@Created_time
2628
+ end
2629
+ @@Change_log_time__s = Field.new('Change_Log_Time__s')
2630
+ def self.Change_log_time__s
2631
+ @@Change_log_time__s
2632
+ end
2633
+ @@Billing_code = Field.new('Billing_Code')
2634
+ def self.Billing_code
2635
+ @@Billing_code
2636
+ end
2637
+ @@Territories = Field.new('Territories')
2638
+ def self.Territories
2639
+ @@Territories
2640
+ end
2641
+ @@Record_status__s = Field.new('Record_Status__s')
2642
+ def self.Record_status__s
2643
+ @@Record_status__s
2644
+ end
2645
+ @@Parent_account = Field.new('Parent_Account')
2646
+ def self.Parent_account
2647
+ @@Parent_account
2648
+ end
2649
+ @@Shipping_city = Field.new('Shipping_City')
2650
+ def self.Shipping_city
2651
+ @@Shipping_city
2652
+ end
2653
+ @@Shipping_country = Field.new('Shipping_Country')
2654
+ def self.Shipping_country
2655
+ @@Shipping_country
2656
+ end
2657
+ @@Shipping_code = Field.new('Shipping_Code')
2658
+ def self.Shipping_code
2659
+ @@Shipping_code
2660
+ end
2661
+ @@Billing_city = Field.new('Billing_City')
2662
+ def self.Billing_city
2663
+ @@Billing_city
2664
+ end
2665
+ @@Locked__s = Field.new('Locked__s')
2666
+ def self.Locked__s
2667
+ @@Locked__s
2668
+ end
2669
+ @@Billing_state = Field.new('Billing_State')
2670
+ def self.Billing_state
2671
+ @@Billing_state
2672
+ end
2673
+ @@Created_by = Field.new('Created_By')
2674
+ def self.Created_by
2675
+ @@Created_by
2676
+ end
2677
+ @@Tag = Field.new('Tag')
2678
+ def self.Tag
2679
+ @@Tag
2680
+ end
2681
+ @@Fax = Field.new('Fax')
2682
+ def self.Fax
2683
+ @@Fax
2684
+ end
2685
+ @@Annual_revenue = Field.new('Annual_Revenue')
2686
+ def self.Annual_revenue
2687
+ @@Annual_revenue
2688
+ end
2689
+ @@Last_enriched_time__s = Field.new('Last_Enriched_Time__s')
2690
+ def self.Last_enriched_time__s
2691
+ @@Last_enriched_time__s
2692
+ end
2693
+ @@Shipping_street = Field.new('Shipping_Street')
2694
+ def self.Shipping_street
2695
+ @@Shipping_street
2696
+ end
2697
+ end
2698
+
2699
+ class Cases
2700
+ @@Owner = Field.new('Owner')
2701
+ def self.Owner
2702
+ @@Owner
2703
+ end
2704
+ @@Email = Field.new('Email')
2705
+ def self.Email
2706
+ @@Email
2707
+ end
2708
+ @@Description = Field.new('Description')
2709
+ def self.Description
2710
+ @@Description
2711
+ end
2712
+ @@Internal_comments = Field.new('Internal_Comments')
2713
+ def self.Internal_comments
2714
+ @@Internal_comments
2715
+ end
2716
+ @@No_of_comments = Field.new('No_of_comments')
2717
+ def self.No_of_comments
2718
+ @@No_of_comments
2719
+ end
2720
+ @@Reported_by = Field.new('Reported_By')
2721
+ def self.Reported_by
2722
+ @@Reported_by
2723
+ end
2724
+ @@Case_number = Field.new('Case_Number')
2725
+ def self.Case_number
2726
+ @@Case_number
2727
+ end
2728
+ @@Modified_by = Field.new('Modified_By')
2729
+ def self.Modified_by
2730
+ @@Modified_by
2731
+ end
2732
+ @@Deal_name = Field.new('Deal_Name')
2733
+ def self.Deal_name
2734
+ @@Deal_name
2735
+ end
2736
+ @@Phone = Field.new('Phone')
2737
+ def self.Phone
2738
+ @@Phone
2739
+ end
2740
+ @@Account_name = Field.new('Account_Name')
2741
+ def self.Account_name
2742
+ @@Account_name
2743
+ end
2744
+ @@id = Field.new('id')
2745
+ def self.id
2746
+ @@id
2747
+ end
2748
+ @@Solution = Field.new('Solution')
2749
+ def self.Solution
2750
+ @@Solution
2751
+ end
2752
+ @@Status = Field.new('Status')
2753
+ def self.Status
2754
+ @@Status
2755
+ end
2756
+ @@Modified_time = Field.new('Modified_Time')
2757
+ def self.Modified_time
2758
+ @@Modified_time
2759
+ end
2760
+ @@Priority = Field.new('Priority')
2761
+ def self.Priority
2762
+ @@Priority
2763
+ end
2764
+ @@Created_time = Field.new('Created_Time')
2765
+ def self.Created_time
2766
+ @@Created_time
2767
+ end
2768
+ @@Comments = Field.new('Comments')
2769
+ def self.Comments
2770
+ @@Comments
2771
+ end
2772
+ @@Product_name = Field.new('Product_Name')
2773
+ def self.Product_name
2774
+ @@Product_name
2775
+ end
2776
+ @@Add_comment = Field.new('Add_Comment')
2777
+ def self.Add_comment
2778
+ @@Add_comment
2779
+ end
2780
+ @@Case_origin = Field.new('Case_Origin')
2781
+ def self.Case_origin
2782
+ @@Case_origin
2783
+ end
2784
+ @@Record_status__s = Field.new('Record_Status__s')
2785
+ def self.Record_status__s
2786
+ @@Record_status__s
2787
+ end
2788
+ @@Case_reason = Field.new('Case_Reason')
2789
+ def self.Case_reason
2790
+ @@Case_reason
2791
+ end
2792
+ @@Subject = Field.new('Subject')
2793
+ def self.Subject
2794
+ @@Subject
2795
+ end
2796
+ @@Type = Field.new('Type')
2797
+ def self.Type
2798
+ @@Type
2799
+ end
2800
+ @@Locked__s = Field.new('Locked__s')
2801
+ def self.Locked__s
2802
+ @@Locked__s
2803
+ end
2804
+ @@Created_by = Field.new('Created_By')
2805
+ def self.Created_by
2806
+ @@Created_by
2807
+ end
2808
+ @@Tag = Field.new('Tag')
2809
+ def self.Tag
2810
+ @@Tag
2811
+ end
2812
+ @@Related_to = Field.new('Related_To')
2813
+ def self.Related_to
2814
+ @@Related_to
2815
+ end
2816
+ end
2817
+
2818
+ class Notes
2819
+ @@Owner = Field.new('Owner')
2820
+ def self.Owner
2821
+ @@Owner
2822
+ end
2823
+ @@Modified_by = Field.new('Modified_By')
2824
+ def self.Modified_by
2825
+ @@Modified_by
2826
+ end
2827
+ @@Modified_time = Field.new('Modified_Time')
2828
+ def self.Modified_time
2829
+ @@Modified_time
2830
+ end
2831
+ @@Created_time = Field.new('Created_Time')
2832
+ def self.Created_time
2833
+ @@Created_time
2834
+ end
2835
+ @@Parent_id = Field.new('Parent_Id')
2836
+ def self.Parent_id
2837
+ @@Parent_id
2838
+ end
2839
+ @@Associated_id__s = Field.new('Associated_Id__s')
2840
+ def self.Associated_id__s
2841
+ @@Associated_id__s
2842
+ end
2843
+ @@Created_by = Field.new('Created_By')
2844
+ def self.Created_by
2845
+ @@Created_by
2846
+ end
2847
+ @@id = Field.new('id')
2848
+ def self.id
2849
+ @@id
2850
+ end
2851
+ @@Note_title = Field.new('Note_Title')
2852
+ def self.Note_title
2853
+ @@Note_title
2854
+ end
2855
+ @@Note_content = Field.new('Note_Content')
2856
+ def self.Note_content
2857
+ @@Note_content
2858
+ end
2859
+ @@Record_status__s = Field.new('Record_Status__s')
2860
+ def self.Record_status__s
2861
+ @@Record_status__s
2862
+ end
2863
+ end
2864
+
2865
+ end
2866
+ end
2867
+ end