ZOHOCRMSDK2_0_docgo 6.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/src/ZOHOCRMSDK2_0_docgo.rb +370 -0
- data/src/com/zoho/api/authenticator/oauth_token.rb +285 -0
- data/src/com/zoho/api/authenticator/store/db_store.rb +194 -0
- data/src/com/zoho/api/authenticator/store/file_store.rb +238 -0
- data/src/com/zoho/api/authenticator/store/token_store.rb +35 -0
- data/src/com/zoho/api/authenticator/token.rb +12 -0
- data/src/com/zoho/api/logger/sdk_logger.rb +64 -0
- data/src/com/zoho/crm/api/attachments/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/attachments/action_response.rb +12 -0
- data/src/com/zoho/crm/api/attachments/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/attachments/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/attachments/attachment.rb +369 -0
- data/src/com/zoho/crm/api/attachments/attachments_operations.rb +198 -0
- data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/attachments/response_wrapper.rb +85 -0
- data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
- data/src/com/zoho/crm/api/blue_print/action_response.rb +12 -0
- data/src/com/zoho/crm/api/blue_print/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/blue_print/blue_print.rb +121 -0
- data/src/com/zoho/crm/api/blue_print/blue_print_operations.rb +69 -0
- data/src/com/zoho/crm/api/blue_print/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/blue_print/next_transition.rb +82 -0
- data/src/com/zoho/crm/api/blue_print/process_info.rb +253 -0
- data/src/com/zoho/crm/api/blue_print/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/blue_print/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/blue_print/success_response.rb +123 -0
- data/src/com/zoho/crm/api/blue_print/transition.rb +255 -0
- data/src/com/zoho/crm/api/blue_print/validation_error.rb +82 -0
- data/src/com/zoho/crm/api/bulk_read/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/bulk_read/action_response.rb +12 -0
- data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/bulk_read/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +76 -0
- data/src/com/zoho/crm/api/bulk_read/call_back.rb +83 -0
- data/src/com/zoho/crm/api/bulk_read/criteria.rb +137 -0
- data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
- data/src/com/zoho/crm/api/bulk_read/query.rb +139 -0
- data/src/com/zoho/crm/api/bulk_read/request_wrapper.rb +102 -0
- data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/bulk_read/result.rb +139 -0
- data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
- data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
- data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
- data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
- data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +158 -0
- data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
- data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +121 -0
- data/src/com/zoho/crm/api/bulk_write/resource.rb +197 -0
- data/src/com/zoho/crm/api/bulk_write/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +12 -0
- data/src/com/zoho/crm/api/bulk_write/result.rb +63 -0
- data/src/com/zoho/crm/api/bulk_write/success_response.rb +123 -0
- data/src/com/zoho/crm/api/contact_roles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/contact_roles/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/contact_role.rb +101 -0
- data/src/com/zoho/crm/api/contact_roles/contact_role_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +270 -0
- data/src/com/zoho/crm/api/contact_roles/record_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/record_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/contact_roles/record_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/record_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/record_response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
- data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/currencies_operations.rb +151 -0
- data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
- data/src/com/zoho/crm/api/currencies/format.rb +102 -0
- data/src/com/zoho/crm/api/currencies/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/currencies/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/currencies/success_response.rb +123 -0
- data/src/com/zoho/crm/api/custom_views/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/custom_views/criteria.rb +137 -0
- data/src/com/zoho/crm/api/custom_views/custom_view.rb +329 -0
- data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
- data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
- data/src/com/zoho/crm/api/custom_views/range.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/custom_views/shared_details.rb +120 -0
- data/src/com/zoho/crm/api/custom_views/translation.rb +120 -0
- data/src/com/zoho/crm/api/dc/au_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/cn_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/datacenter.rb +23 -0
- data/src/com/zoho/crm/api/dc/eu_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/in_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/jp_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/us_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
- data/src/com/zoho/crm/api/fields/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/fields/association_details.rb +82 -0
- data/src/com/zoho/crm/api/fields/auto_number.rb +101 -0
- data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
- data/src/com/zoho/crm/api/fields/currency.rb +82 -0
- data/src/com/zoho/crm/api/fields/field.rb +958 -0
- data/src/com/zoho/crm/api/fields/fields_operations.rb +71 -0
- data/src/com/zoho/crm/api/fields/formula.rb +82 -0
- data/src/com/zoho/crm/api/fields/lookup_field.rb +82 -0
- data/src/com/zoho/crm/api/fields/module.rb +159 -0
- data/src/com/zoho/crm/api/fields/multi_select_lookup.rb +158 -0
- data/src/com/zoho/crm/api/fields/pick_list_value.rb +177 -0
- data/src/com/zoho/crm/api/fields/private.rb +101 -0
- data/src/com/zoho/crm/api/fields/related_details.rb +139 -0
- data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/fields/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fields/tool_tip.rb +82 -0
- data/src/com/zoho/crm/api/fields/unique.rb +63 -0
- data/src/com/zoho/crm/api/fields/view_type.rb +120 -0
- data/src/com/zoho/crm/api/files/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/files/action_response.rb +12 -0
- data/src/com/zoho/crm/api/files/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/files/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/files/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/files/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/files/file_operations.rb +75 -0
- data/src/com/zoho/crm/api/files/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/files/success_response.rb +123 -0
- data/src/com/zoho/crm/api/header.rb +12 -0
- data/src/com/zoho/crm/api/header_map.rb +57 -0
- data/src/com/zoho/crm/api/initializer.rb +255 -0
- data/src/com/zoho/crm/api/layouts/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/layouts/layout.rb +274 -0
- data/src/com/zoho/crm/api/layouts/layouts_operations.rb +61 -0
- data/src/com/zoho/crm/api/layouts/properties.rb +102 -0
- data/src/com/zoho/crm/api/layouts/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/layouts/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/layouts/section.rb +235 -0
- data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
- data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/modules/argument.rb +82 -0
- data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/modules/module.rb +884 -0
- data/src/com/zoho/crm/api/modules/modules_operations.rb +109 -0
- data/src/com/zoho/crm/api/modules/related_list_properties.rb +101 -0
- data/src/com/zoho/crm/api/modules/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/modules/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/modules/success_response.rb +123 -0
- data/src/com/zoho/crm/api/modules/territory.rb +101 -0
- data/src/com/zoho/crm/api/notes/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/notes/action_response.rb +12 -0
- data/src/com/zoho/crm/api/notes/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/notes/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/notes/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notes/info.rb +120 -0
- data/src/com/zoho/crm/api/notes/note.rb +351 -0
- data/src/com/zoho/crm/api/notes/notes_operations.rb +214 -0
- data/src/com/zoho/crm/api/notes/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/notes/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/notes/success_response.rb +123 -0
- data/src/com/zoho/crm/api/notification/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/notification/action_response.rb +12 -0
- data/src/com/zoho/crm/api/notification/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/notification/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/notification/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notification/info.rb +120 -0
- data/src/com/zoho/crm/api/notification/notification.rb +253 -0
- data/src/com/zoho/crm/api/notification/notification_operations.rb +160 -0
- data/src/com/zoho/crm/api/notification/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/notification/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/notification/success_response.rb +123 -0
- data/src/com/zoho/crm/api/org/action_response.rb +12 -0
- data/src/com/zoho/crm/api/org/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/org/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/org/license_details.rb +158 -0
- data/src/com/zoho/crm/api/org/org.rb +633 -0
- data/src/com/zoho/crm/api/org/org_operations.rb +49 -0
- data/src/com/zoho/crm/api/org/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/org/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/org/success_response.rb +123 -0
- data/src/com/zoho/crm/api/param.rb +12 -0
- data/src/com/zoho/crm/api/parameter_map.rb +56 -0
- data/src/com/zoho/crm/api/profiles/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/profiles/category.rb +101 -0
- data/src/com/zoho/crm/api/profiles/permission_detail.rb +139 -0
- data/src/com/zoho/crm/api/profiles/profile.rb +292 -0
- data/src/com/zoho/crm/api/profiles/profiles_operations.rb +61 -0
- data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/profiles/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/profiles/section.rb +82 -0
- data/src/com/zoho/crm/api/query/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/query/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/query/query_operations.rb +36 -0
- data/src/com/zoho/crm/api/query/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/query/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/action_response.rb +12 -0
- data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/api_exception.rb +145 -0
- data/src/com/zoho/crm/api/record/apply_feature_execution.rb +63 -0
- data/src/com/zoho/crm/api/record/body_wrapper.rb +177 -0
- data/src/com/zoho/crm/api/record/carry_over_tags.rb +101 -0
- data/src/com/zoho/crm/api/record/comment.rb +120 -0
- data/src/com/zoho/crm/api/record/consent.rb +187 -0
- data/src/com/zoho/crm/api/record/convert_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/convert_action_response.rb +12 -0
- data/src/com/zoho/crm/api/record/convert_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/convert_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/criteria.rb +137 -0
- data/src/com/zoho/crm/api/record/deleted_record.rb +159 -0
- data/src/com/zoho/crm/api/record/deleted_records_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record/download_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/field.rb +2111 -0
- data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
- data/src/com/zoho/crm/api/record/file_details.rb +329 -0
- data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/info.rb +120 -0
- data/src/com/zoho/crm/api/record/inventory_line_items.rb +237 -0
- data/src/com/zoho/crm/api/record/lead_converter.rb +196 -0
- data/src/com/zoho/crm/api/record/line_item_product.rb +67 -0
- data/src/com/zoho/crm/api/record/line_tax.rb +120 -0
- data/src/com/zoho/crm/api/record/mass_update.rb +142 -0
- data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_action_response.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +158 -0
- data/src/com/zoho/crm/api/record/mass_update_response.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/mass_update_success_response.rb +123 -0
- data/src/com/zoho/crm/api/record/options.rb +12 -0
- data/src/com/zoho/crm/api/record/participants.rb +118 -0
- data/src/com/zoho/crm/api/record/pricing_details.rb +67 -0
- data/src/com/zoho/crm/api/record/record.rb +194 -0
- data/src/com/zoho/crm/api/record/record_operations.rb +961 -0
- data/src/com/zoho/crm/api/record/recurring_activity.rb +63 -0
- data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
- data/src/com/zoho/crm/api/record/reminder.rb +82 -0
- data/src/com/zoho/crm/api/record/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record/success_response.rb +163 -0
- data/src/com/zoho/crm/api/record/successful_convert.rb +103 -0
- data/src/com/zoho/crm/api/record/territory.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/related_lists/related_list.rb +253 -0
- data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +61 -0
- data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
- data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/related_records/related_records_operations.rb +524 -0
- data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
- data/src/com/zoho/crm/api/request_proxy.rb +17 -0
- data/src/com/zoho/crm/api/roles/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/roles/role.rb +197 -0
- data/src/com/zoho/crm/api/roles/roles_operations.rb +47 -0
- data/src/com/zoho/crm/api/sdk_config.rb +15 -0
- data/src/com/zoho/crm/api/share_records/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/share_records/action_response.rb +12 -0
- data/src/com/zoho/crm/api/share_records/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/share_records/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/share_records/delete_action_response.rb +12 -0
- data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/share_records/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/share_records/response_wrapper.rb +85 -0
- data/src/com/zoho/crm/api/share_records/share_record.rb +159 -0
- data/src/com/zoho/crm/api/share_records/share_records_operations.rb +130 -0
- data/src/com/zoho/crm/api/share_records/shared_through.rb +102 -0
- data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
- data/src/com/zoho/crm/api/tags/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/tags/action_response.rb +12 -0
- data/src/com/zoho/crm/api/tags/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/tags/api_exception.rb +133 -0
- data/src/com/zoho/crm/api/tags/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/count_handler.rb +12 -0
- data/src/com/zoho/crm/api/tags/count_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/tags/info.rb +82 -0
- data/src/com/zoho/crm/api/tags/merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/record_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/tags/record_action_response.rb +12 -0
- data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +122 -0
- data/src/com/zoho/crm/api/tags/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/tags/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/tags/success_response.rb +125 -0
- data/src/com/zoho/crm/api/tags/tag.rb +159 -0
- data/src/com/zoho/crm/api/tags/tags_operations.rb +382 -0
- data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
- data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
- data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/taxes/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
- data/src/com/zoho/crm/api/taxes/tax.rb +139 -0
- data/src/com/zoho/crm/api/taxes/taxes_operations.rb +132 -0
- data/src/com/zoho/crm/api/territories/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/territories/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/territories/territories_operations.rb +47 -0
- data/src/com/zoho/crm/api/territories/territory.rb +236 -0
- data/src/com/zoho/crm/api/user_signature.rb +29 -0
- data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users/customize_info.rb +158 -0
- data/src/com/zoho/crm/api/users/info.rb +120 -0
- data/src/com/zoho/crm/api/users/request_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users/shift.rb +82 -0
- data/src/com/zoho/crm/api/users/success_response.rb +123 -0
- data/src/com/zoho/crm/api/users/tab_theme.rb +82 -0
- data/src/com/zoho/crm/api/users/territory.rb +101 -0
- data/src/com/zoho/crm/api/users/theme.rb +158 -0
- data/src/com/zoho/crm/api/users/user.rb +698 -0
- data/src/com/zoho/crm/api/users/users_operations.rb +177 -0
- data/src/com/zoho/crm/api/util/api_http_connector.rb +114 -0
- data/src/com/zoho/crm/api/util/api_response.rb +18 -0
- data/src/com/zoho/crm/api/util/choice.rb +11 -0
- data/src/com/zoho/crm/api/util/common_api_handler.rb +241 -0
- data/src/com/zoho/crm/api/util/constants.rb +646 -0
- data/src/com/zoho/crm/api/util/converter.rb +238 -0
- data/src/com/zoho/crm/api/util/data_type_converter.rb +170 -0
- data/src/com/zoho/crm/api/util/downloader.rb +86 -0
- data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
- data/src/com/zoho/crm/api/util/header_param_validator.rb +57 -0
- data/src/com/zoho/crm/api/util/json_converter.rb +729 -0
- data/src/com/zoho/crm/api/util/model.rb +7 -0
- data/src/com/zoho/crm/api/util/module_fields_handler.rb +80 -0
- data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
- data/src/com/zoho/crm/api/util/utility.rb +871 -0
- data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/variable_groups/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/variable_groups/variable_group.rb +139 -0
- data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +65 -0
- data/src/com/zoho/crm/api/variables/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/variables/action_response.rb +12 -0
- data/src/com/zoho/crm/api/variables/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/variables/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/variables/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variables/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/variables/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/variables/success_response.rb +123 -0
- data/src/com/zoho/crm/api/variables/variable.rb +175 -0
- data/src/com/zoho/crm/api/variables/variables_operations.rb +234 -0
- data/src/resources/JSONDetails.json +1 -0
- data/src/version.rb +3 -0
- metadata +500 -0
@@ -0,0 +1,101 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module Record
|
5
|
+
class CarryOverTags
|
6
|
+
include Util::Model
|
7
|
+
|
8
|
+
# Creates an instance of CarryOverTags
|
9
|
+
def initialize
|
10
|
+
@contacts = nil
|
11
|
+
@accounts = nil
|
12
|
+
@deals = nil
|
13
|
+
@key_modified = Hash.new
|
14
|
+
end
|
15
|
+
|
16
|
+
# The method to get the contacts
|
17
|
+
# @return An instance of Array
|
18
|
+
|
19
|
+
def contacts
|
20
|
+
@contacts
|
21
|
+
end
|
22
|
+
|
23
|
+
# The method to set the value to contacts
|
24
|
+
# @param contacts [Array] An instance of Array
|
25
|
+
|
26
|
+
def contacts=(contacts)
|
27
|
+
if contacts!=nil and !contacts.is_a? Array
|
28
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: contacts EXPECTED TYPE: Array', nil, nil)
|
29
|
+
end
|
30
|
+
@contacts = contacts
|
31
|
+
@key_modified['Contacts'] = 1
|
32
|
+
end
|
33
|
+
|
34
|
+
# The method to get the accounts
|
35
|
+
# @return An instance of Array
|
36
|
+
|
37
|
+
def accounts
|
38
|
+
@accounts
|
39
|
+
end
|
40
|
+
|
41
|
+
# The method to set the value to accounts
|
42
|
+
# @param accounts [Array] An instance of Array
|
43
|
+
|
44
|
+
def accounts=(accounts)
|
45
|
+
if accounts!=nil and !accounts.is_a? Array
|
46
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: accounts EXPECTED TYPE: Array', nil, nil)
|
47
|
+
end
|
48
|
+
@accounts = accounts
|
49
|
+
@key_modified['Accounts'] = 1
|
50
|
+
end
|
51
|
+
|
52
|
+
# The method to get the deals
|
53
|
+
# @return An instance of Array
|
54
|
+
|
55
|
+
def deals
|
56
|
+
@deals
|
57
|
+
end
|
58
|
+
|
59
|
+
# The method to set the value to deals
|
60
|
+
# @param deals [Array] An instance of Array
|
61
|
+
|
62
|
+
def deals=(deals)
|
63
|
+
if deals!=nil and !deals.is_a? Array
|
64
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: deals EXPECTED TYPE: Array', nil, nil)
|
65
|
+
end
|
66
|
+
@deals = deals
|
67
|
+
@key_modified['Deals'] = 1
|
68
|
+
end
|
69
|
+
|
70
|
+
# The method to check if the user has modified the given key
|
71
|
+
# @param key [String] A String
|
72
|
+
# @return A Integer value
|
73
|
+
|
74
|
+
def is_key_modified(key)
|
75
|
+
if key!=nil and !key.is_a? String
|
76
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
77
|
+
end
|
78
|
+
if @key_modified.key?(key)
|
79
|
+
return @key_modified[key]
|
80
|
+
end
|
81
|
+
|
82
|
+
nil
|
83
|
+
end
|
84
|
+
|
85
|
+
# The method to mark the given key as modified
|
86
|
+
# @param key [String] A String
|
87
|
+
# @param modification [Integer] A Integer
|
88
|
+
|
89
|
+
def set_key_modified(key, modification)
|
90
|
+
if key!=nil and !key.is_a? String
|
91
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
92
|
+
end
|
93
|
+
if modification!=nil and !modification.is_a? Integer
|
94
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
95
|
+
end
|
96
|
+
@key_modified[key] = modification
|
97
|
+
end
|
98
|
+
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module Record
|
5
|
+
class Comment
|
6
|
+
include Util::Model
|
7
|
+
|
8
|
+
# Creates an instance of Comment
|
9
|
+
def initialize
|
10
|
+
@commented_by = nil
|
11
|
+
@commented_time = nil
|
12
|
+
@comment_content = nil
|
13
|
+
@id = nil
|
14
|
+
@key_modified = Hash.new
|
15
|
+
end
|
16
|
+
|
17
|
+
# The method to get the commented_by
|
18
|
+
# @return A String value
|
19
|
+
|
20
|
+
def commented_by
|
21
|
+
@commented_by
|
22
|
+
end
|
23
|
+
|
24
|
+
# The method to set the value to commented_by
|
25
|
+
# @param commented_by [String] A String
|
26
|
+
|
27
|
+
def commented_by=(commented_by)
|
28
|
+
if commented_by!=nil and !commented_by.is_a? String
|
29
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: commented_by EXPECTED TYPE: String', nil, nil)
|
30
|
+
end
|
31
|
+
@commented_by = commented_by
|
32
|
+
@key_modified['commented_by'] = 1
|
33
|
+
end
|
34
|
+
|
35
|
+
# The method to get the commented_time
|
36
|
+
# @return An instance of DateTime
|
37
|
+
|
38
|
+
def commented_time
|
39
|
+
@commented_time
|
40
|
+
end
|
41
|
+
|
42
|
+
# The method to set the value to commented_time
|
43
|
+
# @param commented_time [DateTime] An instance of DateTime
|
44
|
+
|
45
|
+
def commented_time=(commented_time)
|
46
|
+
if commented_time!=nil and !commented_time.is_a? DateTime
|
47
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: commented_time EXPECTED TYPE: DateTime', nil, nil)
|
48
|
+
end
|
49
|
+
@commented_time = commented_time
|
50
|
+
@key_modified['commented_time'] = 1
|
51
|
+
end
|
52
|
+
|
53
|
+
# The method to get the comment_content
|
54
|
+
# @return A String value
|
55
|
+
|
56
|
+
def comment_content
|
57
|
+
@comment_content
|
58
|
+
end
|
59
|
+
|
60
|
+
# The method to set the value to comment_content
|
61
|
+
# @param comment_content [String] A String
|
62
|
+
|
63
|
+
def comment_content=(comment_content)
|
64
|
+
if comment_content!=nil and !comment_content.is_a? String
|
65
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: comment_content EXPECTED TYPE: String', nil, nil)
|
66
|
+
end
|
67
|
+
@comment_content = comment_content
|
68
|
+
@key_modified['comment_content'] = 1
|
69
|
+
end
|
70
|
+
|
71
|
+
# The method to get the id
|
72
|
+
# @return A Integer value
|
73
|
+
|
74
|
+
def id
|
75
|
+
@id
|
76
|
+
end
|
77
|
+
|
78
|
+
# The method to set the value to id
|
79
|
+
# @param id [Integer] A Integer
|
80
|
+
|
81
|
+
def id=(id)
|
82
|
+
if id!=nil and !id.is_a? Integer
|
83
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
|
84
|
+
end
|
85
|
+
@id = id
|
86
|
+
@key_modified['id'] = 1
|
87
|
+
end
|
88
|
+
|
89
|
+
# The method to check if the user has modified the given key
|
90
|
+
# @param key [String] A String
|
91
|
+
# @return A Integer value
|
92
|
+
|
93
|
+
def is_key_modified(key)
|
94
|
+
if key!=nil and !key.is_a? String
|
95
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
96
|
+
end
|
97
|
+
if @key_modified.key?(key)
|
98
|
+
return @key_modified[key]
|
99
|
+
end
|
100
|
+
|
101
|
+
nil
|
102
|
+
end
|
103
|
+
|
104
|
+
# The method to mark the given key as modified
|
105
|
+
# @param key [String] A String
|
106
|
+
# @param modification [Integer] A Integer
|
107
|
+
|
108
|
+
def set_key_modified(key, modification)
|
109
|
+
if key!=nil and !key.is_a? String
|
110
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
111
|
+
end
|
112
|
+
if modification!=nil and !modification.is_a? Integer
|
113
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
114
|
+
end
|
115
|
+
@key_modified[key] = modification
|
116
|
+
end
|
117
|
+
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,187 @@
|
|
1
|
+
require_relative '../users/user'
|
2
|
+
require_relative '../record/record'
|
3
|
+
require_relative '../util/model'
|
4
|
+
|
5
|
+
module ZOHOCRMSDK
|
6
|
+
module Record
|
7
|
+
class Consent < Record
|
8
|
+
include Util::Model
|
9
|
+
|
10
|
+
# Creates an instance of Consent
|
11
|
+
def initialize
|
12
|
+
super
|
13
|
+
end
|
14
|
+
|
15
|
+
# The method to get the owner
|
16
|
+
# @return An instance of Users::User
|
17
|
+
|
18
|
+
def owner
|
19
|
+
get_key_value('Owner')
|
20
|
+
end
|
21
|
+
|
22
|
+
# The method to set the value to owner
|
23
|
+
# @param owner [Users::User] An instance of Users::User
|
24
|
+
|
25
|
+
def owner=(owner)
|
26
|
+
if owner!=nil and !owner.is_a? Users::User
|
27
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: owner EXPECTED TYPE: User', nil, nil)
|
28
|
+
end
|
29
|
+
add_key_value('Owner', owner)
|
30
|
+
end
|
31
|
+
|
32
|
+
# The method to get the contact_through_email
|
33
|
+
# @return A Boolean value
|
34
|
+
|
35
|
+
def contact_through_email
|
36
|
+
get_key_value('Contact_Through_Email')
|
37
|
+
end
|
38
|
+
|
39
|
+
# The method to set the value to contact_through_email
|
40
|
+
# @param contact_through_email [Boolean] A Boolean
|
41
|
+
|
42
|
+
def contact_through_email=(contact_through_email)
|
43
|
+
if contact_through_email!=nil and ! [true, false].include?contact_through_email
|
44
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: contact_through_email EXPECTED TYPE: Boolean', nil, nil)
|
45
|
+
end
|
46
|
+
add_key_value('Contact_Through_Email', contact_through_email)
|
47
|
+
end
|
48
|
+
|
49
|
+
# The method to get the contact_through_social
|
50
|
+
# @return A Boolean value
|
51
|
+
|
52
|
+
def contact_through_social
|
53
|
+
get_key_value('Contact_Through_Social')
|
54
|
+
end
|
55
|
+
|
56
|
+
# The method to set the value to contact_through_social
|
57
|
+
# @param contact_through_social [Boolean] A Boolean
|
58
|
+
|
59
|
+
def contact_through_social=(contact_through_social)
|
60
|
+
if contact_through_social!=nil and ! [true, false].include?contact_through_social
|
61
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: contact_through_social EXPECTED TYPE: Boolean', nil, nil)
|
62
|
+
end
|
63
|
+
add_key_value('Contact_Through_Social', contact_through_social)
|
64
|
+
end
|
65
|
+
|
66
|
+
# The method to get the contact_through_survey
|
67
|
+
# @return A Boolean value
|
68
|
+
|
69
|
+
def contact_through_survey
|
70
|
+
get_key_value('Contact_Through_Survey')
|
71
|
+
end
|
72
|
+
|
73
|
+
# The method to set the value to contact_through_survey
|
74
|
+
# @param contact_through_survey [Boolean] A Boolean
|
75
|
+
|
76
|
+
def contact_through_survey=(contact_through_survey)
|
77
|
+
if contact_through_survey!=nil and ! [true, false].include?contact_through_survey
|
78
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: contact_through_survey EXPECTED TYPE: Boolean', nil, nil)
|
79
|
+
end
|
80
|
+
add_key_value('Contact_Through_Survey', contact_through_survey)
|
81
|
+
end
|
82
|
+
|
83
|
+
# The method to get the contact_through_phone
|
84
|
+
# @return A Boolean value
|
85
|
+
|
86
|
+
def contact_through_phone
|
87
|
+
get_key_value('Contact_Through_Phone')
|
88
|
+
end
|
89
|
+
|
90
|
+
# The method to set the value to contact_through_phone
|
91
|
+
# @param contact_through_phone [Boolean] A Boolean
|
92
|
+
|
93
|
+
def contact_through_phone=(contact_through_phone)
|
94
|
+
if contact_through_phone!=nil and ! [true, false].include?contact_through_phone
|
95
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: contact_through_phone EXPECTED TYPE: Boolean', nil, nil)
|
96
|
+
end
|
97
|
+
add_key_value('Contact_Through_Phone', contact_through_phone)
|
98
|
+
end
|
99
|
+
|
100
|
+
# The method to get the mail_sent_time
|
101
|
+
# @return An instance of DateTime
|
102
|
+
|
103
|
+
def mail_sent_time
|
104
|
+
get_key_value('Mail_Sent_Time')
|
105
|
+
end
|
106
|
+
|
107
|
+
# The method to set the value to mail_sent_time
|
108
|
+
# @param mail_sent_time [DateTime] An instance of DateTime
|
109
|
+
|
110
|
+
def mail_sent_time=(mail_sent_time)
|
111
|
+
if mail_sent_time!=nil and !mail_sent_time.is_a? DateTime
|
112
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: mail_sent_time EXPECTED TYPE: DateTime', nil, nil)
|
113
|
+
end
|
114
|
+
add_key_value('Mail_Sent_Time', mail_sent_time)
|
115
|
+
end
|
116
|
+
|
117
|
+
# The method to get the consent_date
|
118
|
+
# @return An instance of Date
|
119
|
+
|
120
|
+
def consent_date
|
121
|
+
get_key_value('Consent_Date')
|
122
|
+
end
|
123
|
+
|
124
|
+
# The method to set the value to consent_date
|
125
|
+
# @param consent_date [Date] An instance of Date
|
126
|
+
|
127
|
+
def consent_date=(consent_date)
|
128
|
+
if consent_date!=nil and !consent_date.is_a? Date
|
129
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: consent_date EXPECTED TYPE: Date', nil, nil)
|
130
|
+
end
|
131
|
+
add_key_value('Consent_Date', consent_date)
|
132
|
+
end
|
133
|
+
|
134
|
+
# The method to get the consent_remarks
|
135
|
+
# @return A String value
|
136
|
+
|
137
|
+
def consent_remarks
|
138
|
+
get_key_value('Consent_Remarks')
|
139
|
+
end
|
140
|
+
|
141
|
+
# The method to set the value to consent_remarks
|
142
|
+
# @param consent_remarks [String] A String
|
143
|
+
|
144
|
+
def consent_remarks=(consent_remarks)
|
145
|
+
if consent_remarks!=nil and !consent_remarks.is_a? String
|
146
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: consent_remarks EXPECTED TYPE: String', nil, nil)
|
147
|
+
end
|
148
|
+
add_key_value('Consent_Remarks', consent_remarks)
|
149
|
+
end
|
150
|
+
|
151
|
+
# The method to get the consent_through
|
152
|
+
# @return A String value
|
153
|
+
|
154
|
+
def consent_through
|
155
|
+
get_key_value('Consent_Through')
|
156
|
+
end
|
157
|
+
|
158
|
+
# The method to set the value to consent_through
|
159
|
+
# @param consent_through [String] A String
|
160
|
+
|
161
|
+
def consent_through=(consent_through)
|
162
|
+
if consent_through!=nil and !consent_through.is_a? String
|
163
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: consent_through EXPECTED TYPE: String', nil, nil)
|
164
|
+
end
|
165
|
+
add_key_value('Consent_Through', consent_through)
|
166
|
+
end
|
167
|
+
|
168
|
+
# The method to get the data_processing_basis
|
169
|
+
# @return A String value
|
170
|
+
|
171
|
+
def data_processing_basis
|
172
|
+
get_key_value('Data_Processing_Basis')
|
173
|
+
end
|
174
|
+
|
175
|
+
# The method to set the value to data_processing_basis
|
176
|
+
# @param data_processing_basis [String] A String
|
177
|
+
|
178
|
+
def data_processing_basis=(data_processing_basis)
|
179
|
+
if data_processing_basis!=nil and !data_processing_basis.is_a? String
|
180
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: data_processing_basis EXPECTED TYPE: String', nil, nil)
|
181
|
+
end
|
182
|
+
add_key_value('Data_Processing_Basis', data_processing_basis)
|
183
|
+
end
|
184
|
+
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module Record
|
5
|
+
require_relative 'convert_action_handler'
|
6
|
+
class ConvertActionWrapper
|
7
|
+
include Util::Model
|
8
|
+
include ConvertActionHandler
|
9
|
+
|
10
|
+
# Creates an instance of ConvertActionWrapper
|
11
|
+
def initialize
|
12
|
+
@data = nil
|
13
|
+
@key_modified = Hash.new
|
14
|
+
end
|
15
|
+
|
16
|
+
# The method to get the data
|
17
|
+
# @return An instance of Array
|
18
|
+
|
19
|
+
def data
|
20
|
+
@data
|
21
|
+
end
|
22
|
+
|
23
|
+
# The method to set the value to data
|
24
|
+
# @param data [Array] An instance of Array
|
25
|
+
|
26
|
+
def data=(data)
|
27
|
+
if data!=nil and !data.is_a? Array
|
28
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: data EXPECTED TYPE: Array', nil, nil)
|
29
|
+
end
|
30
|
+
@data = data
|
31
|
+
@key_modified['data'] = 1
|
32
|
+
end
|
33
|
+
|
34
|
+
# The method to check if the user has modified the given key
|
35
|
+
# @param key [String] A String
|
36
|
+
# @return A Integer value
|
37
|
+
|
38
|
+
def is_key_modified(key)
|
39
|
+
if key!=nil and !key.is_a? String
|
40
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
41
|
+
end
|
42
|
+
if @key_modified.key?(key)
|
43
|
+
return @key_modified[key]
|
44
|
+
end
|
45
|
+
|
46
|
+
nil
|
47
|
+
end
|
48
|
+
|
49
|
+
# The method to mark the given key as modified
|
50
|
+
# @param key [String] A String
|
51
|
+
# @param modification [Integer] A Integer
|
52
|
+
|
53
|
+
def set_key_modified(key, modification)
|
54
|
+
if key!=nil and !key.is_a? String
|
55
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
56
|
+
end
|
57
|
+
if modification!=nil and !modification.is_a? Integer
|
58
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
59
|
+
end
|
60
|
+
@key_modified[key] = modification
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module Record
|
5
|
+
class ConvertBodyWrapper
|
6
|
+
include Util::Model
|
7
|
+
|
8
|
+
# Creates an instance of ConvertBodyWrapper
|
9
|
+
def initialize
|
10
|
+
@data = nil
|
11
|
+
@key_modified = Hash.new
|
12
|
+
end
|
13
|
+
|
14
|
+
# The method to get the data
|
15
|
+
# @return An instance of Array
|
16
|
+
|
17
|
+
def data
|
18
|
+
@data
|
19
|
+
end
|
20
|
+
|
21
|
+
# The method to set the value to data
|
22
|
+
# @param data [Array] An instance of Array
|
23
|
+
|
24
|
+
def data=(data)
|
25
|
+
if data!=nil and !data.is_a? Array
|
26
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: data EXPECTED TYPE: Array', nil, nil)
|
27
|
+
end
|
28
|
+
@data = data
|
29
|
+
@key_modified['data'] = 1
|
30
|
+
end
|
31
|
+
|
32
|
+
# The method to check if the user has modified the given key
|
33
|
+
# @param key [String] A String
|
34
|
+
# @return A Integer value
|
35
|
+
|
36
|
+
def is_key_modified(key)
|
37
|
+
if key!=nil and !key.is_a? String
|
38
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
39
|
+
end
|
40
|
+
if @key_modified.key?(key)
|
41
|
+
return @key_modified[key]
|
42
|
+
end
|
43
|
+
|
44
|
+
nil
|
45
|
+
end
|
46
|
+
|
47
|
+
# The method to mark the given key as modified
|
48
|
+
# @param key [String] A String
|
49
|
+
# @param modification [Integer] A Integer
|
50
|
+
|
51
|
+
def set_key_modified(key, modification)
|
52
|
+
if key!=nil and !key.is_a? String
|
53
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
54
|
+
end
|
55
|
+
if modification!=nil and !modification.is_a? Integer
|
56
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
57
|
+
end
|
58
|
+
@key_modified[key] = modification
|
59
|
+
end
|
60
|
+
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,137 @@
|
|
1
|
+
require_relative '../util/choice'
|
2
|
+
require_relative '../util/model'
|
3
|
+
|
4
|
+
module ZOHOCRMSDK
|
5
|
+
module Record
|
6
|
+
class Criteria
|
7
|
+
include Util::Model
|
8
|
+
|
9
|
+
# Creates an instance of Criteria
|
10
|
+
def initialize
|
11
|
+
@comparator = nil
|
12
|
+
@field = nil
|
13
|
+
@value = nil
|
14
|
+
@group_operator = nil
|
15
|
+
@group = nil
|
16
|
+
@key_modified = Hash.new
|
17
|
+
end
|
18
|
+
|
19
|
+
# The method to get the comparator
|
20
|
+
# @return An instance of Util::Choice
|
21
|
+
|
22
|
+
def comparator
|
23
|
+
@comparator
|
24
|
+
end
|
25
|
+
|
26
|
+
# The method to set the value to comparator
|
27
|
+
# @param comparator [Util::Choice] An instance of Util::Choice
|
28
|
+
|
29
|
+
def comparator=(comparator)
|
30
|
+
if comparator!=nil and !comparator.is_a? Util::Choice
|
31
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: comparator EXPECTED TYPE: Util::Choice', nil, nil)
|
32
|
+
end
|
33
|
+
@comparator = comparator
|
34
|
+
@key_modified['comparator'] = 1
|
35
|
+
end
|
36
|
+
|
37
|
+
# The method to get the field
|
38
|
+
# @return A String value
|
39
|
+
|
40
|
+
def field
|
41
|
+
@field
|
42
|
+
end
|
43
|
+
|
44
|
+
# The method to set the value to field
|
45
|
+
# @param field [String] A String
|
46
|
+
|
47
|
+
def field=(field)
|
48
|
+
if field!=nil and !field.is_a? String
|
49
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field EXPECTED TYPE: String', nil, nil)
|
50
|
+
end
|
51
|
+
@field = field
|
52
|
+
@key_modified['field'] = 1
|
53
|
+
end
|
54
|
+
|
55
|
+
# The method to get the value
|
56
|
+
# @return A lang::Object value
|
57
|
+
|
58
|
+
def value
|
59
|
+
@value
|
60
|
+
end
|
61
|
+
|
62
|
+
# The method to set the value to value
|
63
|
+
# @param value [lang::Object] A lang::Object
|
64
|
+
|
65
|
+
def value=(value)
|
66
|
+
@value = value
|
67
|
+
@key_modified['value'] = 1
|
68
|
+
end
|
69
|
+
|
70
|
+
# The method to get the group_operator
|
71
|
+
# @return An instance of Util::Choice
|
72
|
+
|
73
|
+
def group_operator
|
74
|
+
@group_operator
|
75
|
+
end
|
76
|
+
|
77
|
+
# The method to set the value to group_operator
|
78
|
+
# @param group_operator [Util::Choice] An instance of Util::Choice
|
79
|
+
|
80
|
+
def group_operator=(group_operator)
|
81
|
+
if group_operator!=nil and !group_operator.is_a? Util::Choice
|
82
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: group_operator EXPECTED TYPE: Util::Choice', nil, nil)
|
83
|
+
end
|
84
|
+
@group_operator = group_operator
|
85
|
+
@key_modified['group_operator'] = 1
|
86
|
+
end
|
87
|
+
|
88
|
+
# The method to get the group
|
89
|
+
# @return An instance of Array
|
90
|
+
|
91
|
+
def group
|
92
|
+
@group
|
93
|
+
end
|
94
|
+
|
95
|
+
# The method to set the value to group
|
96
|
+
# @param group [Array] An instance of Array
|
97
|
+
|
98
|
+
def group=(group)
|
99
|
+
if group!=nil and !group.is_a? Array
|
100
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: group EXPECTED TYPE: Array', nil, nil)
|
101
|
+
end
|
102
|
+
@group = group
|
103
|
+
@key_modified['group'] = 1
|
104
|
+
end
|
105
|
+
|
106
|
+
# The method to check if the user has modified the given key
|
107
|
+
# @param key [String] A String
|
108
|
+
# @return A Integer value
|
109
|
+
|
110
|
+
def is_key_modified(key)
|
111
|
+
if key!=nil and !key.is_a? String
|
112
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
113
|
+
end
|
114
|
+
if @key_modified.key?(key)
|
115
|
+
return @key_modified[key]
|
116
|
+
end
|
117
|
+
|
118
|
+
nil
|
119
|
+
end
|
120
|
+
|
121
|
+
# The method to mark the given key as modified
|
122
|
+
# @param key [String] A String
|
123
|
+
# @param modification [Integer] A Integer
|
124
|
+
|
125
|
+
def set_key_modified(key, modification)
|
126
|
+
if key!=nil and !key.is_a? String
|
127
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
128
|
+
end
|
129
|
+
if modification!=nil and !modification.is_a? Integer
|
130
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
131
|
+
end
|
132
|
+
@key_modified[key] = modification
|
133
|
+
end
|
134
|
+
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|