ZOHOCRMSDK6_0 1.0.0

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