ZOHOCRMSDK2_0_docgo 6.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (374) hide show
  1. checksums.yaml +7 -0
  2. data/src/ZOHOCRMSDK2_0_docgo.rb +370 -0
  3. data/src/com/zoho/api/authenticator/oauth_token.rb +285 -0
  4. data/src/com/zoho/api/authenticator/store/db_store.rb +194 -0
  5. data/src/com/zoho/api/authenticator/store/file_store.rb +238 -0
  6. data/src/com/zoho/api/authenticator/store/token_store.rb +35 -0
  7. data/src/com/zoho/api/authenticator/token.rb +12 -0
  8. data/src/com/zoho/api/logger/sdk_logger.rb +64 -0
  9. data/src/com/zoho/crm/api/attachments/action_handler.rb +12 -0
  10. data/src/com/zoho/crm/api/attachments/action_response.rb +12 -0
  11. data/src/com/zoho/crm/api/attachments/action_wrapper.rb +65 -0
  12. data/src/com/zoho/crm/api/attachments/api_exception.rb +127 -0
  13. data/src/com/zoho/crm/api/attachments/attachment.rb +369 -0
  14. data/src/com/zoho/crm/api/attachments/attachments_operations.rb +198 -0
  15. data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
  16. data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
  17. data/src/com/zoho/crm/api/attachments/response_wrapper.rb +85 -0
  18. data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
  19. data/src/com/zoho/crm/api/blue_print/action_response.rb +12 -0
  20. data/src/com/zoho/crm/api/blue_print/api_exception.rb +125 -0
  21. data/src/com/zoho/crm/api/blue_print/blue_print.rb +121 -0
  22. data/src/com/zoho/crm/api/blue_print/blue_print_operations.rb +69 -0
  23. data/src/com/zoho/crm/api/blue_print/body_wrapper.rb +63 -0
  24. data/src/com/zoho/crm/api/blue_print/next_transition.rb +82 -0
  25. data/src/com/zoho/crm/api/blue_print/process_info.rb +253 -0
  26. data/src/com/zoho/crm/api/blue_print/response_handler.rb +12 -0
  27. data/src/com/zoho/crm/api/blue_print/response_wrapper.rb +65 -0
  28. data/src/com/zoho/crm/api/blue_print/success_response.rb +123 -0
  29. data/src/com/zoho/crm/api/blue_print/transition.rb +255 -0
  30. data/src/com/zoho/crm/api/blue_print/validation_error.rb +82 -0
  31. data/src/com/zoho/crm/api/bulk_read/action_handler.rb +12 -0
  32. data/src/com/zoho/crm/api/bulk_read/action_response.rb +12 -0
  33. data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +84 -0
  34. data/src/com/zoho/crm/api/bulk_read/api_exception.rb +127 -0
  35. data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +76 -0
  36. data/src/com/zoho/crm/api/bulk_read/call_back.rb +83 -0
  37. data/src/com/zoho/crm/api/bulk_read/criteria.rb +137 -0
  38. data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
  39. data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
  40. data/src/com/zoho/crm/api/bulk_read/query.rb +139 -0
  41. data/src/com/zoho/crm/api/bulk_read/request_wrapper.rb +102 -0
  42. data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
  43. data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
  44. data/src/com/zoho/crm/api/bulk_read/result.rb +139 -0
  45. data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
  46. data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
  47. data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
  48. data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
  49. data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
  50. data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
  51. data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +158 -0
  52. data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
  53. data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
  54. data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +121 -0
  55. data/src/com/zoho/crm/api/bulk_write/resource.rb +197 -0
  56. data/src/com/zoho/crm/api/bulk_write/response_handler.rb +12 -0
  57. data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +12 -0
  58. data/src/com/zoho/crm/api/bulk_write/result.rb +63 -0
  59. data/src/com/zoho/crm/api/bulk_write/success_response.rb +123 -0
  60. data/src/com/zoho/crm/api/contact_roles/action_handler.rb +12 -0
  61. data/src/com/zoho/crm/api/contact_roles/action_response.rb +12 -0
  62. data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +65 -0
  63. data/src/com/zoho/crm/api/contact_roles/api_exception.rb +131 -0
  64. data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +63 -0
  65. data/src/com/zoho/crm/api/contact_roles/contact_role.rb +101 -0
  66. data/src/com/zoho/crm/api/contact_roles/contact_role_wrapper.rb +63 -0
  67. data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +270 -0
  68. data/src/com/zoho/crm/api/contact_roles/record_action_handler.rb +12 -0
  69. data/src/com/zoho/crm/api/contact_roles/record_action_wrapper.rb +65 -0
  70. data/src/com/zoho/crm/api/contact_roles/record_body_wrapper.rb +63 -0
  71. data/src/com/zoho/crm/api/contact_roles/record_response_handler.rb +12 -0
  72. data/src/com/zoho/crm/api/contact_roles/record_response_wrapper.rb +86 -0
  73. data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
  74. data/src/com/zoho/crm/api/contact_roles/response_wrapper.rb +65 -0
  75. data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
  76. data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
  77. data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
  78. data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
  79. data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
  80. data/src/com/zoho/crm/api/currencies/base_currency_action_handler.rb +12 -0
  81. data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +65 -0
  82. data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +63 -0
  83. data/src/com/zoho/crm/api/currencies/body_wrapper.rb +63 -0
  84. data/src/com/zoho/crm/api/currencies/currencies_operations.rb +151 -0
  85. data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
  86. data/src/com/zoho/crm/api/currencies/format.rb +102 -0
  87. data/src/com/zoho/crm/api/currencies/response_handler.rb +12 -0
  88. data/src/com/zoho/crm/api/currencies/response_wrapper.rb +65 -0
  89. data/src/com/zoho/crm/api/currencies/success_response.rb +123 -0
  90. data/src/com/zoho/crm/api/custom_views/api_exception.rb +123 -0
  91. data/src/com/zoho/crm/api/custom_views/criteria.rb +137 -0
  92. data/src/com/zoho/crm/api/custom_views/custom_view.rb +329 -0
  93. data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
  94. data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
  95. data/src/com/zoho/crm/api/custom_views/range.rb +82 -0
  96. data/src/com/zoho/crm/api/custom_views/response_handler.rb +12 -0
  97. data/src/com/zoho/crm/api/custom_views/response_wrapper.rb +84 -0
  98. data/src/com/zoho/crm/api/custom_views/shared_details.rb +120 -0
  99. data/src/com/zoho/crm/api/custom_views/translation.rb +120 -0
  100. data/src/com/zoho/crm/api/dc/au_datacenter.rb +21 -0
  101. data/src/com/zoho/crm/api/dc/cn_datacenter.rb +21 -0
  102. data/src/com/zoho/crm/api/dc/datacenter.rb +23 -0
  103. data/src/com/zoho/crm/api/dc/eu_datacenter.rb +21 -0
  104. data/src/com/zoho/crm/api/dc/in_datacenter.rb +21 -0
  105. data/src/com/zoho/crm/api/dc/jp_datacenter.rb +21 -0
  106. data/src/com/zoho/crm/api/dc/us_datacenter.rb +21 -0
  107. data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
  108. data/src/com/zoho/crm/api/fields/api_exception.rb +123 -0
  109. data/src/com/zoho/crm/api/fields/association_details.rb +82 -0
  110. data/src/com/zoho/crm/api/fields/auto_number.rb +101 -0
  111. data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
  112. data/src/com/zoho/crm/api/fields/currency.rb +82 -0
  113. data/src/com/zoho/crm/api/fields/field.rb +958 -0
  114. data/src/com/zoho/crm/api/fields/fields_operations.rb +71 -0
  115. data/src/com/zoho/crm/api/fields/formula.rb +82 -0
  116. data/src/com/zoho/crm/api/fields/lookup_field.rb +82 -0
  117. data/src/com/zoho/crm/api/fields/module.rb +159 -0
  118. data/src/com/zoho/crm/api/fields/multi_select_lookup.rb +158 -0
  119. data/src/com/zoho/crm/api/fields/pick_list_value.rb +177 -0
  120. data/src/com/zoho/crm/api/fields/private.rb +101 -0
  121. data/src/com/zoho/crm/api/fields/related_details.rb +139 -0
  122. data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
  123. data/src/com/zoho/crm/api/fields/response_wrapper.rb +65 -0
  124. data/src/com/zoho/crm/api/fields/tool_tip.rb +82 -0
  125. data/src/com/zoho/crm/api/fields/unique.rb +63 -0
  126. data/src/com/zoho/crm/api/fields/view_type.rb +120 -0
  127. data/src/com/zoho/crm/api/files/action_handler.rb +12 -0
  128. data/src/com/zoho/crm/api/files/action_response.rb +12 -0
  129. data/src/com/zoho/crm/api/files/action_wrapper.rb +65 -0
  130. data/src/com/zoho/crm/api/files/api_exception.rb +127 -0
  131. data/src/com/zoho/crm/api/files/body_wrapper.rb +64 -0
  132. data/src/com/zoho/crm/api/files/file_body_wrapper.rb +66 -0
  133. data/src/com/zoho/crm/api/files/file_operations.rb +75 -0
  134. data/src/com/zoho/crm/api/files/response_handler.rb +12 -0
  135. data/src/com/zoho/crm/api/files/success_response.rb +123 -0
  136. data/src/com/zoho/crm/api/header.rb +12 -0
  137. data/src/com/zoho/crm/api/header_map.rb +57 -0
  138. data/src/com/zoho/crm/api/initializer.rb +255 -0
  139. data/src/com/zoho/crm/api/layouts/api_exception.rb +123 -0
  140. data/src/com/zoho/crm/api/layouts/layout.rb +274 -0
  141. data/src/com/zoho/crm/api/layouts/layouts_operations.rb +61 -0
  142. data/src/com/zoho/crm/api/layouts/properties.rb +102 -0
  143. data/src/com/zoho/crm/api/layouts/response_handler.rb +12 -0
  144. data/src/com/zoho/crm/api/layouts/response_wrapper.rb +65 -0
  145. data/src/com/zoho/crm/api/layouts/section.rb +235 -0
  146. data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
  147. data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
  148. data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
  149. data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
  150. data/src/com/zoho/crm/api/modules/argument.rb +82 -0
  151. data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
  152. data/src/com/zoho/crm/api/modules/module.rb +884 -0
  153. data/src/com/zoho/crm/api/modules/modules_operations.rb +109 -0
  154. data/src/com/zoho/crm/api/modules/related_list_properties.rb +101 -0
  155. data/src/com/zoho/crm/api/modules/response_handler.rb +12 -0
  156. data/src/com/zoho/crm/api/modules/response_wrapper.rb +65 -0
  157. data/src/com/zoho/crm/api/modules/success_response.rb +123 -0
  158. data/src/com/zoho/crm/api/modules/territory.rb +101 -0
  159. data/src/com/zoho/crm/api/notes/action_handler.rb +12 -0
  160. data/src/com/zoho/crm/api/notes/action_response.rb +12 -0
  161. data/src/com/zoho/crm/api/notes/action_wrapper.rb +65 -0
  162. data/src/com/zoho/crm/api/notes/api_exception.rb +127 -0
  163. data/src/com/zoho/crm/api/notes/body_wrapper.rb +63 -0
  164. data/src/com/zoho/crm/api/notes/info.rb +120 -0
  165. data/src/com/zoho/crm/api/notes/note.rb +351 -0
  166. data/src/com/zoho/crm/api/notes/notes_operations.rb +214 -0
  167. data/src/com/zoho/crm/api/notes/response_handler.rb +12 -0
  168. data/src/com/zoho/crm/api/notes/response_wrapper.rb +84 -0
  169. data/src/com/zoho/crm/api/notes/success_response.rb +123 -0
  170. data/src/com/zoho/crm/api/notification/action_handler.rb +12 -0
  171. data/src/com/zoho/crm/api/notification/action_response.rb +12 -0
  172. data/src/com/zoho/crm/api/notification/action_wrapper.rb +65 -0
  173. data/src/com/zoho/crm/api/notification/api_exception.rb +127 -0
  174. data/src/com/zoho/crm/api/notification/body_wrapper.rb +63 -0
  175. data/src/com/zoho/crm/api/notification/info.rb +120 -0
  176. data/src/com/zoho/crm/api/notification/notification.rb +253 -0
  177. data/src/com/zoho/crm/api/notification/notification_operations.rb +160 -0
  178. data/src/com/zoho/crm/api/notification/response_handler.rb +12 -0
  179. data/src/com/zoho/crm/api/notification/response_wrapper.rb +84 -0
  180. data/src/com/zoho/crm/api/notification/success_response.rb +123 -0
  181. data/src/com/zoho/crm/api/org/action_response.rb +12 -0
  182. data/src/com/zoho/crm/api/org/api_exception.rb +125 -0
  183. data/src/com/zoho/crm/api/org/file_body_wrapper.rb +64 -0
  184. data/src/com/zoho/crm/api/org/license_details.rb +158 -0
  185. data/src/com/zoho/crm/api/org/org.rb +633 -0
  186. data/src/com/zoho/crm/api/org/org_operations.rb +49 -0
  187. data/src/com/zoho/crm/api/org/response_handler.rb +12 -0
  188. data/src/com/zoho/crm/api/org/response_wrapper.rb +65 -0
  189. data/src/com/zoho/crm/api/org/success_response.rb +123 -0
  190. data/src/com/zoho/crm/api/param.rb +12 -0
  191. data/src/com/zoho/crm/api/parameter_map.rb +56 -0
  192. data/src/com/zoho/crm/api/profiles/api_exception.rb +123 -0
  193. data/src/com/zoho/crm/api/profiles/category.rb +101 -0
  194. data/src/com/zoho/crm/api/profiles/permission_detail.rb +139 -0
  195. data/src/com/zoho/crm/api/profiles/profile.rb +292 -0
  196. data/src/com/zoho/crm/api/profiles/profiles_operations.rb +61 -0
  197. data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
  198. data/src/com/zoho/crm/api/profiles/response_wrapper.rb +65 -0
  199. data/src/com/zoho/crm/api/profiles/section.rb +82 -0
  200. data/src/com/zoho/crm/api/query/api_exception.rb +123 -0
  201. data/src/com/zoho/crm/api/query/body_wrapper.rb +63 -0
  202. data/src/com/zoho/crm/api/query/query_operations.rb +36 -0
  203. data/src/com/zoho/crm/api/query/response_handler.rb +12 -0
  204. data/src/com/zoho/crm/api/query/response_wrapper.rb +86 -0
  205. data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
  206. data/src/com/zoho/crm/api/record/action_response.rb +12 -0
  207. data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
  208. data/src/com/zoho/crm/api/record/api_exception.rb +145 -0
  209. data/src/com/zoho/crm/api/record/apply_feature_execution.rb +63 -0
  210. data/src/com/zoho/crm/api/record/body_wrapper.rb +177 -0
  211. data/src/com/zoho/crm/api/record/carry_over_tags.rb +101 -0
  212. data/src/com/zoho/crm/api/record/comment.rb +120 -0
  213. data/src/com/zoho/crm/api/record/consent.rb +187 -0
  214. data/src/com/zoho/crm/api/record/convert_action_handler.rb +12 -0
  215. data/src/com/zoho/crm/api/record/convert_action_response.rb +12 -0
  216. data/src/com/zoho/crm/api/record/convert_action_wrapper.rb +65 -0
  217. data/src/com/zoho/crm/api/record/convert_body_wrapper.rb +63 -0
  218. data/src/com/zoho/crm/api/record/criteria.rb +137 -0
  219. data/src/com/zoho/crm/api/record/deleted_record.rb +159 -0
  220. data/src/com/zoho/crm/api/record/deleted_records_handler.rb +12 -0
  221. data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +84 -0
  222. data/src/com/zoho/crm/api/record/download_handler.rb +12 -0
  223. data/src/com/zoho/crm/api/record/field.rb +2111 -0
  224. data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
  225. data/src/com/zoho/crm/api/record/file_details.rb +329 -0
  226. data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
  227. data/src/com/zoho/crm/api/record/info.rb +120 -0
  228. data/src/com/zoho/crm/api/record/inventory_line_items.rb +237 -0
  229. data/src/com/zoho/crm/api/record/lead_converter.rb +196 -0
  230. data/src/com/zoho/crm/api/record/line_item_product.rb +67 -0
  231. data/src/com/zoho/crm/api/record/line_tax.rb +120 -0
  232. data/src/com/zoho/crm/api/record/mass_update.rb +142 -0
  233. data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +12 -0
  234. data/src/com/zoho/crm/api/record/mass_update_action_response.rb +12 -0
  235. data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +65 -0
  236. data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +158 -0
  237. data/src/com/zoho/crm/api/record/mass_update_response.rb +12 -0
  238. data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +12 -0
  239. data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +65 -0
  240. data/src/com/zoho/crm/api/record/mass_update_success_response.rb +123 -0
  241. data/src/com/zoho/crm/api/record/options.rb +12 -0
  242. data/src/com/zoho/crm/api/record/participants.rb +118 -0
  243. data/src/com/zoho/crm/api/record/pricing_details.rb +67 -0
  244. data/src/com/zoho/crm/api/record/record.rb +194 -0
  245. data/src/com/zoho/crm/api/record/record_operations.rb +961 -0
  246. data/src/com/zoho/crm/api/record/recurring_activity.rb +63 -0
  247. data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
  248. data/src/com/zoho/crm/api/record/reminder.rb +82 -0
  249. data/src/com/zoho/crm/api/record/response_handler.rb +12 -0
  250. data/src/com/zoho/crm/api/record/response_wrapper.rb +84 -0
  251. data/src/com/zoho/crm/api/record/success_response.rb +163 -0
  252. data/src/com/zoho/crm/api/record/successful_convert.rb +103 -0
  253. data/src/com/zoho/crm/api/record/territory.rb +82 -0
  254. data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
  255. data/src/com/zoho/crm/api/related_lists/related_list.rb +253 -0
  256. data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +61 -0
  257. data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
  258. data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
  259. data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
  260. data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
  261. data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
  262. data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
  263. data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
  264. data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
  265. data/src/com/zoho/crm/api/related_records/related_records_operations.rb +524 -0
  266. data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
  267. data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
  268. data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
  269. data/src/com/zoho/crm/api/request_proxy.rb +17 -0
  270. data/src/com/zoho/crm/api/roles/api_exception.rb +123 -0
  271. data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
  272. data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
  273. data/src/com/zoho/crm/api/roles/role.rb +197 -0
  274. data/src/com/zoho/crm/api/roles/roles_operations.rb +47 -0
  275. data/src/com/zoho/crm/api/sdk_config.rb +15 -0
  276. data/src/com/zoho/crm/api/share_records/action_handler.rb +12 -0
  277. data/src/com/zoho/crm/api/share_records/action_response.rb +12 -0
  278. data/src/com/zoho/crm/api/share_records/action_wrapper.rb +65 -0
  279. data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
  280. data/src/com/zoho/crm/api/share_records/body_wrapper.rb +63 -0
  281. data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +12 -0
  282. data/src/com/zoho/crm/api/share_records/delete_action_response.rb +12 -0
  283. data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +65 -0
  284. data/src/com/zoho/crm/api/share_records/response_handler.rb +12 -0
  285. data/src/com/zoho/crm/api/share_records/response_wrapper.rb +85 -0
  286. data/src/com/zoho/crm/api/share_records/share_record.rb +159 -0
  287. data/src/com/zoho/crm/api/share_records/share_records_operations.rb +130 -0
  288. data/src/com/zoho/crm/api/share_records/shared_through.rb +102 -0
  289. data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
  290. data/src/com/zoho/crm/api/tags/action_handler.rb +12 -0
  291. data/src/com/zoho/crm/api/tags/action_response.rb +12 -0
  292. data/src/com/zoho/crm/api/tags/action_wrapper.rb +65 -0
  293. data/src/com/zoho/crm/api/tags/api_exception.rb +133 -0
  294. data/src/com/zoho/crm/api/tags/body_wrapper.rb +63 -0
  295. data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +63 -0
  296. data/src/com/zoho/crm/api/tags/count_handler.rb +12 -0
  297. data/src/com/zoho/crm/api/tags/count_wrapper.rb +65 -0
  298. data/src/com/zoho/crm/api/tags/info.rb +82 -0
  299. data/src/com/zoho/crm/api/tags/merge_wrapper.rb +63 -0
  300. data/src/com/zoho/crm/api/tags/record_action_handler.rb +12 -0
  301. data/src/com/zoho/crm/api/tags/record_action_response.rb +12 -0
  302. data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +122 -0
  303. data/src/com/zoho/crm/api/tags/response_handler.rb +12 -0
  304. data/src/com/zoho/crm/api/tags/response_wrapper.rb +84 -0
  305. data/src/com/zoho/crm/api/tags/success_response.rb +125 -0
  306. data/src/com/zoho/crm/api/tags/tag.rb +159 -0
  307. data/src/com/zoho/crm/api/tags/tags_operations.rb +382 -0
  308. data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
  309. data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
  310. data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
  311. data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
  312. data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
  313. data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
  314. data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
  315. data/src/com/zoho/crm/api/taxes/response_wrapper.rb +84 -0
  316. data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
  317. data/src/com/zoho/crm/api/taxes/tax.rb +139 -0
  318. data/src/com/zoho/crm/api/taxes/taxes_operations.rb +132 -0
  319. data/src/com/zoho/crm/api/territories/api_exception.rb +123 -0
  320. data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
  321. data/src/com/zoho/crm/api/territories/response_wrapper.rb +65 -0
  322. data/src/com/zoho/crm/api/territories/territories_operations.rb +47 -0
  323. data/src/com/zoho/crm/api/territories/territory.rb +236 -0
  324. data/src/com/zoho/crm/api/user_signature.rb +29 -0
  325. data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
  326. data/src/com/zoho/crm/api/users/action_response.rb +12 -0
  327. data/src/com/zoho/crm/api/users/action_wrapper.rb +65 -0
  328. data/src/com/zoho/crm/api/users/api_exception.rb +127 -0
  329. data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
  330. data/src/com/zoho/crm/api/users/customize_info.rb +158 -0
  331. data/src/com/zoho/crm/api/users/info.rb +120 -0
  332. data/src/com/zoho/crm/api/users/request_wrapper.rb +63 -0
  333. data/src/com/zoho/crm/api/users/response_handler.rb +12 -0
  334. data/src/com/zoho/crm/api/users/response_wrapper.rb +84 -0
  335. data/src/com/zoho/crm/api/users/shift.rb +82 -0
  336. data/src/com/zoho/crm/api/users/success_response.rb +123 -0
  337. data/src/com/zoho/crm/api/users/tab_theme.rb +82 -0
  338. data/src/com/zoho/crm/api/users/territory.rb +101 -0
  339. data/src/com/zoho/crm/api/users/theme.rb +158 -0
  340. data/src/com/zoho/crm/api/users/user.rb +698 -0
  341. data/src/com/zoho/crm/api/users/users_operations.rb +177 -0
  342. data/src/com/zoho/crm/api/util/api_http_connector.rb +114 -0
  343. data/src/com/zoho/crm/api/util/api_response.rb +18 -0
  344. data/src/com/zoho/crm/api/util/choice.rb +11 -0
  345. data/src/com/zoho/crm/api/util/common_api_handler.rb +241 -0
  346. data/src/com/zoho/crm/api/util/constants.rb +646 -0
  347. data/src/com/zoho/crm/api/util/converter.rb +238 -0
  348. data/src/com/zoho/crm/api/util/data_type_converter.rb +170 -0
  349. data/src/com/zoho/crm/api/util/downloader.rb +86 -0
  350. data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
  351. data/src/com/zoho/crm/api/util/header_param_validator.rb +57 -0
  352. data/src/com/zoho/crm/api/util/json_converter.rb +729 -0
  353. data/src/com/zoho/crm/api/util/model.rb +7 -0
  354. data/src/com/zoho/crm/api/util/module_fields_handler.rb +80 -0
  355. data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
  356. data/src/com/zoho/crm/api/util/utility.rb +871 -0
  357. data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
  358. data/src/com/zoho/crm/api/variable_groups/response_handler.rb +12 -0
  359. data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +65 -0
  360. data/src/com/zoho/crm/api/variable_groups/variable_group.rb +139 -0
  361. data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +65 -0
  362. data/src/com/zoho/crm/api/variables/action_handler.rb +12 -0
  363. data/src/com/zoho/crm/api/variables/action_response.rb +12 -0
  364. data/src/com/zoho/crm/api/variables/action_wrapper.rb +65 -0
  365. data/src/com/zoho/crm/api/variables/api_exception.rb +127 -0
  366. data/src/com/zoho/crm/api/variables/body_wrapper.rb +63 -0
  367. data/src/com/zoho/crm/api/variables/response_handler.rb +12 -0
  368. data/src/com/zoho/crm/api/variables/response_wrapper.rb +65 -0
  369. data/src/com/zoho/crm/api/variables/success_response.rb +123 -0
  370. data/src/com/zoho/crm/api/variables/variable.rb +175 -0
  371. data/src/com/zoho/crm/api/variables/variables_operations.rb +234 -0
  372. data/src/resources/JSONDetails.json +1 -0
  373. data/src/version.rb +3 -0
  374. metadata +500 -0
