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,198 @@
|
|
1
|
+
require_relative '../users/user'
|
2
|
+
require_relative '../util/choice'
|
3
|
+
require_relative '../util/model'
|
4
|
+
|
5
|
+
module ZOHOCRMSDK
|
6
|
+
module BulkRead
|
7
|
+
class JobDetail
|
8
|
+
include Util::Model
|
9
|
+
|
10
|
+
# Creates an instance of JobDetail
|
11
|
+
def initialize
|
12
|
+
@id = nil
|
13
|
+
@operation = nil
|
14
|
+
@state = nil
|
15
|
+
@query = nil
|
16
|
+
@created_by = nil
|
17
|
+
@created_time = nil
|
18
|
+
@result = nil
|
19
|
+
@file_type = nil
|
20
|
+
@key_modified = Hash.new
|
21
|
+
end
|
22
|
+
|
23
|
+
# The method to get the id
|
24
|
+
# @return A Integer value
|
25
|
+
|
26
|
+
def id
|
27
|
+
@id
|
28
|
+
end
|
29
|
+
|
30
|
+
# The method to set the value to id
|
31
|
+
# @param id [Integer] A Integer
|
32
|
+
|
33
|
+
def id=(id)
|
34
|
+
if id!=nil and !id.is_a? Integer
|
35
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
|
36
|
+
end
|
37
|
+
@id = id
|
38
|
+
@key_modified['id'] = 1
|
39
|
+
end
|
40
|
+
|
41
|
+
# The method to get the operation
|
42
|
+
# @return A String value
|
43
|
+
|
44
|
+
def operation
|
45
|
+
@operation
|
46
|
+
end
|
47
|
+
|
48
|
+
# The method to set the value to operation
|
49
|
+
# @param operation [String] A String
|
50
|
+
|
51
|
+
def operation=(operation)
|
52
|
+
if operation!=nil and !operation.is_a? String
|
53
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: operation EXPECTED TYPE: String', nil, nil)
|
54
|
+
end
|
55
|
+
@operation = operation
|
56
|
+
@key_modified['operation'] = 1
|
57
|
+
end
|
58
|
+
|
59
|
+
# The method to get the state
|
60
|
+
# @return An instance of Util::Choice
|
61
|
+
|
62
|
+
def state
|
63
|
+
@state
|
64
|
+
end
|
65
|
+
|
66
|
+
# The method to set the value to state
|
67
|
+
# @param state [Util::Choice] An instance of Util::Choice
|
68
|
+
|
69
|
+
def state=(state)
|
70
|
+
if state!=nil and !state.is_a? Util::Choice
|
71
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: state EXPECTED TYPE: Util::Choice', nil, nil)
|
72
|
+
end
|
73
|
+
@state = state
|
74
|
+
@key_modified['state'] = 1
|
75
|
+
end
|
76
|
+
|
77
|
+
# The method to get the query
|
78
|
+
# @return An instance of Query
|
79
|
+
|
80
|
+
def query
|
81
|
+
@query
|
82
|
+
end
|
83
|
+
|
84
|
+
# The method to set the value to query
|
85
|
+
# @param query [Query] An instance of Query
|
86
|
+
|
87
|
+
def query=(query)
|
88
|
+
if query!=nil and !query.is_a? Query
|
89
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: query EXPECTED TYPE: Query', nil, nil)
|
90
|
+
end
|
91
|
+
@query = query
|
92
|
+
@key_modified['query'] = 1
|
93
|
+
end
|
94
|
+
|
95
|
+
# The method to get the created_by
|
96
|
+
# @return An instance of Users::User
|
97
|
+
|
98
|
+
def created_by
|
99
|
+
@created_by
|
100
|
+
end
|
101
|
+
|
102
|
+
# The method to set the value to created_by
|
103
|
+
# @param created_by [Users::User] An instance of Users::User
|
104
|
+
|
105
|
+
def created_by=(created_by)
|
106
|
+
if created_by!=nil and !created_by.is_a? Users::User
|
107
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_by EXPECTED TYPE: User', nil, nil)
|
108
|
+
end
|
109
|
+
@created_by = created_by
|
110
|
+
@key_modified['created_by'] = 1
|
111
|
+
end
|
112
|
+
|
113
|
+
# The method to get the created_time
|
114
|
+
# @return An instance of DateTime
|
115
|
+
|
116
|
+
def created_time
|
117
|
+
@created_time
|
118
|
+
end
|
119
|
+
|
120
|
+
# The method to set the value to created_time
|
121
|
+
# @param created_time [DateTime] An instance of DateTime
|
122
|
+
|
123
|
+
def created_time=(created_time)
|
124
|
+
if created_time!=nil and !created_time.is_a? DateTime
|
125
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_time EXPECTED TYPE: DateTime', nil, nil)
|
126
|
+
end
|
127
|
+
@created_time = created_time
|
128
|
+
@key_modified['created_time'] = 1
|
129
|
+
end
|
130
|
+
|
131
|
+
# The method to get the result
|
132
|
+
# @return An instance of Result
|
133
|
+
|
134
|
+
def result
|
135
|
+
@result
|
136
|
+
end
|
137
|
+
|
138
|
+
# The method to set the value to result
|
139
|
+
# @param result [Result] An instance of Result
|
140
|
+
|
141
|
+
def result=(result)
|
142
|
+
if result!=nil and !result.is_a? Result
|
143
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: result EXPECTED TYPE: Result', nil, nil)
|
144
|
+
end
|
145
|
+
@result = result
|
146
|
+
@key_modified['result'] = 1
|
147
|
+
end
|
148
|
+
|
149
|
+
# The method to get the file_type
|
150
|
+
# @return A String value
|
151
|
+
|
152
|
+
def file_type
|
153
|
+
@file_type
|
154
|
+
end
|
155
|
+
|
156
|
+
# The method to set the value to file_type
|
157
|
+
# @param file_type [String] A String
|
158
|
+
|
159
|
+
def file_type=(file_type)
|
160
|
+
if file_type!=nil and !file_type.is_a? String
|
161
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: file_type EXPECTED TYPE: String', nil, nil)
|
162
|
+
end
|
163
|
+
@file_type = file_type
|
164
|
+
@key_modified['file_type'] = 1
|
165
|
+
end
|
166
|
+
|
167
|
+
# The method to check if the user has modified the given key
|
168
|
+
# @param key [String] A String
|
169
|
+
# @return A Integer value
|
170
|
+
|
171
|
+
def is_key_modified(key)
|
172
|
+
if key!=nil and !key.is_a? String
|
173
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
174
|
+
end
|
175
|
+
if @key_modified.key?(key)
|
176
|
+
return @key_modified[key]
|
177
|
+
end
|
178
|
+
|
179
|
+
nil
|
180
|
+
end
|
181
|
+
|
182
|
+
# The method to mark the given key as modified
|
183
|
+
# @param key [String] A String
|
184
|
+
# @param modification [Integer] A Integer
|
185
|
+
|
186
|
+
def set_key_modified(key, modification)
|
187
|
+
if key!=nil and !key.is_a? String
|
188
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
189
|
+
end
|
190
|
+
if modification!=nil and !modification.is_a? Integer
|
191
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
192
|
+
end
|
193
|
+
@key_modified[key] = modification
|
194
|
+
end
|
195
|
+
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
@@ -0,0 +1,139 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module BulkRead
|
5
|
+
class Query
|
6
|
+
include Util::Model
|
7
|
+
|
8
|
+
# Creates an instance of Query
|
9
|
+
def initialize
|
10
|
+
@module_1 = nil
|
11
|
+
@cvid = nil
|
12
|
+
@fields = nil
|
13
|
+
@page = nil
|
14
|
+
@criteria = nil
|
15
|
+
@key_modified = Hash.new
|
16
|
+
end
|
17
|
+
|
18
|
+
# The method to get the module
|
19
|
+
# @return A String value
|
20
|
+
|
21
|
+
def module
|
22
|
+
@module_1
|
23
|
+
end
|
24
|
+
|
25
|
+
# The method to set the value to module
|
26
|
+
# @param module_1 [String] A String
|
27
|
+
|
28
|
+
def module=(module_1)
|
29
|
+
if module_1!=nil and !module_1.is_a? String
|
30
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: module_1 EXPECTED TYPE: String', nil, nil)
|
31
|
+
end
|
32
|
+
@module_1 = module_1
|
33
|
+
@key_modified['module'] = 1
|
34
|
+
end
|
35
|
+
|
36
|
+
# The method to get the cvid
|
37
|
+
# @return A String value
|
38
|
+
|
39
|
+
def cvid
|
40
|
+
@cvid
|
41
|
+
end
|
42
|
+
|
43
|
+
# The method to set the value to cvid
|
44
|
+
# @param cvid [String] A String
|
45
|
+
|
46
|
+
def cvid=(cvid)
|
47
|
+
if cvid!=nil and !cvid.is_a? String
|
48
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: cvid EXPECTED TYPE: String', nil, nil)
|
49
|
+
end
|
50
|
+
@cvid = cvid
|
51
|
+
@key_modified['cvid'] = 1
|
52
|
+
end
|
53
|
+
|
54
|
+
# The method to get the fields
|
55
|
+
# @return An instance of Array
|
56
|
+
|
57
|
+
def fields
|
58
|
+
@fields
|
59
|
+
end
|
60
|
+
|
61
|
+
# The method to set the value to fields
|
62
|
+
# @param fields [Array] An instance of Array
|
63
|
+
|
64
|
+
def fields=(fields)
|
65
|
+
if fields!=nil and !fields.is_a? Array
|
66
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: fields EXPECTED TYPE: Array', nil, nil)
|
67
|
+
end
|
68
|
+
@fields = fields
|
69
|
+
@key_modified['fields'] = 1
|
70
|
+
end
|
71
|
+
|
72
|
+
# The method to get the page
|
73
|
+
# @return A Integer value
|
74
|
+
|
75
|
+
def page
|
76
|
+
@page
|
77
|
+
end
|
78
|
+
|
79
|
+
# The method to set the value to page
|
80
|
+
# @param page [Integer] A Integer
|
81
|
+
|
82
|
+
def page=(page)
|
83
|
+
if page!=nil and !page.is_a? Integer
|
84
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: page EXPECTED TYPE: Integer', nil, nil)
|
85
|
+
end
|
86
|
+
@page = page
|
87
|
+
@key_modified['page'] = 1
|
88
|
+
end
|
89
|
+
|
90
|
+
# The method to get the criteria
|
91
|
+
# @return An instance of Criteria
|
92
|
+
|
93
|
+
def criteria
|
94
|
+
@criteria
|
95
|
+
end
|
96
|
+
|
97
|
+
# The method to set the value to criteria
|
98
|
+
# @param criteria [Criteria] An instance of Criteria
|
99
|
+
|
100
|
+
def criteria=(criteria)
|
101
|
+
if criteria!=nil and !criteria.is_a? Criteria
|
102
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: criteria EXPECTED TYPE: Criteria', nil, nil)
|
103
|
+
end
|
104
|
+
@criteria = criteria
|
105
|
+
@key_modified['criteria'] = 1
|
106
|
+
end
|
107
|
+
|
108
|
+
# The method to check if the user has modified the given key
|
109
|
+
# @param key [String] A String
|
110
|
+
# @return A Integer value
|
111
|
+
|
112
|
+
def is_key_modified(key)
|
113
|
+
if key!=nil and !key.is_a? String
|
114
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
115
|
+
end
|
116
|
+
if @key_modified.key?(key)
|
117
|
+
return @key_modified[key]
|
118
|
+
end
|
119
|
+
|
120
|
+
nil
|
121
|
+
end
|
122
|
+
|
123
|
+
# The method to mark the given key as modified
|
124
|
+
# @param key [String] A String
|
125
|
+
# @param modification [Integer] A Integer
|
126
|
+
|
127
|
+
def set_key_modified(key, modification)
|
128
|
+
if key!=nil and !key.is_a? String
|
129
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
130
|
+
end
|
131
|
+
if modification!=nil and !modification.is_a? Integer
|
132
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
133
|
+
end
|
134
|
+
@key_modified[key] = modification
|
135
|
+
end
|
136
|
+
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
require_relative '../util/choice'
|
2
|
+
require_relative '../util/model'
|
3
|
+
|
4
|
+
module ZOHOCRMSDK
|
5
|
+
module BulkRead
|
6
|
+
class RequestWrapper
|
7
|
+
include Util::Model
|
8
|
+
|
9
|
+
# Creates an instance of RequestWrapper
|
10
|
+
def initialize
|
11
|
+
@callback = nil
|
12
|
+
@query = nil
|
13
|
+
@file_type = nil
|
14
|
+
@key_modified = Hash.new
|
15
|
+
end
|
16
|
+
|
17
|
+
# The method to get the callback
|
18
|
+
# @return An instance of CallBack
|
19
|
+
|
20
|
+
def callback
|
21
|
+
@callback
|
22
|
+
end
|
23
|
+
|
24
|
+
# The method to set the value to callback
|
25
|
+
# @param callback [CallBack] An instance of CallBack
|
26
|
+
|
27
|
+
def callback=(callback)
|
28
|
+
if callback!=nil and !callback.is_a? CallBack
|
29
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: callback EXPECTED TYPE: CallBack', nil, nil)
|
30
|
+
end
|
31
|
+
@callback = callback
|
32
|
+
@key_modified['callback'] = 1
|
33
|
+
end
|
34
|
+
|
35
|
+
# The method to get the query
|
36
|
+
# @return An instance of Query
|
37
|
+
|
38
|
+
def query
|
39
|
+
@query
|
40
|
+
end
|
41
|
+
|
42
|
+
# The method to set the value to query
|
43
|
+
# @param query [Query] An instance of Query
|
44
|
+
|
45
|
+
def query=(query)
|
46
|
+
if query!=nil and !query.is_a? Query
|
47
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: query EXPECTED TYPE: Query', nil, nil)
|
48
|
+
end
|
49
|
+
@query = query
|
50
|
+
@key_modified['query'] = 1
|
51
|
+
end
|
52
|
+
|
53
|
+
# The method to get the file_type
|
54
|
+
# @return An instance of Util::Choice
|
55
|
+
|
56
|
+
def file_type
|
57
|
+
@file_type
|
58
|
+
end
|
59
|
+
|
60
|
+
# The method to set the value to file_type
|
61
|
+
# @param file_type [Util::Choice] An instance of Util::Choice
|
62
|
+
|
63
|
+
def file_type=(file_type)
|
64
|
+
if file_type!=nil and !file_type.is_a? Util::Choice
|
65
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: file_type EXPECTED TYPE: Util::Choice', nil, nil)
|
66
|
+
end
|
67
|
+
@file_type = file_type
|
68
|
+
@key_modified['file_type'] = 1
|
69
|
+
end
|
70
|
+
|
71
|
+
# The method to check if the user has modified the given key
|
72
|
+
# @param key [String] A String
|
73
|
+
# @return A Integer value
|
74
|
+
|
75
|
+
def is_key_modified(key)
|
76
|
+
if key!=nil and !key.is_a? String
|
77
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
78
|
+
end
|
79
|
+
if @key_modified.key?(key)
|
80
|
+
return @key_modified[key]
|
81
|
+
end
|
82
|
+
|
83
|
+
nil
|
84
|
+
end
|
85
|
+
|
86
|
+
# The method to mark the given key as modified
|
87
|
+
# @param key [String] A String
|
88
|
+
# @param modification [Integer] A Integer
|
89
|
+
|
90
|
+
def set_key_modified(key, modification)
|
91
|
+
if key!=nil and !key.is_a? String
|
92
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
93
|
+
end
|
94
|
+
if modification!=nil and !modification.is_a? Integer
|
95
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
96
|
+
end
|
97
|
+
@key_modified[key] = modification
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module BulkRead
|
5
|
+
require_relative 'response_handler'
|
6
|
+
class ResponseWrapper
|
7
|
+
include Util::Model
|
8
|
+
include ResponseHandler
|
9
|
+
|
10
|
+
# Creates an instance of ResponseWrapper
|
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,139 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module BulkRead
|
5
|
+
class Result
|
6
|
+
include Util::Model
|
7
|
+
|
8
|
+
# Creates an instance of Result
|
9
|
+
def initialize
|
10
|
+
@page = nil
|
11
|
+
@count = nil
|
12
|
+
@download_url = nil
|
13
|
+
@per_page = nil
|
14
|
+
@more_records = nil
|
15
|
+
@key_modified = Hash.new
|
16
|
+
end
|
17
|
+
|
18
|
+
# The method to get the page
|
19
|
+
# @return A Integer value
|
20
|
+
|
21
|
+
def page
|
22
|
+
@page
|
23
|
+
end
|
24
|
+
|
25
|
+
# The method to set the value to page
|
26
|
+
# @param page [Integer] A Integer
|
27
|
+
|
28
|
+
def page=(page)
|
29
|
+
if page!=nil and !page.is_a? Integer
|
30
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: page EXPECTED TYPE: Integer', nil, nil)
|
31
|
+
end
|
32
|
+
@page = page
|
33
|
+
@key_modified['page'] = 1
|
34
|
+
end
|
35
|
+
|
36
|
+
# The method to get the count
|
37
|
+
# @return A Integer value
|
38
|
+
|
39
|
+
def count
|
40
|
+
@count
|
41
|
+
end
|
42
|
+
|
43
|
+
# The method to set the value to count
|
44
|
+
# @param count [Integer] A Integer
|
45
|
+
|
46
|
+
def count=(count)
|
47
|
+
if count!=nil and !count.is_a? Integer
|
48
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: count EXPECTED TYPE: Integer', nil, nil)
|
49
|
+
end
|
50
|
+
@count = count
|
51
|
+
@key_modified['count'] = 1
|
52
|
+
end
|
53
|
+
|
54
|
+
# The method to get the download_url
|
55
|
+
# @return A String value
|
56
|
+
|
57
|
+
def download_url
|
58
|
+
@download_url
|
59
|
+
end
|
60
|
+
|
61
|
+
# The method to set the value to download_url
|
62
|
+
# @param download_url [String] A String
|
63
|
+
|
64
|
+
def download_url=(download_url)
|
65
|
+
if download_url!=nil and !download_url.is_a? String
|
66
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: download_url EXPECTED TYPE: String', nil, nil)
|
67
|
+
end
|
68
|
+
@download_url = download_url
|
69
|
+
@key_modified['download_url'] = 1
|
70
|
+
end
|
71
|
+
|
72
|
+
# The method to get the per_page
|
73
|
+
# @return A Integer value
|
74
|
+
|
75
|
+
def per_page
|
76
|
+
@per_page
|
77
|
+
end
|
78
|
+
|
79
|
+
# The method to set the value to per_page
|
80
|
+
# @param per_page [Integer] A Integer
|
81
|
+
|
82
|
+
def per_page=(per_page)
|
83
|
+
if per_page!=nil and !per_page.is_a? Integer
|
84
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: per_page EXPECTED TYPE: Integer', nil, nil)
|
85
|
+
end
|
86
|
+
@per_page = per_page
|
87
|
+
@key_modified['per_page'] = 1
|
88
|
+
end
|
89
|
+
|
90
|
+
# The method to get the more_records
|
91
|
+
# @return A Boolean value
|
92
|
+
|
93
|
+
def more_records
|
94
|
+
@more_records
|
95
|
+
end
|
96
|
+
|
97
|
+
# The method to set the value to more_records
|
98
|
+
# @param more_records [Boolean] A Boolean
|
99
|
+
|
100
|
+
def more_records=(more_records)
|
101
|
+
if more_records!=nil and ! [true, false].include?more_records
|
102
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: more_records EXPECTED TYPE: Boolean', nil, nil)
|
103
|
+
end
|
104
|
+
@more_records = more_records
|
105
|
+
@key_modified['more_records'] = 1
|
106
|
+
end
|
107
|
+
|
108
|
+
# The method to check if the user has modified the given key
|
109
|
+
# @param key [String] A String
|
110
|
+
# @return A Integer value
|
111
|
+
|
112
|
+
def is_key_modified(key)
|
113
|
+
if key!=nil and !key.is_a? String
|
114
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
115
|
+
end
|
116
|
+
if @key_modified.key?(key)
|
117
|
+
return @key_modified[key]
|
118
|
+
end
|
119
|
+
|
120
|
+
nil
|
121
|
+
end
|
122
|
+
|
123
|
+
# The method to mark the given key as modified
|
124
|
+
# @param key [String] A String
|
125
|
+
# @param modification [Integer] A Integer
|
126
|
+
|
127
|
+
def set_key_modified(key, modification)
|
128
|
+
if key!=nil and !key.is_a? String
|
129
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
130
|
+
end
|
131
|
+
if modification!=nil and !modification.is_a? Integer
|
132
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
133
|
+
end
|
134
|
+
@key_modified[key] = modification
|
135
|
+
end
|
136
|
+
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|