@@ -0,0 +1,884 @@
1
+ require_relative '../custom_views/custom_view'
2
+ require_relative '../profiles/profile'
3
+ require_relative '../users/user'
4
+ require_relative '../util/choice'
5
+ require_relative '../util/model'
6
+
7
+ module ZOHOCRMSDK
8
+ module Modules
9
+ class Module
10
+ include Util::Model
11
+
12
+ # Creates an instance of Module
13
+ def initialize
14
+ @name = nil
15
+ @global_search_supported = nil
16
+ @kanban_view = nil
17
+ @deletable = nil
18
+ @description = nil
19
+ @creatable = nil
20
+ @filter_status = nil
21
+ @inventory_template_supported = nil
22
+ @modified_time = nil
23
+ @plural_label = nil
24
+ @presence_sub_menu = nil
25
+ @triggers_supported = nil
26
+ @id = nil
27
+ @related_list_properties = nil
28
+ @properties = nil
29
+ @per_page = nil
30
+ @visibility = nil
31
+ @convertable = nil
32
+ @editable = nil
33
+ @emailtemplate_support = nil
34
+ @profiles = nil
35
+ @filter_supported = nil
36
+ @display_field = nil
37
+ @search_layout_fields = nil
38
+ @kanban_view_supported = nil
39
+ @show_as_tab = nil
40
+ @web_link = nil
41
+ @sequence_number = nil
42
+ @singular_label = nil
43
+ @viewable = nil
44
+ @api_supported = nil
45
+ @api_name = nil
46
+ @quick_create = nil
47
+ @modified_by = nil
48
+ @generated_type = nil
49
+ @feeds_required = nil
50
+ @scoring_supported = nil
51
+ @webform_supported = nil
52
+ @arguments = nil
53
+ @module_name = nil
54
+ @business_card_field_limit = nil
55
+ @custom_view = nil
56
+ @parent_module = nil
57
+ @territory = nil
58
+ @key_modified = Hash.new
59
+ end
60
+
61
+ # The method to get the name
62
+ # @return A String value
63
+
64
+ def name
65
+ @name
66
+ end
67
+
68
+ # The method to set the value to name
69
+ # @param name [String] A String
70
+
71
+ def name=(name)
72
+ if name!=nil and !name.is_a? String
73
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: name EXPECTED TYPE: String', nil, nil)
74
+ end
75
+ @name = name
76
+ @key_modified['name'] = 1
77
+ end
78
+
79
+ # The method to get the global_search_supported
80
+ # @return A Boolean value
81
+
82
+ def global_search_supported
83
+ @global_search_supported
84
+ end
85
+
86
+ # The method to set the value to global_search_supported
87
+ # @param global_search_supported [Boolean] A Boolean
88
+
89
+ def global_search_supported=(global_search_supported)
90
+ if global_search_supported!=nil and ! [true, false].include?global_search_supported
91
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: global_search_supported EXPECTED TYPE: Boolean', nil, nil)
92
+ end
93
+ @global_search_supported = global_search_supported
94
+ @key_modified['global_search_supported'] = 1
95
+ end
96
+
97
+ # The method to get the kanban_view
98
+ # @return A Boolean value
99
+
100
+ def kanban_view
101
+ @kanban_view
102
+ end
103
+
104
+ # The method to set the value to kanban_view
105
+ # @param kanban_view [Boolean] A Boolean
106
+
107
+ def kanban_view=(kanban_view)
108
+ if kanban_view!=nil and ! [true, false].include?kanban_view
109
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: kanban_view EXPECTED TYPE: Boolean', nil, nil)
110
+ end
111
+ @kanban_view = kanban_view
112
+ @key_modified['kanban_view'] = 1
113
+ end
114
+
115
+ # The method to get the deletable
116
+ # @return A Boolean value
117
+
118
+ def deletable
119
+ @deletable
120
+ end
121
+
122
+ # The method to set the value to deletable
123
+ # @param deletable [Boolean] A Boolean
124
+
125
+ def deletable=(deletable)
126
+ if deletable!=nil and ! [true, false].include?deletable
127
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: deletable EXPECTED TYPE: Boolean', nil, nil)
128
+ end
129
+ @deletable = deletable
130
+ @key_modified['deletable'] = 1
131
+ end
132
+
133
+ # The method to get the description
134
+ # @return A String value
135
+
136
+ def description
137
+ @description
138
+ end
139
+
140
+ # The method to set the value to description
141
+ # @param description [String] A String
142
+
143
+ def description=(description)
144
+ if description!=nil and !description.is_a? String
145
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: description EXPECTED TYPE: String', nil, nil)
146
+ end
147
+ @description = description
148
+ @key_modified['description'] = 1
149
+ end
150
+
151
+ # The method to get the creatable
152
+ # @return A Boolean value
153
+
154
+ def creatable
155
+ @creatable
156
+ end
157
+
158
+ # The method to set the value to creatable
159
+ # @param creatable [Boolean] A Boolean
160
+
161
+ def creatable=(creatable)
162
+ if creatable!=nil and ! [true, false].include?creatable
163
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: creatable EXPECTED TYPE: Boolean', nil, nil)
164
+ end
165
+ @creatable = creatable
166
+ @key_modified['creatable'] = 1
167
+ end
168
+
169
+ # The method to get the filter_status
170
+ # @return A Boolean value
171
+
172
+ def filter_status
173
+ @filter_status
174
+ end
175
+
176
+ # The method to set the value to filter_status
177
+ # @param filter_status [Boolean] A Boolean
178
+
179
+ def filter_status=(filter_status)
180
+ if filter_status!=nil and ! [true, false].include?filter_status
181
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filter_status EXPECTED TYPE: Boolean', nil, nil)
182
+ end
183
+ @filter_status = filter_status
184
+ @key_modified['filter_status'] = 1
185
+ end
186
+
187
+ # The method to get the inventory_template_supported
188
+ # @return A Boolean value
189
+
190
+ def inventory_template_supported
191
+ @inventory_template_supported
192
+ end
193
+
194
+ # The method to set the value to inventory_template_supported
195
+ # @param inventory_template_supported [Boolean] A Boolean
196
+
197
+ def inventory_template_supported=(inventory_template_supported)
198
+ if inventory_template_supported!=nil and ! [true, false].include?inventory_template_supported
199
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: inventory_template_supported EXPECTED TYPE: Boolean', nil, nil)
200
+ end
201
+ @inventory_template_supported = inventory_template_supported
202
+ @key_modified['inventory_template_supported'] = 1
203
+ end
204
+
205
+ # The method to get the modified_time
206
+ # @return An instance of DateTime
207
+
208
+ def modified_time
209
+ @modified_time
210
+ end
211
+
212
+ # The method to set the value to modified_time
213
+ # @param modified_time [DateTime] An instance of DateTime
214
+
215
+ def modified_time=(modified_time)
216
+ if modified_time!=nil and !modified_time.is_a? DateTime
217
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_time EXPECTED TYPE: DateTime', nil, nil)
218
+ end
219
+ @modified_time = modified_time
220
+ @key_modified['modified_time'] = 1
221
+ end
222
+
223
+ # The method to get the plural_label
224
+ # @return A String value
225
+
226
+ def plural_label
227
+ @plural_label
228
+ end
229
+
230
+ # The method to set the value to plural_label
231
+ # @param plural_label [String] A String
232
+
233
+ def plural_label=(plural_label)
234
+ if plural_label!=nil and !plural_label.is_a? String
235
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: plural_label EXPECTED TYPE: String', nil, nil)
236
+ end
237
+ @plural_label = plural_label
238
+ @key_modified['plural_label'] = 1
239
+ end
240
+
241
+ # The method to get the presence_sub_menu
242
+ # @return A Boolean value
243
+
244
+ def presence_sub_menu
245
+ @presence_sub_menu
246
+ end
247
+
248
+ # The method to set the value to presence_sub_menu
249
+ # @param presence_sub_menu [Boolean] A Boolean
250
+
251
+ def presence_sub_menu=(presence_sub_menu)
252
+ if presence_sub_menu!=nil and ! [true, false].include?presence_sub_menu
253
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: presence_sub_menu EXPECTED TYPE: Boolean', nil, nil)
254
+ end
255
+ @presence_sub_menu = presence_sub_menu
256
+ @key_modified['presence_sub_menu'] = 1
257
+ end
258
+
259
+ # The method to get the triggers_supported
260
+ # @return A Boolean value
261
+
262
+ def triggers_supported
263
+ @triggers_supported
264
+ end
265
+
266
+ # The method to set the value to triggers_supported
267
+ # @param triggers_supported [Boolean] A Boolean
268
+
269
+ def triggers_supported=(triggers_supported)
270
+ if triggers_supported!=nil and ! [true, false].include?triggers_supported
271
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: triggers_supported EXPECTED TYPE: Boolean', nil, nil)
272
+ end
273
+ @triggers_supported = triggers_supported
274
+ @key_modified['triggers_supported'] = 1
275
+ end
276
+
277
+ # The method to get the id
278
+ # @return A Integer value
279
+
280
+ def id
281
+ @id
282
+ end
283
+
284
+ # The method to set the value to id
285
+ # @param id [Integer] A Integer
286
+
287
+ def id=(id)
288
+ if id!=nil and !id.is_a? Integer
289
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
290
+ end
291
+ @id = id
292
+ @key_modified['id'] = 1
293
+ end
294
+
295
+ # The method to get the related_list_properties
296
+ # @return An instance of RelatedListProperties
297
+
298
+ def related_list_properties
299
+ @related_list_properties
300
+ end
301
+
302
+ # The method to set the value to related_list_properties
303
+ # @param related_list_properties [RelatedListProperties] An instance of RelatedListProperties
304
+
305
+ def related_list_properties=(related_list_properties)
306
+ if related_list_properties!=nil and !related_list_properties.is_a? RelatedListProperties
307
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: related_list_properties EXPECTED TYPE: RelatedListProperties', nil, nil)
308
+ end
309
+ @related_list_properties = related_list_properties
310
+ @key_modified['related_list_properties'] = 1
311
+ end
312
+
313
+ # The method to get the properties
314
+ # @return An instance of Array
315
+
316
+ def properties
317
+ @properties
318
+ end
319
+
320
+ # The method to set the value to properties
321
+ # @param properties [Array] An instance of Array
322
+
323
+ def properties=(properties)
324
+ if properties!=nil and !properties.is_a? Array
325
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: properties EXPECTED TYPE: Array', nil, nil)
326
+ end
327
+ @properties = properties
328
+ @key_modified['$properties'] = 1
329
+ end
330
+
331
+ # The method to get the per_page
332
+ # @return A Integer value
333
+
334
+ def per_page
335
+ @per_page
336
+ end
337
+
338
+ # The method to set the value to per_page
339
+ # @param per_page [Integer] A Integer
340
+
341
+ def per_page=(per_page)
342
+ if per_page!=nil and !per_page.is_a? Integer
343
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: per_page EXPECTED TYPE: Integer', nil, nil)
344
+ end
345
+ @per_page = per_page
346
+ @key_modified['per_page'] = 1
347
+ end
348
+
349
+ # The method to get the visibility
350
+ # @return A Integer value
351
+
352
+ def visibility
353
+ @visibility
354
+ end
355
+
356
+ # The method to set the value to visibility
357
+ # @param visibility [Integer] A Integer
358
+
359
+ def visibility=(visibility)
360
+ if visibility!=nil and !visibility.is_a? Integer
361
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visibility EXPECTED TYPE: Integer', nil, nil)
362
+ end
363
+ @visibility = visibility
364
+ @key_modified['visibility'] = 1
365
+ end
366
+
367
+ # The method to get the convertable
368
+ # @return A Boolean value
369
+
370
+ def convertable
371
+ @convertable
372
+ end
373
+
374
+ # The method to set the value to convertable
375
+ # @param convertable [Boolean] A Boolean
376
+
377
+ def convertable=(convertable)
378
+ if convertable!=nil and ! [true, false].include?convertable
379
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: convertable EXPECTED TYPE: Boolean', nil, nil)
380
+ end
381
+ @convertable = convertable
382
+ @key_modified['convertable'] = 1
383
+ end
384
+
385
+ # The method to get the editable
386
+ # @return A Boolean value
387
+
388
+ def editable
389
+ @editable
390
+ end
391
+
392
+ # The method to set the value to editable
393
+ # @param editable [Boolean] A Boolean
394
+
395
+ def editable=(editable)
396
+ if editable!=nil and ! [true, false].include?editable
397
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: editable EXPECTED TYPE: Boolean', nil, nil)
398
+ end
399
+ @editable = editable
400
+ @key_modified['editable'] = 1
401
+ end
402
+
403
+ # The method to get the emailtemplate_support
404
+ # @return A Boolean value
405
+
406
+ def emailtemplate_support
407
+ @emailtemplate_support
408
+ end
409
+
410
+ # The method to set the value to emailtemplate_support
411
+ # @param emailtemplate_support [Boolean] A Boolean
412
+
413
+ def emailtemplate_support=(emailtemplate_support)
414
+ if emailtemplate_support!=nil and ! [true, false].include?emailtemplate_support
415
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: emailtemplate_support EXPECTED TYPE: Boolean', nil, nil)
416
+ end
417
+ @emailtemplate_support = emailtemplate_support
418
+ @key_modified['emailTemplate_support'] = 1
419
+ end
420
+
421
+ # The method to get the profiles
422
+ # @return An instance of Array
423
+
424
+ def profiles
425
+ @profiles
426
+ end
427
+
428
+ # The method to set the value to profiles
429
+ # @param profiles [Array] An instance of Array
430
+
431
+ def profiles=(profiles)
432
+ if profiles!=nil and !profiles.is_a? Array
433
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: profiles EXPECTED TYPE: Array', nil, nil)
434
+ end
435
+ @profiles = profiles
436
+ @key_modified['profiles'] = 1
437
+ end
438
+
439
+ # The method to get the filter_supported
440
+ # @return A Boolean value
441
+
442
+ def filter_supported
443
+ @filter_supported
444
+ end
445
+
446
+ # The method to set the value to filter_supported
447
+ # @param filter_supported [Boolean] A Boolean
448
+
449
+ def filter_supported=(filter_supported)
450
+ if filter_supported!=nil and ! [true, false].include?filter_supported
451
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filter_supported EXPECTED TYPE: Boolean', nil, nil)
452
+ end
453
+ @filter_supported = filter_supported
454
+ @key_modified['filter_supported'] = 1
455
+ end
456
+
457
+ # The method to get the display_field
458
+ # @return A String value
459
+
460
+ def display_field
461
+ @display_field
462
+ end
463
+
464
+ # The method to set the value to display_field
465
+ # @param display_field [String] A String
466
+
467
+ def display_field=(display_field)
468
+ if display_field!=nil and !display_field.is_a? String
469
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_field EXPECTED TYPE: String', nil, nil)
470
+ end
471
+ @display_field = display_field
472
+ @key_modified['display_field'] = 1
473
+ end
474
+
475
+ # The method to get the search_layout_fields
476
+ # @return An instance of Array
477
+
478
+ def search_layout_fields
479
+ @search_layout_fields
480
+ end
481
+
482
+ # The method to set the value to search_layout_fields
483
+ # @param search_layout_fields [Array] An instance of Array
484
+
485
+ def search_layout_fields=(search_layout_fields)
486
+ if search_layout_fields!=nil and !search_layout_fields.is_a? Array
487
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: search_layout_fields EXPECTED TYPE: Array', nil, nil)
488
+ end
489
+ @search_layout_fields = search_layout_fields
490
+ @key_modified['search_layout_fields'] = 1
491
+ end
492
+
493
+ # The method to get the kanban_view_supported
494
+ # @return A Boolean value
495
+
496
+ def kanban_view_supported
497
+ @kanban_view_supported
498
+ end
499
+
500
+ # The method to set the value to kanban_view_supported
501
+ # @param kanban_view_supported [Boolean] A Boolean
502
+
503
+ def kanban_view_supported=(kanban_view_supported)
504
+ if kanban_view_supported!=nil and ! [true, false].include?kanban_view_supported
505
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: kanban_view_supported EXPECTED TYPE: Boolean', nil, nil)
506
+ end
507
+ @kanban_view_supported = kanban_view_supported
508
+ @key_modified['kanban_view_supported'] = 1
509
+ end
510
+
511
+ # The method to get the show_as_tab
512
+ # @return A Boolean value
513
+
514
+ def show_as_tab
515
+ @show_as_tab
516
+ end
517
+
518
+ # The method to set the value to show_as_tab
519
+ # @param show_as_tab [Boolean] A Boolean
520
+
521
+ def show_as_tab=(show_as_tab)
522
+ if show_as_tab!=nil and ! [true, false].include?show_as_tab
523
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: show_as_tab EXPECTED TYPE: Boolean', nil, nil)
524
+ end
525
+ @show_as_tab = show_as_tab
526
+ @key_modified['show_as_tab'] = 1
527
+ end
528
+
529
+ # The method to get the web_link
530
+ # @return A String value
531
+
532
+ def web_link
533
+ @web_link
534
+ end
535
+
536
+ # The method to set the value to web_link
537
+ # @param web_link [String] A String
538
+
539
+ def web_link=(web_link)
540
+ if web_link!=nil and !web_link.is_a? String
541
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: web_link EXPECTED TYPE: String', nil, nil)
542
+ end
543
+ @web_link = web_link
544
+ @key_modified['web_link'] = 1
545
+ end
546
+
547
+ # The method to get the sequence_number
548
+ # @return A Integer value
549
+
550
+ def sequence_number
551
+ @sequence_number
552
+ end
553
+
554
+ # The method to set the value to sequence_number
555
+ # @param sequence_number [Integer] A Integer
556
+
557
+ def sequence_number=(sequence_number)
558
+ if sequence_number!=nil and !sequence_number.is_a? Integer
559
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sequence_number EXPECTED TYPE: Integer', nil, nil)
560
+ end
561
+ @sequence_number = sequence_number
562
+ @key_modified['sequence_number'] = 1
563
+ end
564
+
565
+ # The method to get the singular_label
566
+ # @return A String value
567
+
568
+ def singular_label
569
+ @singular_label
570
+ end
571
+
572
+ # The method to set the value to singular_label
573
+ # @param singular_label [String] A String
574
+
575
+ def singular_label=(singular_label)
576
+ if singular_label!=nil and !singular_label.is_a? String
577
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: singular_label EXPECTED TYPE: String', nil, nil)
578
+ end
579
+ @singular_label = singular_label
580
+ @key_modified['singular_label'] = 1
581
+ end
582
+
583
+ # The method to get the viewable
584
+ # @return A Boolean value
585
+
586
+ def viewable
587
+ @viewable
588
+ end
589
+
590
+ # The method to set the value to viewable
591
+ # @param viewable [Boolean] A Boolean
592
+
593
+ def viewable=(viewable)
594
+ if viewable!=nil and ! [true, false].include?viewable
595
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: viewable EXPECTED TYPE: Boolean', nil, nil)
596
+ end
597
+ @viewable = viewable
598
+ @key_modified['viewable'] = 1
599
+ end
600
+
601
+ # The method to get the api_supported
602
+ # @return A Boolean value
603
+
604
+ def api_supported
605
+ @api_supported
606
+ end
607
+
608
+ # The method to set the value to api_supported
609
+ # @param api_supported [Boolean] A Boolean
610
+
611
+ def api_supported=(api_supported)
612
+ if api_supported!=nil and ! [true, false].include?api_supported
613
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_supported EXPECTED TYPE: Boolean', nil, nil)
614
+ end
615
+ @api_supported = api_supported
616
+ @key_modified['api_supported'] = 1
617
+ end
618
+
619
+ # The method to get the api_name
620
+ # @return A String value
621
+
622
+ def api_name
623
+ @api_name
624
+ end
625
+
626
+ # The method to set the value to api_name
627
+ # @param api_name [String] A String
628
+
629
+ def api_name=(api_name)
630
+ if api_name!=nil and !api_name.is_a? String
631
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
632
+ end
633
+ @api_name = api_name
634
+ @key_modified['api_name'] = 1
635
+ end
636
+
637
+ # The method to get the quick_create
638
+ # @return A Boolean value
639
+
640
+ def quick_create
641
+ @quick_create
642
+ end
643
+
644
+ # The method to set the value to quick_create
645
+ # @param quick_create [Boolean] A Boolean
646
+
647
+ def quick_create=(quick_create)
648
+ if quick_create!=nil and ! [true, false].include?quick_create
649
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quick_create EXPECTED TYPE: Boolean', nil, nil)
650
+ end
651
+ @quick_create = quick_create
652
+ @key_modified['quick_create'] = 1
653
+ end
654
+
655
+ # The method to get the modified_by
656
+ # @return An instance of Users::User
657
+
658
+ def modified_by
659
+ @modified_by
660
+ end
661
+
662
+ # The method to set the value to modified_by
663
+ # @param modified_by [Users::User] An instance of Users::User
664
+
665
+ def modified_by=(modified_by)
666
+ if modified_by!=nil and !modified_by.is_a? Users::User
667
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_by EXPECTED TYPE: User', nil, nil)
668
+ end
669
+ @modified_by = modified_by
670
+ @key_modified['modified_by'] = 1
671
+ end
672
+
673
+ # The method to get the generated_type
674
+ # @return An instance of Util::Choice
675
+
676
+ def generated_type
677
+ @generated_type
678
+ end
679
+
680
+ # The method to set the value to generated_type
681
+ # @param generated_type [Util::Choice] An instance of Util::Choice
682
+
683
+ def generated_type=(generated_type)
684
+ if generated_type!=nil and !generated_type.is_a? Util::Choice
685
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: generated_type EXPECTED TYPE: Util::Choice', nil, nil)
686
+ end
687
+ @generated_type = generated_type
688
+ @key_modified['generated_type'] = 1
689
+ end
690
+
691
+ # The method to get the feeds_required
692
+ # @return A Boolean value
693
+
694
+ def feeds_required
695
+ @feeds_required
696
+ end
697
+
698
+ # The method to set the value to feeds_required
699
+ # @param feeds_required [Boolean] A Boolean
700
+
701
+ def feeds_required=(feeds_required)
702
+ if feeds_required!=nil and ! [true, false].include?feeds_required
703
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: feeds_required EXPECTED TYPE: Boolean', nil, nil)
704
+ end
705
+ @feeds_required = feeds_required
706
+ @key_modified['feeds_required'] = 1
707
+ end
708
+
709
+ # The method to get the scoring_supported
710
+ # @return A Boolean value
711
+
712
+ def scoring_supported
713
+ @scoring_supported
714
+ end
715
+
716
+ # The method to set the value to scoring_supported
717
+ # @param scoring_supported [Boolean] A Boolean
718
+
719
+ def scoring_supported=(scoring_supported)
720
+ if scoring_supported!=nil and ! [true, false].include?scoring_supported
721
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: scoring_supported EXPECTED TYPE: Boolean', nil, nil)
722
+ end
723
+ @scoring_supported = scoring_supported
724
+ @key_modified['scoring_supported'] = 1
725
+ end
726
+
727
+ # The method to get the webform_supported
728
+ # @return A Boolean value
729
+
730
+ def webform_supported
731
+ @webform_supported
732
+ end
733
+
734
+ # The method to set the value to webform_supported
735
+ # @param webform_supported [Boolean] A Boolean
736
+
737
+ def webform_supported=(webform_supported)
738
+ if webform_supported!=nil and ! [true, false].include?webform_supported
739
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: webform_supported EXPECTED TYPE: Boolean', nil, nil)
740
+ end
741
+ @webform_supported = webform_supported
742
+ @key_modified['webform_supported'] = 1
743
+ end
744
+
745
+ # The method to get the arguments
746
+ # @return An instance of Array
747
+
748
+ def arguments
749
+ @arguments
750
+ end
751
+
752
+ # The method to set the value to arguments
753
+ # @param arguments [Array] An instance of Array
754
+
755
+ def arguments=(arguments)
756
+ if arguments!=nil and !arguments.is_a? Array
757
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: arguments EXPECTED TYPE: Array', nil, nil)
758
+ end
759
+ @arguments = arguments
760
+ @key_modified['arguments'] = 1
761
+ end
762
+
763
+ # The method to get the module_name
764
+ # @return A String value
765
+
766
+ def module_name
767
+ @module_name
768
+ end
769
+
770
+ # The method to set the value to module_name
771
+ # @param module_name [String] A String
772
+
773
+ def module_name=(module_name)
774
+ if module_name!=nil and !module_name.is_a? String
775
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: module_name EXPECTED TYPE: String', nil, nil)
776
+ end
777
+ @module_name = module_name
778
+ @key_modified['module_name'] = 1
779
+ end
780
+
781
+ # The method to get the business_card_field_limit
782
+ # @return A Integer value
783
+
784
+ def business_card_field_limit
785
+ @business_card_field_limit
786
+ end
787
+
788
+ # The method to set the value to business_card_field_limit
789
+ # @param business_card_field_limit [Integer] A Integer
790
+
791
+ def business_card_field_limit=(business_card_field_limit)
792
+ if business_card_field_limit!=nil and !business_card_field_limit.is_a? Integer
793
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: business_card_field_limit EXPECTED TYPE: Integer', nil, nil)
794
+ end
795
+ @business_card_field_limit = business_card_field_limit
796
+ @key_modified['business_card_field_limit'] = 1
797
+ end
798
+
799
+ # The method to get the custom_view
800
+ # @return An instance of CustomViews::CustomView
801
+
802
+ def custom_view
803
+ @custom_view
804
+ end
805
+
806
+ # The method to set the value to custom_view
807
+ # @param custom_view [CustomViews::CustomView] An instance of CustomViews::CustomView
808
+
809
+ def custom_view=(custom_view)
810
+ if custom_view!=nil and !custom_view.is_a? CustomViews::CustomView
811
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: custom_view EXPECTED TYPE: CustomView', nil, nil)
812
+ end
813
+ @custom_view = custom_view
814
+ @key_modified['custom_view'] = 1
815
+ end
816
+
817
+ # The method to get the parent_module
818
+ # @return An instance of Module
819
+
820
+ def parent_module
821
+ @parent_module
822
+ end
823
+
824
+ # The method to set the value to parent_module
825
+ # @param parent_module [Module] An instance of Module
826
+
827
+ def parent_module=(parent_module)
828
+ if parent_module!=nil and !parent_module.is_a? Module
829
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: parent_module EXPECTED TYPE: Module', nil, nil)
830
+ end
831
+ @parent_module = parent_module
832
+ @key_modified['parent_module'] = 1
833
+ end
834
+
835
+ # The method to get the territory
836
+ # @return An instance of Territory
837
+
838
+ def territory
839
+ @territory
840
+ end
841
+
842
+ # The method to set the value to territory
843
+ # @param territory [Territory] An instance of Territory
844
+
845
+ def territory=(territory)
846
+ if territory!=nil and !territory.is_a? Territory
847
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: territory EXPECTED TYPE: Territory', nil, nil)
848
+ end
849
+ @territory = territory
850
+ @key_modified['territory'] = 1
851
+ end
852
+
853
+ # The method to check if the user has modified the given key
854
+ # @param key [String] A String
855
+ # @return A Integer value
856
+
857
+ def is_key_modified(key)
858
+ if key!=nil and !key.is_a? String
859
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
860
+ end
861
+ if @key_modified.key?(key)
862
+ return @key_modified[key]
863
+ end
864
+
865
+ nil
866
+ end
867
+
868
+ # The method to mark the given key as modified
869
+ # @param key [String] A String
870
+ # @param modification [Integer] A Integer
871
+
872
+ def set_key_modified(key, modification)
873
+ if key!=nil and !key.is_a? String
874
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
875
+ end
876
+ if modification!=nil and !modification.is_a? Integer
877
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
878
+ end
879
+ @key_modified[key] = modification
880
+ end
881
+
882
+ end
883
+ end
884
+ end