ZOHOCRMSDK6_0 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/src/ZOHOCRMSDK6_0.rb +1302 -0
- data/src/com/zoho/api/authenticator/oauth_token.rb +425 -0
- data/src/com/zoho/api/authenticator/store/db_store.rb +279 -0
- data/src/com/zoho/api/authenticator/store/file_store.rb +280 -0
- data/src/com/zoho/api/authenticator/store/token_store.rb +31 -0
- data/src/com/zoho/api/authenticator/token.rb +14 -0
- data/src/com/zoho/api/logger/sdk_logger.rb +88 -0
- data/src/com/zoho/crm/api/appointment_preference/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/action_response.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/appointment_preference/appointment_preference.rb +159 -0
- data/src/com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/appointment_preference/deal_record_configuration.rb +101 -0
- data/src/com/zoho/crm/api/appointment_preference/field.rb +82 -0
- data/src/com/zoho/crm/api/appointment_preference/field_mappings.rb +102 -0
- data/src/com/zoho/crm/api/appointment_preference/layout.rb +82 -0
- data/src/com/zoho/crm/api/appointment_preference/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/success_response.rb +123 -0
- data/src/com/zoho/crm/api/assignment_rules/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rules.rb +235 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +75 -0
- data/src/com/zoho/crm/api/assignment_rules/default_assignee.rb +82 -0
- data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/assignment_rules/success_response.rb +121 -0
- data/src/com/zoho/crm/api/assignment_rules/user.rb +122 -0
- data/src/com/zoho/crm/api/associate_email/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/associate_email/action_response.rb +12 -0
- data/src/com/zoho/crm/api/associate_email/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/associate_email/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/associate_email/associate_email.rb +273 -0
- data/src/com/zoho/crm/api/associate_email/associate_email_operations.rb +49 -0
- data/src/com/zoho/crm/api/associate_email/attachments.rb +63 -0
- data/src/com/zoho/crm/api/associate_email/available.rb +101 -0
- data/src/com/zoho/crm/api/associate_email/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/associate_email/from.rb +82 -0
- data/src/com/zoho/crm/api/associate_email/linked_record.rb +82 -0
- data/src/com/zoho/crm/api/associate_email/module_map.rb +82 -0
- data/src/com/zoho/crm/api/associate_email/record.rb +101 -0
- data/src/com/zoho/crm/api/associate_email/success_response.rb +123 -0
- data/src/com/zoho/crm/api/associate_email/to.rb +82 -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 +125 -0
- data/src/com/zoho/crm/api/attachments/attachment.rb +368 -0
- data/src/com/zoho/crm/api/attachments/attachments_operations.rb +243 -0
- data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/attachments/info.rb +120 -0
- data/src/com/zoho/crm/api/attachments/owner.rb +101 -0
- data/src/com/zoho/crm/api/attachments/parent_id.rb +82 -0
- data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/attachments/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
- data/src/com/zoho/crm/api/available_currencies/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/available_currencies/available_currencies_operations.rb +30 -0
- data/src/com/zoho/crm/api/available_currencies/currency.rb +177 -0
- data/src/com/zoho/crm/api/available_currencies/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/available_currencies/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/backup/action_response.rb +12 -0
- data/src/com/zoho/crm/api/backup/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/backup/backup.rb +158 -0
- data/src/com/zoho/crm/api/backup/backup_operations.rb +136 -0
- data/src/com/zoho/crm/api/backup/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/backup/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/backup/history.rb +196 -0
- data/src/com/zoho/crm/api/backup/history_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/backup/info.rb +120 -0
- data/src/com/zoho/crm/api/backup/requester.rb +101 -0
- data/src/com/zoho/crm/api/backup/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/backup/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/success_response.rb +123 -0
- data/src/com/zoho/crm/api/backup/urls.rb +101 -0
- data/src/com/zoho/crm/api/backup/urls_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/blueprint/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/blueprint/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/blueprint/association_details.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/auto_number.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/blue_print.rb +121 -0
- data/src/com/zoho/crm/api/blueprint/blueprint_operations.rb +69 -0
- data/src/com/zoho/crm/api/blueprint/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/blueprint/convert_mapping.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/crypt.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/currency.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/escalation.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/field.rb +924 -0
- data/src/com/zoho/crm/api/blueprint/formula.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/layout.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/lookup_field.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/module.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/module_fields.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/module_mapping.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/multi_select_lookup.rb +158 -0
- data/src/com/zoho/crm/api/blueprint/next_transition.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/process_info.rb +253 -0
- data/src/com/zoho/crm/api/blueprint/profile.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/blueprint/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/blueprint/success_response.rb +123 -0
- data/src/com/zoho/crm/api/blueprint/tool_tip.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/transition.rb +330 -0
- data/src/com/zoho/crm/api/blueprint/view_type.rb +120 -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/body_wrapper.rb +102 -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 +176 -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/module_details.rb +82 -0
- data/src/com/zoho/crm/api/bulk_read/query.rb +160 -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/default_value.rb +98 -0
- data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +177 -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 +140 -0
- data/src/com/zoho/crm/api/bulk_write/resource.rb +236 -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/business_hours/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/business_hours/action_response.rb +12 -0
- data/src/com/zoho/crm/api/business_hours/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/business_hours/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/business_hours/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/business_hours/break_hours_custom_timing.rb +83 -0
- data/src/com/zoho/crm/api/business_hours/business_hours.rb +178 -0
- data/src/com/zoho/crm/api/business_hours/business_hours_operations.rb +90 -0
- data/src/com/zoho/crm/api/business_hours/features.rb +82 -0
- data/src/com/zoho/crm/api/business_hours/resources.rb +82 -0
- data/src/com/zoho/crm/api/business_hours/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/business_hours/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/business_hours/success_response.rb +123 -0
- data/src/com/zoho/crm/api/cancel_meetings/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/cancel_meetings/action_response.rb +12 -0
- data/src/com/zoho/crm/api/cancel_meetings/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/cancel_meetings/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/cancel_meetings/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/cancel_meetings/cancel_meetings_operations.rb +43 -0
- data/src/com/zoho/crm/api/cancel_meetings/notify.rb +63 -0
- data/src/com/zoho/crm/api/cancel_meetings/success_response.rb +123 -0
- data/src/com/zoho/crm/api/change_owner/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/change_owner/action_response.rb +12 -0
- data/src/com/zoho/crm/api/change_owner/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/change_owner/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/change_owner/body_wrapper.rb +101 -0
- data/src/com/zoho/crm/api/change_owner/change_owner_operations.rb +71 -0
- data/src/com/zoho/crm/api/change_owner/error_details.rb +82 -0
- data/src/com/zoho/crm/api/change_owner/mass_wrapper.rb +122 -0
- data/src/com/zoho/crm/api/change_owner/owner.rb +63 -0
- data/src/com/zoho/crm/api/change_owner/related_modules.rb +82 -0
- data/src/com/zoho/crm/api/change_owner/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 +127 -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_roles_operations.rb +163 -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/conversion_option/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/conversion_option/conversion_option_operations.rb +40 -0
- data/src/com/zoho/crm/api/conversion_option/conversion_options.rb +160 -0
- data/src/com/zoho/crm/api/conversion_option/field.rb +82 -0
- data/src/com/zoho/crm/api/conversion_option/preference_field_match.rb +82 -0
- data/src/com/zoho/crm/api/conversion_option/preference_field_matched_value.rb +101 -0
- data/src/com/zoho/crm/api/conversion_option/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/conversion_option/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/convert_lead/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/convert_lead/action_response.rb +12 -0
- data/src/com/zoho/crm/api/convert_lead/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/convert_lead/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/convert_lead/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/convert_lead/carry_over_tags.rb +101 -0
- data/src/com/zoho/crm/api/convert_lead/convert_lead_operations.rb +47 -0
- data/src/com/zoho/crm/api/convert_lead/lead_converter.rb +218 -0
- data/src/com/zoho/crm/api/convert_lead/success_response.rb +123 -0
- data/src/com/zoho/crm/api/coql/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/coql/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/coql/clause_details.rb +65 -0
- data/src/com/zoho/crm/api/coql/coql_operations.rb +36 -0
- data/src/com/zoho/crm/api/coql/details_wrapper.rb +12 -0
- data/src/com/zoho/crm/api/coql/parse_error_details.rb +103 -0
- data/src/com/zoho/crm/api/coql/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/coql/response_wrapper.rb +86 -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.rb +292 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_response.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 +158 -0
- data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
- data/src/com/zoho/crm/api/currencies/error_details.rb +82 -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 +125 -0
- data/src/com/zoho/crm/api/custom_views/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/action_response.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/custom_views/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/custom_views/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
- data/src/com/zoho/crm/api/custom_views/custom_views.rb +463 -0
- data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
- data/src/com/zoho/crm/api/custom_views/field.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/fields.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
- data/src/com/zoho/crm/api/custom_views/owner.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/pin_fields.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/pin_unpin_fields.rb +63 -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_to.rb +121 -0
- data/src/com/zoho/crm/api/custom_views/sort_by.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/success_response.rb +123 -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/ca_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 +76 -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/deal_contact_roles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/deal_contact_roles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/deal_contact_roles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/deal_contact_roles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/deal_contact_roles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/deal_contact_roles/contact_role.rb +82 -0
- data/src/com/zoho/crm/api/deal_contact_roles/data.rb +154 -0
- data/src/com/zoho/crm/api/deal_contact_roles/deal_contact_roles_operations.rb +141 -0
- data/src/com/zoho/crm/api/deal_contact_roles/error_details.rb +82 -0
- data/src/com/zoho/crm/api/deal_contact_roles/info.rb +177 -0
- data/src/com/zoho/crm/api/deal_contact_roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/deal_contact_roles/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/deal_contact_roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/definition/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/definition/definition.rb +101 -0
- data/src/com/zoho/crm/api/definition/minified_property.rb +158 -0
- data/src/com/zoho/crm/api/definition/minified_property1.rb +139 -0
- data/src/com/zoho/crm/api/definition/property.rb +272 -0
- data/src/com/zoho/crm/api/definition/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/digest/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/digest/action_response.rb +12 -0
- data/src/com/zoho/crm/api/digest/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/digest/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/digest/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/digest/dependee.rb +82 -0
- data/src/com/zoho/crm/api/digest/digest.rb +101 -0
- data/src/com/zoho/crm/api/digest/digest_operations.rb +37 -0
- data/src/com/zoho/crm/api/digest/success_response.rb +123 -0
- data/src/com/zoho/crm/api/download_attachments/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/download_attachments/download_attachments_operations.rb +60 -0
- data/src/com/zoho/crm/api/download_attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/download_attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/download_inline_images/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb +64 -0
- data/src/com/zoho/crm/api/download_inline_images/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/download_inline_images/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_compose_meta/data.rb +63 -0
- data/src/com/zoho/crm/api/email_compose_meta/data_map.rb +139 -0
- data/src/com/zoho/crm/api/email_compose_meta/features_available.rb +349 -0
- data/src/com/zoho/crm/api/email_compose_meta/from_address.rb +140 -0
- data/src/com/zoho/crm/api/email_compose_meta/signature.rb +82 -0
- data/src/com/zoho/crm/api/email_compose_meta/user.rb +139 -0
- data/src/com/zoho/crm/api/email_drafts/action_response.rb +12 -0
- data/src/com/zoho/crm/api/email_drafts/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/email_drafts/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_drafts/attachments.rb +120 -0
- data/src/com/zoho/crm/api/email_drafts/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/email_drafts/email_drafts.rb +367 -0
- data/src/com/zoho/crm/api/email_drafts/inventory_details.rb +121 -0
- data/src/com/zoho/crm/api/email_drafts/inventory_template.rb +82 -0
- data/src/com/zoho/crm/api/email_drafts/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/email_drafts/schedule_details.rb +101 -0
- data/src/com/zoho/crm/api/email_drafts/success_response.rb +123 -0
- data/src/com/zoho/crm/api/email_drafts/template.rb +82 -0
- data/src/com/zoho/crm/api/email_drafts/to.rb +82 -0
- data/src/com/zoho/crm/api/email_related_records/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_related_records/attachments.rb +101 -0
- data/src/com/zoho/crm/api/email_related_records/criteria.rb +102 -0
- data/src/com/zoho/crm/api/email_related_records/email.rb +537 -0
- data/src/com/zoho/crm/api/email_related_records/email_related_records_operations.rb +94 -0
- data/src/com/zoho/crm/api/email_related_records/field.rb +63 -0
- data/src/com/zoho/crm/api/email_related_records/info.rb +139 -0
- data/src/com/zoho/crm/api/email_related_records/linked_record.rb +101 -0
- data/src/com/zoho/crm/api/email_related_records/module.rb +82 -0
- data/src/com/zoho/crm/api/email_related_records/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_related_records/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/email_related_records/status.rb +177 -0
- data/src/com/zoho/crm/api/email_related_records/user_details.rb +82 -0
- data/src/com/zoho/crm/api/email_sharing_details/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_sharing_details/email_sharing_details_operations.rb +44 -0
- data/src/com/zoho/crm/api/email_sharing_details/email_sharings.rb +82 -0
- data/src/com/zoho/crm/api/email_sharing_details/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_sharing_details/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/email_sharing_details/share_from_user.rb +101 -0
- data/src/com/zoho/crm/api/email_templates/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_templates/attachment.rb +120 -0
- data/src/com/zoho/crm/api/email_templates/email_template.rb +452 -0
- data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +63 -0
- data/src/com/zoho/crm/api/email_templates/info.rb +120 -0
- data/src/com/zoho/crm/api/email_templates/last_version_statistics.rb +158 -0
- data/src/com/zoho/crm/api/email_templates/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/entity_scores/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/entity_scores/entity.rb +101 -0
- data/src/com/zoho/crm/api/entity_scores/entity_scores.rb +253 -0
- data/src/com/zoho/crm/api/entity_scores/entity_scores_operations.rb +114 -0
- data/src/com/zoho/crm/api/entity_scores/info.rb +215 -0
- data/src/com/zoho/crm/api/entity_scores/module.rb +82 -0
- data/src/com/zoho/crm/api/entity_scores/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/entity_scores/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/entity_scores/scoring_rule.rb +82 -0
- data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
- data/src/com/zoho/crm/api/features/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/features/component.rb +120 -0
- data/src/com/zoho/crm/api/features/detail.rb +82 -0
- data/src/com/zoho/crm/api/features/feature.rb +158 -0
- data/src/com/zoho/crm/api/features/features_operations.rb +93 -0
- data/src/com/zoho/crm/api/features/info.rb +120 -0
- data/src/com/zoho/crm/api/features/limit.rb +82 -0
- data/src/com/zoho/crm/api/features/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/features/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/field_attachments/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +54 -0
- data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/field_attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/action_response.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/field_map_dependency/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/field_map_dependency/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/field_map_dependency/child.rb +82 -0
- data/src/com/zoho/crm/api/field_map_dependency/field_map_dependency_operations.rb +181 -0
- data/src/com/zoho/crm/api/field_map_dependency/info.rb +120 -0
- data/src/com/zoho/crm/api/field_map_dependency/map_dependency.rb +215 -0
- data/src/com/zoho/crm/api/field_map_dependency/parent.rb +82 -0
- data/src/com/zoho/crm/api/field_map_dependency/pick_list_mapping.rb +120 -0
- data/src/com/zoho/crm/api/field_map_dependency/picklist_map.rb +120 -0
- data/src/com/zoho/crm/api/field_map_dependency/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/field_map_dependency/sub_module.rb +82 -0
- data/src/com/zoho/crm/api/field_map_dependency/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fields/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/fields/action_response.rb +12 -0
- data/src/com/zoho/crm/api/fields/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fields/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/fields/association_details.rb +83 -0
- data/src/com/zoho/crm/api/fields/auto_number.rb +120 -0
- data/src/com/zoho/crm/api/fields/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/fields/convert_mapping.rb +101 -0
- data/src/com/zoho/crm/api/fields/criteria.rb +136 -0
- data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
- data/src/com/zoho/crm/api/fields/currency.rb +83 -0
- data/src/com/zoho/crm/api/fields/email_parser.rb +82 -0
- data/src/com/zoho/crm/api/fields/expression.rb +101 -0
- data/src/com/zoho/crm/api/fields/external.rb +101 -0
- data/src/com/zoho/crm/api/fields/fields.rb +1506 -0
- data/src/com/zoho/crm/api/fields/fields_operations.rb +212 -0
- data/src/com/zoho/crm/api/fields/file_upolad_option.rb +82 -0
- data/src/com/zoho/crm/api/fields/forecast_category.rb +82 -0
- data/src/com/zoho/crm/api/fields/formula.rb +82 -0
- data/src/com/zoho/crm/api/fields/function_parameter.rb +63 -0
- data/src/com/zoho/crm/api/fields/hipaa_compliance.rb +82 -0
- data/src/com/zoho/crm/api/fields/history_tracking.rb +83 -0
- data/src/com/zoho/crm/api/fields/history_tracking_module.rb +159 -0
- data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
- data/src/com/zoho/crm/api/fields/maps.rb +82 -0
- data/src/com/zoho/crm/api/fields/minified_field.rb +82 -0
- data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +102 -0
- data/src/com/zoho/crm/api/fields/multiselectlookup.rb +216 -0
- data/src/com/zoho/crm/api/fields/operation_type.rb +120 -0
- data/src/com/zoho/crm/api/fields/pick_list_value.rb +273 -0
- data/src/com/zoho/crm/api/fields/private.rb +101 -0
- data/src/com/zoho/crm/api/fields/profile.rb +101 -0
- data/src/com/zoho/crm/api/fields/query_details.rb +82 -0
- data/src/com/zoho/crm/api/fields/refer_from_field.rb +82 -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/rollup_criteria.rb +98 -0
- data/src/com/zoho/crm/api/fields/rollup_summary.rb +139 -0
- data/src/com/zoho/crm/api/fields/sharing_properties.rb +102 -0
- data/src/com/zoho/crm/api/fields/show_fields.rb +82 -0
- data/src/com/zoho/crm/api/fields/subform.rb +82 -0
- data/src/com/zoho/crm/api/fields/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fields/textarea.rb +63 -0
- data/src/com/zoho/crm/api/fields/tooltip.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 +125 -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/files_operations.rb +80 -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/find_and_merge/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/find_and_merge/action_response.rb +12 -0
- data/src/com/zoho/crm/api/find_and_merge/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/find_and_merge/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/find_and_merge/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/find_and_merge/data_fields.rb +82 -0
- data/src/com/zoho/crm/api/find_and_merge/find_and_merge_operations.rb +83 -0
- data/src/com/zoho/crm/api/find_and_merge/image_data.rb +63 -0
- data/src/com/zoho/crm/api/find_and_merge/master_record_fields.rb +82 -0
- data/src/com/zoho/crm/api/find_and_merge/merge.rb +120 -0
- data/src/com/zoho/crm/api/find_and_merge/merge_data.rb +82 -0
- data/src/com/zoho/crm/api/find_and_merge/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/find_and_merge/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/find_and_merge/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fiscal_year/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/fiscal_year/action_response.rb +12 -0
- data/src/com/zoho/crm/api/fiscal_year/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fiscal_year/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/fiscal_year/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/fiscal_year/fiscal_year_operations.rb +51 -0
- data/src/com/zoho/crm/api/fiscal_year/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/fiscal_year/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fiscal_year/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fiscal_year/year.rb +102 -0
- data/src/com/zoho/crm/api/from_addresses/address.rb +139 -0
- data/src/com/zoho/crm/api/from_addresses/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/from_addresses/from_addresses_operations.rb +30 -0
- data/src/com/zoho/crm/api/from_addresses/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/from_addresses/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/action_response.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/api_exception.rb +137 -0
- data/src/com/zoho/crm/api/global_picklists/association.rb +101 -0
- data/src/com/zoho/crm/api/global_picklists/associations_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/associations_response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/global_picklists/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/global_picklists/field.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/global_picklists_operations.rb +313 -0
- data/src/com/zoho/crm/api/global_picklists/info.rb +120 -0
- data/src/com/zoho/crm/api/global_picklists/layout.rb +101 -0
- data/src/com/zoho/crm/api/global_picklists/module.rb +101 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values.rb +140 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values_association.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/picklist.rb +273 -0
- data/src/com/zoho/crm/api/global_picklists/replace_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/replace_action_response.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/replace_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/replace_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/global_picklists/replace_picklist_value.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/replace_picklist_values.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/replace_success_response.rb +123 -0
- data/src/com/zoho/crm/api/global_picklists/replaced_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/replaced_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/replaced_value.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/resource.rb +102 -0
- data/src/com/zoho/crm/api/global_picklists/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/success_response.rb +123 -0
- data/src/com/zoho/crm/api/header.rb +12 -0
- data/src/com/zoho/crm/api/header_map.rb +63 -0
- data/src/com/zoho/crm/api/hipaa_compliance/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/hipaa_compliance/action_response.rb +12 -0
- data/src/com/zoho/crm/api/hipaa_compliance/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/hipaa_compliance/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/hipaa_compliance/hipaa_compliance.rb +158 -0
- data/src/com/zoho/crm/api/hipaa_compliance/modules.rb +82 -0
- data/src/com/zoho/crm/api/hipaa_compliance/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/hipaa_compliance/success_response.rb +123 -0
- data/src/com/zoho/crm/api/holidays/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/holidays/action_response.rb +12 -0
- data/src/com/zoho/crm/api/holidays/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/holidays/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/holidays/body_wrapper.rb +12 -0
- data/src/com/zoho/crm/api/holidays/business_holiday.rb +101 -0
- data/src/com/zoho/crm/api/holidays/create_business_holiday.rb +65 -0
- data/src/com/zoho/crm/api/holidays/create_shift_holiday.rb +65 -0
- data/src/com/zoho/crm/api/holidays/holiday.rb +158 -0
- data/src/com/zoho/crm/api/holidays/holidays.rb +63 -0
- data/src/com/zoho/crm/api/holidays/holidays_operations.rb +189 -0
- data/src/com/zoho/crm/api/holidays/info.rb +120 -0
- data/src/com/zoho/crm/api/holidays/resonse_handler.rb +12 -0
- data/src/com/zoho/crm/api/holidays/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/holidays/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/holidays/shift_holiday.rb +121 -0
- data/src/com/zoho/crm/api/holidays/shift_hour.rb +82 -0
- data/src/com/zoho/crm/api/holidays/success_response.rb +123 -0
- data/src/com/zoho/crm/api/initializer.rb +232 -0
- data/src/com/zoho/crm/api/inventory_convert/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/inventory_convert/convert_to.rb +82 -0
- data/src/com/zoho/crm/api/inventory_convert/inventory_converter.rb +63 -0
- data/src/com/zoho/crm/api/inventory_convert/module.rb +82 -0
- data/src/com/zoho/crm/api/inventory_convert/record.rb +82 -0
- data/src/com/zoho/crm/api/inventory_convert/success_response.rb +121 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/body_wrapper.rb +120 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/convert_to.rb +82 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/module.rb +82 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/related_modules.rb +82 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/success_response.rb +121 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/user.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/inventory_templates/folder.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/info.rb +120 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_templates.rb +333 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +75 -0
- data/src/com/zoho/crm/api/inventory_templates/module_map.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/inventory_templates/user.rb +82 -0
- data/src/com/zoho/crm/api/isc_signature/signature.rb +60 -0
- data/src/com/zoho/crm/api/layouts/action_response.rb +12 -0
- data/src/com/zoho/crm/api/layouts/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/layouts/actions_allowed.rb +177 -0
- data/src/com/zoho/crm/api/layouts/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/layouts/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/layouts/convert_mapping.rb +139 -0
- data/src/com/zoho/crm/api/layouts/deal_field.rb +120 -0
- data/src/com/zoho/crm/api/layouts/deal_layout_mapping.rb +103 -0
- data/src/com/zoho/crm/api/layouts/default_assignment_view.rb +101 -0
- data/src/com/zoho/crm/api/layouts/default_view.rb +101 -0
- data/src/com/zoho/crm/api/layouts/layouts.rb +425 -0
- data/src/com/zoho/crm/api/layouts/layouts_operations.rb +81 -0
- data/src/com/zoho/crm/api/layouts/minified_layout.rb +82 -0
- data/src/com/zoho/crm/api/layouts/profiles.rb +139 -0
- data/src/com/zoho/crm/api/layouts/properties.rb +101 -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_field.rb +1609 -0
- data/src/com/zoho/crm/api/layouts/section_subform_field.rb +101 -0
- data/src/com/zoho/crm/api/layouts/sections.rb +272 -0
- data/src/com/zoho/crm/api/layouts/static_values.rb +101 -0
- data/src/com/zoho/crm/api/layouts/success_response.rb +123 -0
- data/src/com/zoho/crm/api/layouts/tooltip.rb +83 -0
- data/src/com/zoho/crm/api/mail_merge/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mail_merge/address.rb +82 -0
- data/src/com/zoho/crm/api/mail_merge/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/mail_merge/download_mail_merge.rb +121 -0
- data/src/com/zoho/crm/api/mail_merge/download_mail_merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/download_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge.rb +215 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge_operations.rb +101 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge_template.rb +82 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/sign_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/sign_action_response.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/sign_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mail_merge/sign_mail_merge.rb +120 -0
- data/src/com/zoho/crm/api/mail_merge/sign_mail_merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/signers.rb +102 -0
- data/src/com/zoho/crm/api/mail_merge/success_response.rb +125 -0
- data/src/com/zoho/crm/api/mass_change_owner/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_change_owner/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_change_owner/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_change_owner/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/mass_change_owner/body_wrapper.rb +120 -0
- data/src/com/zoho/crm/api/mass_change_owner/criteria.rb +136 -0
- data/src/com/zoho/crm/api/mass_change_owner/field.rb +82 -0
- data/src/com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb +73 -0
- data/src/com/zoho/crm/api/mass_change_owner/owner.rb +82 -0
- data/src/com/zoho/crm/api/mass_change_owner/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_change_owner/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_change_owner/status.rb +140 -0
- data/src/com/zoho/crm/api/mass_change_owner/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_change_owner/territory.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_convert/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/mass_convert/assign_to.rb +63 -0
- data/src/com/zoho/crm/api/mass_convert/body_wrapper.rb +197 -0
- data/src/com/zoho/crm/api/mass_convert/error_details.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/mass_convert_operations.rb +68 -0
- data/src/com/zoho/crm/api/mass_convert/move_attachments_to.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/portal_user_type.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/related_module.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_convert/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_convert/status.rb +139 -0
- data/src/com/zoho/crm/api/mass_convert/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/cvid_body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_cvid_operations.rb +95 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/status.rb +121 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/territory.rb +82 -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/lookup_field.rb +103 -0
- data/src/com/zoho/crm/api/modules/lookup_field_properties.rb +63 -0
- data/src/com/zoho/crm/api/modules/minified_module.rb +120 -0
- data/src/com/zoho/crm/api/modules/module_field_lookup.rb +181 -0
- data/src/com/zoho/crm/api/modules/module_fields.rb +1531 -0
- data/src/com/zoho/crm/api/modules/modules.rb +1285 -0
- data/src/com/zoho/crm/api/modules/modules_operations.rb +133 -0
- data/src/com/zoho/crm/api/modules/related_list_properties.rb +102 -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/sharing_properties.rb +102 -0
- data/src/com/zoho/crm/api/modules/static_subform_field.rb +82 -0
- data/src/com/zoho/crm/api/modules/static_subform_properties.rb +63 -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 +215 -0
- data/src/com/zoho/crm/api/notes/note.rb +351 -0
- data/src/com/zoho/crm/api/notes/notes_operations.rb +233 -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/notifications/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/notifications/action_response.rb +12 -0
- data/src/com/zoho/crm/api/notifications/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/notifications/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/notifications/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notifications/criteria.rb +136 -0
- data/src/com/zoho/crm/api/notifications/event.rb +158 -0
- data/src/com/zoho/crm/api/notifications/field.rb +82 -0
- data/src/com/zoho/crm/api/notifications/info.rb +120 -0
- data/src/com/zoho/crm/api/notifications/module.rb +82 -0
- data/src/com/zoho/crm/api/notifications/notification.rb +294 -0
- data/src/com/zoho/crm/api/notifications/notification_condition.rb +101 -0
- data/src/com/zoho/crm/api/notifications/notifications_operations.rb +165 -0
- data/src/com/zoho/crm/api/notifications/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/notifications/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/notifications/success_response.rb +123 -0
- data/src/com/zoho/crm/api/org/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/org/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/org/api_exception.rb +182 -0
- data/src/com/zoho/crm/api/org/checkin_preferences.rb +63 -0
- data/src/com/zoho/crm/api/org/feature.rb +82 -0
- data/src/com/zoho/crm/api/org/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/org/hierarchy_preferences.rb +83 -0
- data/src/com/zoho/crm/api/org/license_details.rb +177 -0
- data/src/com/zoho/crm/api/org/org.rb +862 -0
- data/src/com/zoho/crm/api/org/org_operations.rb +82 -0
- data/src/com/zoho/crm/api/org/resource.rb +82 -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 +62 -0
- data/src/com/zoho/crm/api/pipeline/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/action_response.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/pipeline/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/d_pipeline.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/d_pipeline_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/delete.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/forecast_category.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/json_details.rb +101 -0
- data/src/com/zoho/crm/api/pipeline/maps.rb +196 -0
- data/src/com/zoho/crm/api/pipeline/pipeline.rb +177 -0
- data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +195 -0
- data/src/com/zoho/crm/api/pipeline/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/pipeline/stages.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
- data/src/com/zoho/crm/api/pipeline/t_pipeline.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_response.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_success_response.rb +123 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/portal_invite/action_response.rb +12 -0
- data/src/com/zoho/crm/api/portal_invite/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portal_invite/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/portal_invite/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/data.rb +12 -0
- data/src/com/zoho/crm/api/portal_invite/job_response.rb +101 -0
- data/src/com/zoho/crm/api/portal_invite/portal.rb +121 -0
- data/src/com/zoho/crm/api/portal_invite/portal_invite.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/portal_invite_operations.rb +66 -0
- data/src/com/zoho/crm/api/portal_invite/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/success_response.rb +125 -0
- data/src/com/zoho/crm/api/portal_user_type/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/portal_user_type/action_response.rb +12 -0
- data/src/com/zoho/crm/api/portal_user_type/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portal_user_type/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/portal_user_type/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_user_type/fields.rb +101 -0
- data/src/com/zoho/crm/api/portal_user_type/filters.rb +101 -0
- data/src/com/zoho/crm/api/portal_user_type/layouts.rb +120 -0
- data/src/com/zoho/crm/api/portal_user_type/modules.rb +215 -0
- data/src/com/zoho/crm/api/portal_user_type/owner.rb +82 -0
- data/src/com/zoho/crm/api/portal_user_type/permissions.rb +177 -0
- data/src/com/zoho/crm/api/portal_user_type/personality_module.rb +101 -0
- data/src/com/zoho/crm/api/portal_user_type/portal_user_type_operations.rb +144 -0
- data/src/com/zoho/crm/api/portal_user_type/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/portal_user_type/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portal_user_type/success_response.rb +123 -0
- data/src/com/zoho/crm/api/portal_user_type/user_type.rb +253 -0
- data/src/com/zoho/crm/api/portal_user_type/views.rb +120 -0
- data/src/com/zoho/crm/api/portals/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/portals/action_response.rb +12 -0
- data/src/com/zoho/crm/api/portals/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portals/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/portals/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portals/owner.rb +82 -0
- data/src/com/zoho/crm/api/portals/portals.rb +177 -0
- data/src/com/zoho/crm/api/portals/portals_operations.rb +96 -0
- data/src/com/zoho/crm/api/portals/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/portals/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portals/success_response.rb +123 -0
- data/src/com/zoho/crm/api/portals_meta/filters.rb +101 -0
- data/src/com/zoho/crm/api/portals_meta/layouts.rb +101 -0
- data/src/com/zoho/crm/api/portals_meta/modules.rb +177 -0
- data/src/com/zoho/crm/api/portals_meta/related_lists.rb +63 -0
- data/src/com/zoho/crm/api/portals_meta/views.rb +120 -0
- data/src/com/zoho/crm/api/portals_meta/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/privacy_configurable_apps/apps.rb +63 -0
- data/src/com/zoho/crm/api/privacy_configurable_apps/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/privacy_preference/config.rb +101 -0
- data/src/com/zoho/crm/api/privacy_preference/option.rb +120 -0
- data/src/com/zoho/crm/api/privacy_preference/preference.rb +462 -0
- data/src/com/zoho/crm/api/privacy_preference/privacy_preference.rb +82 -0
- data/src/com/zoho/crm/api/privacy_preference/section.rb +139 -0
- data/src/com/zoho/crm/api/privacy_preference/tpt.rb +101 -0
- data/src/com/zoho/crm/api/privacy_preference/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/profiles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/profiles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/profiles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/profiles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/profiles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/profiles/category.rb +12 -0
- data/src/com/zoho/crm/api/profiles/category_module.rb +122 -0
- data/src/com/zoho/crm/api/profiles/category_others.rb +103 -0
- data/src/com/zoho/crm/api/profiles/default_view.rb +101 -0
- data/src/com/zoho/crm/api/profiles/info.rb +63 -0
- data/src/com/zoho/crm/api/profiles/minified_profile.rb +101 -0
- data/src/com/zoho/crm/api/profiles/permission_detail.rb +177 -0
- data/src/com/zoho/crm/api/profiles/profile.rb +369 -0
- data/src/com/zoho/crm/api/profiles/profiles_operations.rb +152 -0
- data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/profiles/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/profiles/section.rb +82 -0
- data/src/com/zoho/crm/api/profiles/success_response.rb +125 -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 +143 -0
- data/src/com/zoho/crm/api/record/body_wrapper.rb +158 -0
- data/src/com/zoho/crm/api/record/comment.rb +120 -0
- data/src/com/zoho/crm/api/record/consent.rb +307 -0
- data/src/com/zoho/crm/api/record/count_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/count_wrapper.rb +65 -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/duplicate_record.rb +103 -0
- data/src/com/zoho/crm/api/record/field.rb +2870 -0
- data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
- data/src/com/zoho/crm/api/record/file_details.rb +139 -0
- data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/image_upload.rb +311 -0
- data/src/com/zoho/crm/api/record/info.rb +253 -0
- data/src/com/zoho/crm/api/record/line_item_product.rb +171 -0
- data/src/com/zoho/crm/api/record/line_tax.rb +139 -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/mass_update_territory.rb +82 -0
- data/src/com/zoho/crm/api/record/multi_select_lookup.rb +101 -0
- data/src/com/zoho/crm/api/record/multi_select_picklist.rb +82 -0
- data/src/com/zoho/crm/api/record/options.rb +32 -0
- data/src/com/zoho/crm/api/record/participants.rb +222 -0
- data/src/com/zoho/crm/api/record/price_book.rb +137 -0
- data/src/com/zoho/crm/api/record/pricing_details.rb +188 -0
- data/src/com/zoho/crm/api/record/record.rb +211 -0
- data/src/com/zoho/crm/api/record/record_operations.rb +1045 -0
- data/src/com/zoho/crm/api/record/recurring_activity.rb +82 -0
- data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
- data/src/com/zoho/crm/api/record/reminder.rb +101 -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/tax.rb +82 -0
- data/src/com/zoho/crm/api/record/territory.rb +140 -0
- data/src/com/zoho/crm/api/record/time_range.rb +82 -0
- data/src/com/zoho/crm/api/record/widget.rb +82 -0
- data/src/com/zoho/crm/api/record/wizard.rb +82 -0
- data/src/com/zoho/crm/api/record_locking/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record_locking/action_response.rb +12 -0
- data/src/com/zoho/crm/api/record_locking/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record_locking/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/record_locking/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking/info.rb +253 -0
- data/src/com/zoho/crm/api/record_locking/lock_record.rb +63 -0
- data/src/com/zoho/crm/api/record_locking/locked_for_s.rb +101 -0
- data/src/com/zoho/crm/api/record_locking/record_lock.rb +257 -0
- data/src/com/zoho/crm/api/record_locking/record_locking_operations.rb +186 -0
- data/src/com/zoho/crm/api/record_locking/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/record_locking/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record_locking/success_response.rb +161 -0
- data/src/com/zoho/crm/api/record_locking_configuration/action_response.rb +12 -0
- data/src/com/zoho/crm/api/record_locking_configuration/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking_configuration/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/record_locking_configuration/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking_configuration/criteria.rb +136 -0
- data/src/com/zoho/crm/api/record_locking_configuration/dependee.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/field.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/lock_excluded_profile.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/locking_rules.rb +120 -0
- data/src/com/zoho/crm/api/record_locking_configuration/record_lock.rb +351 -0
- data/src/com/zoho/crm/api/record_locking_configuration/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking_configuration/restricted_custom_button.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/success_response.rb +123 -0
- data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/related_lists/field.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/module_map.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/related_list.rb +386 -0
- data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +82 -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 +677 -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/reschedule_history/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/action_response.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/reschedule_history/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/reschedule_history/appointment_name.rb +82 -0
- data/src/com/zoho/crm/api/reschedule_history/approval.rb +120 -0
- data/src/com/zoho/crm/api/reschedule_history/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/reschedule_history/info.rb +177 -0
- data/src/com/zoho/crm/api/reschedule_history/reschedule_history.rb +557 -0
- data/src/com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb +177 -0
- data/src/com/zoho/crm/api/reschedule_history/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/reschedule_history/success_response.rb +123 -0
- data/src/com/zoho/crm/api/reschedule_history/user.rb +101 -0
- data/src/com/zoho/crm/api/roles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/roles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/roles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/roles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/roles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/roles/reporting_to.rb +82 -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 +273 -0
- data/src/com/zoho/crm/api/roles/roles_operations.rb +150 -0
- data/src/com/zoho/crm/api/roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/scoring_rules/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/action_response.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/scoring_rules/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/scoring_rules/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/scoring_rules/criteria.rb +136 -0
- data/src/com/zoho/crm/api/scoring_rules/expected_field.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/field.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/field_rule.rb +101 -0
- data/src/com/zoho/crm/api/scoring_rules/info.rb +215 -0
- data/src/com/zoho/crm/api/scoring_rules/layout.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/layout_request_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/scoring_rules/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/scoring_rules/role_request_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/scoring_rules/scoring_rule.rb +274 -0
- data/src/com/zoho/crm/api/scoring_rules/scoring_rules_operations.rb +332 -0
- data/src/com/zoho/crm/api/scoring_rules/signal.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/signal_rule.rb +101 -0
- data/src/com/zoho/crm/api/scoring_rules/success_response.rb +125 -0
- data/src/com/zoho/crm/api/sdk_config.rb +15 -0
- data/src/com/zoho/crm/api/send_mail/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/action_response.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/send_mail/attachment.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/blocked_email_address.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/cc.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/data.rb +368 -0
- data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/from.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/in_reply_to.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/inventory_details.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/inventory_template.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/linked_module.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/linked_record.rb +101 -0
- data/src/com/zoho/crm/api/send_mail/owner.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +51 -0
- data/src/com/zoho/crm/api/send_mail/success_response.rb +123 -0
- data/src/com/zoho/crm/api/send_mail/template.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/to.rb +82 -0
- data/src/com/zoho/crm/api/service_preference/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/service_preference/action_response.rb +12 -0
- data/src/com/zoho/crm/api/service_preference/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/service_preference/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/service_preference/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/service_preference/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/service_preference/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/service_preference/service_preference.rb +63 -0
- data/src/com/zoho/crm/api/service_preference/service_preference_operations.rb +51 -0
- data/src/com/zoho/crm/api/service_preference/success_response.rb +123 -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 +84 -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 +101 -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/dependee.rb +82 -0
- data/src/com/zoho/crm/api/share_records/module.rb +101 -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 +198 -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 +120 -0
- data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
- data/src/com/zoho/crm/api/shift_hours/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/shift_hours/action_response.rb +12 -0
- data/src/com/zoho/crm/api/shift_hours/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/shift_hours/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/shift_hours/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/shift_hours/break_custom_timing.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/break_hours.rb +139 -0
- data/src/com/zoho/crm/api/shift_hours/holidays.rb +120 -0
- data/src/com/zoho/crm/api/shift_hours/mandatory_details.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/shift_hours/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/shift_hours/role.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/shift_count.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/shift_custom_timing.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/shift_hours.rb +253 -0
- data/src/com/zoho/crm/api/shift_hours/shift_hours_operations.rb +166 -0
- data/src/com/zoho/crm/api/shift_hours/success_response.rb +123 -0
- data/src/com/zoho/crm/api/shift_hours/users.rb +158 -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 +131 -0
- data/src/com/zoho/crm/api/tags/associated_places.rb +82 -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_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/tags/error_details.rb +82 -0
- data/src/com/zoho/crm/api/tags/existing_tag.rb +82 -0
- data/src/com/zoho/crm/api/tags/existing_tag_request_wrapper.rb +82 -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/new_tag_request_wrapper.rb +101 -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/record_detail_tag.rb +101 -0
- data/src/com/zoho/crm/api/tags/record_success_response.rb +123 -0
- data/src/com/zoho/crm/api/tags/resources.rb +101 -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 +123 -0
- data/src/com/zoho/crm/api/tags/success_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/tags/tag.rb +179 -0
- data/src/com/zoho/crm/api/tags/tags_operations.rb +385 -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/expected_field.rb +82 -0
- data/src/com/zoho/crm/api/taxes/org_tax.rb +82 -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 +65 -0
- data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
- data/src/com/zoho/crm/api/taxes/tax.rb +158 -0
- data/src/com/zoho/crm/api/taxes/taxes_operations.rb +70 -0
- data/src/com/zoho/crm/api/templates/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/templates/folder.rb +82 -0
- data/src/com/zoho/crm/api/templates/templates.rb +234 -0
- data/src/com/zoho/crm/api/templates/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/territories/action_response.rb +12 -0
- data/src/com/zoho/crm/api/territories/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/territories/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/territories/associated_users_count.rb +82 -0
- data/src/com/zoho/crm/api/territories/associated_users_count_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/territories/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/criteria.rb +136 -0
- data/src/com/zoho/crm/api/territories/deleted_associated_territories.rb +121 -0
- data/src/com/zoho/crm/api/territories/deleted_associated_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/territories/field.rb +82 -0
- data/src/com/zoho/crm/api/territories/info.rb +120 -0
- data/src/com/zoho/crm/api/territories/manager.rb +82 -0
- data/src/com/zoho/crm/api/territories/minified_territory.rb +101 -0
- data/src/com/zoho/crm/api/territories/reporting_to.rb +82 -0
- data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/territories/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/territories/success_response.rb +123 -0
- data/src/com/zoho/crm/api/territories/territories.rb +293 -0
- data/src/com/zoho/crm/api/territories/territories_operations.rb +283 -0
- data/src/com/zoho/crm/api/territories/transfer_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/transfer_territory.rb +101 -0
- data/src/com/zoho/crm/api/territory_users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/territory_users/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/territory_users/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/territory_users/info.rb +120 -0
- data/src/com/zoho/crm/api/territory_users/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/response_wrapper.rb +85 -0
- data/src/com/zoho/crm/api/territory_users/success_response.rb +123 -0
- data/src/com/zoho/crm/api/territory_users/territory_users_operations.rb +172 -0
- data/src/com/zoho/crm/api/timelines/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/timelines/automation_detail.rb +101 -0
- data/src/com/zoho/crm/api/timelines/field_history.rb +177 -0
- data/src/com/zoho/crm/api/timelines/field_history_value.rb +82 -0
- data/src/com/zoho/crm/api/timelines/info.rb +158 -0
- data/src/com/zoho/crm/api/timelines/module.rb +82 -0
- data/src/com/zoho/crm/api/timelines/name_id_structure.rb +82 -0
- data/src/com/zoho/crm/api/timelines/path_finder.rb +101 -0
- data/src/com/zoho/crm/api/timelines/picklist_detail.rb +158 -0
- data/src/com/zoho/crm/api/timelines/record.rb +101 -0
- data/src/com/zoho/crm/api/timelines/related_record.rb +101 -0
- data/src/com/zoho/crm/api/timelines/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/timelines/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/timelines/state.rb +120 -0
- data/src/com/zoho/crm/api/timelines/timeline.rb +253 -0
- data/src/com/zoho/crm/api/timelines/timelines_operations.rb +89 -0
- data/src/com/zoho/crm/api/unblock_email/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/unblock_email/action_response.rb +12 -0
- data/src/com/zoho/crm/api/unblock_email/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unblock_email/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/unblock_email/body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/unblock_email/success_response.rb +122 -0
- data/src/com/zoho/crm/api/unblock_email/unblock_email_operations.rb +71 -0
- data/src/com/zoho/crm/api/unsubscribe_links/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/action_response.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unsubscribe_links/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/unsubscribe_links/associated_places.rb +101 -0
- data/src/com/zoho/crm/api/unsubscribe_links/association_details.rb +82 -0
- data/src/com/zoho/crm/api/unsubscribe_links/associations_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/associations_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unsubscribe_links/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/unsubscribe_links/detail.rb +63 -0
- data/src/com/zoho/crm/api/unsubscribe_links/module.rb +82 -0
- data/src/com/zoho/crm/api/unsubscribe_links/resource.rb +82 -0
- data/src/com/zoho/crm/api/unsubscribe_links/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unsubscribe_links/success_response.rb +123 -0
- data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links.rb +330 -0
- data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links_operations.rb +149 -0
- data/src/com/zoho/crm/api/unsubscribe_links/user.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/user_groups/associated_user.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/associated_user_count.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/association_module.rb +64 -0
- data/src/com/zoho/crm/api/user_groups/association_response.rb +101 -0
- data/src/com/zoho/crm/api/user_groups/association_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/groups.rb +196 -0
- data/src/com/zoho/crm/api/user_groups/info.rb +120 -0
- data/src/com/zoho/crm/api/user_groups/jobs.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/jobs_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/owner.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/resource.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/source.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/sources.rb +121 -0
- data/src/com/zoho/crm/api/user_groups/sources_count.rb +120 -0
- data/src/com/zoho/crm/api/user_groups/sources_count_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/sources_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/success_response.rb +123 -0
- data/src/com/zoho/crm/api/user_groups/user_group.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/user_groups_operations.rb +260 -0
- data/src/com/zoho/crm/api/user_groups/users.rb +101 -0
- data/src/com/zoho/crm/api/user_signature.rb +15 -0
- data/src/com/zoho/crm/api/user_type_users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_type_users/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/user_type_users/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_type_users/info.rb +139 -0
- data/src/com/zoho/crm/api/user_type_users/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_type_users/status_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/status_action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/status_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_type_users/success_response.rb +125 -0
- data/src/com/zoho/crm/api/user_type_users/user_type_users_operations.rb +164 -0
- data/src/com/zoho/crm/api/user_type_users/users.rb +196 -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/associated_group.rb +177 -0
- data/src/com/zoho/crm/api/users/associated_groups_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users/customize_info.rb +146 -0
- data/src/com/zoho/crm/api/users/info.rb +120 -0
- data/src/com/zoho/crm/api/users/minified_user.rb +101 -0
- data/src/com/zoho/crm/api/users/owner.rb +120 -0
- data/src/com/zoho/crm/api/users/profile.rb +82 -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/role.rb +82 -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.rb +83 -0
- data/src/com/zoho/crm/api/users/theme.rb +159 -0
- data/src/com/zoho/crm/api/users/users.rb +1086 -0
- data/src/com/zoho/crm/api/users/users_operations.rb +209 -0
- data/src/com/zoho/crm/api/users_territories/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/action_wrappe.rb +65 -0
- data/src/com/zoho/crm/api/users_territories/action_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users_territories/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/users_territories/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_territories/bulk_validation.rb +141 -0
- data/src/com/zoho/crm/api/users_territories/info.rb +120 -0
- data/src/com/zoho/crm/api/users_territories/manager.rb +82 -0
- data/src/com/zoho/crm/api/users_territories/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users_territories/success_response.rb +125 -0
- data/src/com/zoho/crm/api/users_territories/territory.rb +120 -0
- data/src/com/zoho/crm/api/users_territories/transfer_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/transfer_action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/transfer_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_territories/transfer_and_delink.rb +82 -0
- data/src/com/zoho/crm/api/users_territories/transfer_to_user.rb +63 -0
- data/src/com/zoho/crm/api/users_territories/transfer_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_territories/users_territories_operations.rb +169 -0
- data/src/com/zoho/crm/api/users_territories/validation.rb +103 -0
- data/src/com/zoho/crm/api/users_territories/validation_group.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/validation_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/validation_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_transfer_delete/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_transfer_delete/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_transfer_delete/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_transfer_delete/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/users_transfer_delete/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_transfer_delete/move_subordinate.rb +63 -0
- data/src/com/zoho/crm/api/users_transfer_delete/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_transfer_delete/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_transfer_delete/status.rb +63 -0
- data/src/com/zoho/crm/api/users_transfer_delete/success_response.rb +123 -0
- data/src/com/zoho/crm/api/users_transfer_delete/transfer.rb +120 -0
- data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete.rb +101 -0
- data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete_by_id.rb +82 -0
- data/src/com/zoho/crm/api/users_transfer_delete/users_transfer_delete_operations.rb +92 -0
- data/src/com/zoho/crm/api/users_unavailability/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_unavailability/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_unavailability/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_unavailability/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/users_unavailability/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_unavailability/info.rb +120 -0
- data/src/com/zoho/crm/api/users_unavailability/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_unavailability/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users_unavailability/success_response.rb +123 -0
- data/src/com/zoho/crm/api/users_unavailability/user.rb +101 -0
- data/src/com/zoho/crm/api/users_unavailability/users_unavailability.rb +234 -0
- data/src/com/zoho/crm/api/users_unavailability/users_unavailability_operations.rb +181 -0
- data/src/com/zoho/crm/api/util/api_http_connector.rb +125 -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 +240 -0
- data/src/com/zoho/crm/api/util/constants.rb +755 -0
- data/src/com/zoho/crm/api/util/converter.rb +297 -0
- data/src/com/zoho/crm/api/util/data_type_converter.rb +194 -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 +86 -0
- data/src/com/zoho/crm/api/util/json_converter.rb +772 -0
- data/src/com/zoho/crm/api/util/model.rb +7 -0
- data/src/com/zoho/crm/api/util/module_fields_handler.rb +91 -0
- data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
- data/src/com/zoho/crm/api/util/utility.rb +1000 -0
- data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/variable_groups/minified_variable_group.rb +82 -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 +158 -0
- data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +68 -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 +213 -0
- data/src/com/zoho/crm/api/variables/variable_group.rb +101 -0
- data/src/com/zoho/crm/api/variables/variables_operations.rb +267 -0
- data/src/com/zoho/crm/api/webforms/abtesting.rb +120 -0
- data/src/com/zoho/crm/api/webforms/acknowledge_visitor.rb +82 -0
- data/src/com/zoho/crm/api/webforms/acknowledge_visitors.rb +101 -0
- data/src/com/zoho/crm/api/webforms/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/webforms/action_response.rb +12 -0
- data/src/com/zoho/crm/api/webforms/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/webforms/analytics_data.rb +139 -0
- data/src/com/zoho/crm/api/webforms/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/webforms/assignment_rule.rb +82 -0
- data/src/com/zoho/crm/api/webforms/auto_response_rule.rb +63 -0
- data/src/com/zoho/crm/api/webforms/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/webforms/button_attributes.rb +82 -0
- data/src/com/zoho/crm/api/webforms/fields.rb +348 -0
- data/src/com/zoho/crm/api/webforms/font_attributes.rb +101 -0
- data/src/com/zoho/crm/api/webforms/form_attributes.rb +139 -0
- data/src/com/zoho/crm/api/webforms/from_address.rb +82 -0
- data/src/com/zoho/crm/api/webforms/layout.rb +82 -0
- data/src/com/zoho/crm/api/webforms/module.rb +101 -0
- data/src/com/zoho/crm/api/webforms/owner.rb +82 -0
- data/src/com/zoho/crm/api/webforms/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/webforms/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/webforms/spam_controll.rb +82 -0
- data/src/com/zoho/crm/api/webforms/success_response.rb +123 -0
- data/src/com/zoho/crm/api/webforms/suggestion.rb +82 -0
- data/src/com/zoho/crm/api/webforms/tags.rb +82 -0
- data/src/com/zoho/crm/api/webforms/user.rb +82 -0
- data/src/com/zoho/crm/api/webforms/web_form.rb +804 -0
- data/src/com/zoho/crm/api/webforms/webforms_operations.rb +190 -0
- data/src/com/zoho/crm/api/wizards/actions.rb +176 -0
- data/src/com/zoho/crm/api/wizards/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/wizards/button.rb +326 -0
- data/src/com/zoho/crm/api/wizards/button_background.rb +63 -0
- data/src/com/zoho/crm/api/wizards/chart_data.rb +139 -0
- data/src/com/zoho/crm/api/wizards/conditional_rules.rb +121 -0
- data/src/com/zoho/crm/api/wizards/connection.rb +101 -0
- data/src/com/zoho/crm/api/wizards/container.rb +121 -0
- data/src/com/zoho/crm/api/wizards/criteria.rb +136 -0
- data/src/com/zoho/crm/api/wizards/element.rb +82 -0
- data/src/com/zoho/crm/api/wizards/exempted_portal_user_type.rb +63 -0
- data/src/com/zoho/crm/api/wizards/field.rb +82 -0
- data/src/com/zoho/crm/api/wizards/message.rb +82 -0
- data/src/com/zoho/crm/api/wizards/node.rb +120 -0
- data/src/com/zoho/crm/api/wizards/portal_user_type.rb +121 -0
- data/src/com/zoho/crm/api/wizards/resource.rb +82 -0
- data/src/com/zoho/crm/api/wizards/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/wizards/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/wizards/screen.rb +158 -0
- data/src/com/zoho/crm/api/wizards/segment.rb +197 -0
- data/src/com/zoho/crm/api/wizards/transition.rb +82 -0
- data/src/com/zoho/crm/api/wizards/wizard.rb +313 -0
- data/src/com/zoho/crm/api/wizards/wizards_operations.rb +63 -0
- data/src/resources/json_details.json +1 -0
- data/src/version.rb +3 -0
- metadata +1461 -0
@@ -0,0 +1,1302 @@
|
|
1
|
+
require 'version.rb'
|
2
|
+
require 'com/zoho/crm/api/attachments/success_response.rb'
|
3
|
+
require 'com/zoho/crm/api/tags/error_details.rb'
|
4
|
+
require 'com/zoho/crm/api/taxes/action_response.rb'
|
5
|
+
require 'com/zoho/crm/api/blueprint/profile.rb'
|
6
|
+
require 'com/zoho/crm/api/contact_roles/response_wrapper.rb'
|
7
|
+
require 'com/zoho/crm/api/user_groups/api_exception.rb'
|
8
|
+
require 'com/zoho/crm/api/wizards/button.rb'
|
9
|
+
require 'com/zoho/crm/api/holidays/create_business_holiday.rb'
|
10
|
+
require 'com/zoho/crm/api/portals/action_response.rb'
|
11
|
+
require 'com/zoho/crm/api/tags/tag.rb'
|
12
|
+
require 'com/zoho/crm/api/users/owner.rb'
|
13
|
+
require 'com/zoho/crm/api/inventory_mass_convert/related_modules.rb'
|
14
|
+
require 'com/zoho/crm/api/tags/tags_operations.rb'
|
15
|
+
require 'com/zoho/crm/api/shift_hours/body_wrapper.rb'
|
16
|
+
require 'com/zoho/crm/api/reschedule_history/action_response.rb'
|
17
|
+
require 'com/zoho/crm/api/field_map_dependency/child.rb'
|
18
|
+
require 'com/zoho/crm/api/record_locking/success_response.rb'
|
19
|
+
require 'com/zoho/crm/api/inventory_templates/inventory_templates.rb'
|
20
|
+
require 'com/zoho/crm/api/territories/api_exception.rb'
|
21
|
+
require 'com/zoho/crm/api/user_groups/sources_wrapper.rb'
|
22
|
+
require 'com/zoho/crm/api/deal_contact_roles/action_response.rb'
|
23
|
+
require 'com/zoho/crm/api/field_map_dependency/info.rb'
|
24
|
+
require 'com/zoho/crm/api/definition/minified_property.rb'
|
25
|
+
require 'com/zoho/crm/api/wizards/segment.rb'
|
26
|
+
require 'com/zoho/crm/api/pipeline/t_pipeline.rb'
|
27
|
+
require 'com/zoho/crm/api/roles/roles_operations.rb'
|
28
|
+
require 'com/zoho/crm/api/variables/action_wrapper.rb'
|
29
|
+
require 'com/zoho/crm/api/portal_invite/body_wrapper.rb'
|
30
|
+
require 'com/zoho/crm/api/backup/response_handler.rb'
|
31
|
+
require 'com/zoho/crm/api/email_related_records/attachments.rb'
|
32
|
+
require 'com/zoho/crm/api/email_sharing_details/email_sharings.rb'
|
33
|
+
require 'com/zoho/crm/api/users_territories/response_wrapper.rb'
|
34
|
+
require 'com/zoho/crm/api/users_unavailability/action_handler.rb'
|
35
|
+
require 'com/zoho/crm/api/mass_delete_cvid/success_response.rb'
|
36
|
+
require 'com/zoho/crm/api/users_unavailability/action_wrapper.rb'
|
37
|
+
require 'com/zoho/crm/api/associate_email/associate_email.rb'
|
38
|
+
require 'com/zoho/crm/api/user_groups/jobs.rb'
|
39
|
+
require 'com/zoho/crm/api/scoring_rules/action_handler.rb'
|
40
|
+
require 'com/zoho/crm/api/inventory_templates/response_handler.rb'
|
41
|
+
require 'com/zoho/crm/api/scoring_rules/action_wrapper.rb'
|
42
|
+
require 'com/zoho/crm/api/webforms/analytics_data.rb'
|
43
|
+
require 'com/zoho/crm/api/fields/expression.rb'
|
44
|
+
require 'com/zoho/crm/api/files/action_response.rb'
|
45
|
+
require 'com/zoho/crm/api/privacy_configurable_apps/wrapper.rb'
|
46
|
+
require 'com/zoho/crm/api/tags/response_wrapper.rb'
|
47
|
+
require 'com/zoho/crm/api/inventory_templates/response_wrapper.rb'
|
48
|
+
require 'com/zoho/crm/api/inventory_convert/module.rb'
|
49
|
+
require 'com/zoho/crm/api/territories/response_handler.rb'
|
50
|
+
require 'com/zoho/crm/api/users_unavailability/users_unavailability_operations.rb'
|
51
|
+
require 'com/zoho/crm/api/fields/api_exception.rb'
|
52
|
+
require 'com/zoho/crm/api/email_drafts/template.rb'
|
53
|
+
require 'com/zoho/crm/api/backup/response_wrapper.rb'
|
54
|
+
require 'com/zoho/crm/api/users_transfer_delete/users_transfer_delete_operations.rb'
|
55
|
+
require 'com/zoho/crm/api/send_mail/inventory_template.rb'
|
56
|
+
require 'com/zoho/crm/api/unsubscribe_links/module.rb'
|
57
|
+
require 'com/zoho/crm/api/related_records/body_wrapper.rb'
|
58
|
+
require 'com/zoho/crm/api/users_territories/response_handler.rb'
|
59
|
+
require 'com/zoho/crm/api/notes/action_wrapper.rb'
|
60
|
+
require 'com/zoho/crm/api/user_type_users/success_response.rb'
|
61
|
+
require 'com/zoho/crm/api/currencies/base_currency.rb'
|
62
|
+
require 'com/zoho/crm/api/currencies/error_details.rb'
|
63
|
+
require 'com/zoho/crm/api/bulk_write/success_response.rb'
|
64
|
+
require 'com/zoho/crm/api/isc_signature/signature.rb'
|
65
|
+
require 'com/zoho/crm/api/send_mail/inventory_details.rb'
|
66
|
+
require 'com/zoho/crm/api/record/file_handler.rb'
|
67
|
+
require 'com/zoho/crm/api/timelines/related_record.rb'
|
68
|
+
require 'com/zoho/crm/api/global_picklists/action_handler.rb'
|
69
|
+
require 'com/zoho/crm/api/record_locking_configuration/response_wrapper.rb'
|
70
|
+
require 'com/zoho/crm/api/tags/response_handler.rb'
|
71
|
+
require 'com/zoho/crm/api/users/info.rb'
|
72
|
+
require 'com/zoho/crm/api/modules/action_wrapper.rb'
|
73
|
+
require 'com/zoho/crm/api/appointment_preference/deal_record_configuration.rb'
|
74
|
+
require 'com/zoho/crm/api/features/response_wrapper.rb'
|
75
|
+
require 'com/zoho/crm/api/territories/response_wrapper.rb'
|
76
|
+
require 'com/zoho/crm/api/share_records/share_records_operations.rb'
|
77
|
+
require 'com/zoho/crm/api/coql/response_wrapper.rb'
|
78
|
+
require 'com/zoho/crm/api/user_groups/users.rb'
|
79
|
+
require 'com/zoho/crm/api/mass_convert/success_response.rb'
|
80
|
+
require 'com/zoho/crm/api/fields/pick_list_value.rb'
|
81
|
+
require 'com/zoho/crm/api/scoring_rules/response_handler.rb'
|
82
|
+
require 'com/zoho/crm/api/tags/action_wrapper.rb'
|
83
|
+
require 'com/zoho/crm/api/assignment_rules/default_assignee.rb'
|
84
|
+
require 'com/zoho/crm/api/layouts/layouts.rb'
|
85
|
+
require 'com/zoho/crm/api/timelines/name_id_structure.rb'
|
86
|
+
require 'com/zoho/crm/api/pipeline/body_wrapper.rb'
|
87
|
+
require 'com/zoho/crm/api/modules/module_field_lookup.rb'
|
88
|
+
require 'com/zoho/crm/api/mail_merge/sign_action_wrapper.rb'
|
89
|
+
require 'com/zoho/crm/api/pipeline/transfer_pipeline_action_response.rb'
|
90
|
+
require 'com/zoho/crm/api/blueprint/field.rb'
|
91
|
+
require 'com/zoho/crm/api/backup/info.rb'
|
92
|
+
require 'com/zoho/crm/api/users_transfer_delete/success_response.rb'
|
93
|
+
require 'com/zoho/crm/api/custom_views/action_response.rb'
|
94
|
+
require 'com/zoho/crm/api/business_hours/break_hours_custom_timing.rb'
|
95
|
+
require 'com/zoho/crm/api/profiles/minified_profile.rb'
|
96
|
+
require 'com/zoho/crm/api/email_related_records/info.rb'
|
97
|
+
require 'com/zoho/crm/api/files/success_response.rb'
|
98
|
+
require 'com/zoho/crm/api/mass_convert/response_wrapper.rb'
|
99
|
+
require 'com/zoho/crm/api/users_transfer_delete/body_wrapper.rb'
|
100
|
+
require 'com/zoho/crm/api/tags/record_action_handler.rb'
|
101
|
+
require 'com/zoho/crm/api/related_lists/related_list.rb'
|
102
|
+
require 'com/zoho/crm/api/scoring_rules/criteria.rb'
|
103
|
+
require 'com/zoho/crm/api/variables/variable_group.rb'
|
104
|
+
require 'com/zoho/crm/api/bulk_read/action_handler.rb'
|
105
|
+
require 'com/zoho/crm/api/record/file_body_wrapper.rb'
|
106
|
+
require 'com/zoho/crm/api/change_owner/action_response.rb'
|
107
|
+
require 'com/zoho/crm/api/fields/formula.rb'
|
108
|
+
require 'com/zoho/crm/api/user_groups/body_wrapper.rb'
|
109
|
+
require 'com/zoho/crm/api/fields/action_response.rb'
|
110
|
+
require 'com/zoho/crm/api/wizards/element.rb'
|
111
|
+
require 'com/zoho/crm/api/attachments/action_response.rb'
|
112
|
+
require 'com/zoho/crm/api/record/participants.rb'
|
113
|
+
require 'com/zoho/crm/api/download_attachments/response_handler.rb'
|
114
|
+
require 'com/zoho/crm/api/change_owner/api_exception.rb'
|
115
|
+
require 'com/zoho/crm/api/holidays/shift_hour.rb'
|
116
|
+
require 'com/zoho/crm/api/taxes/action_wrapper.rb'
|
117
|
+
require 'com/zoho/crm/api/mail_merge/action_response.rb'
|
118
|
+
require 'com/zoho/crm/api/definition/api_exception.rb'
|
119
|
+
require 'com/zoho/crm/api/record/file_details.rb'
|
120
|
+
require 'com/zoho/crm/api/user_groups/sources_count.rb'
|
121
|
+
require 'com/zoho/crm/api/unblock_email/action_handler.rb'
|
122
|
+
require 'com/zoho/crm/api/coql/clause_details.rb'
|
123
|
+
require 'com/zoho/crm/api/mass_delete_cvid/action_response.rb'
|
124
|
+
require 'com/zoho/crm/api/service_preference/body_wrapper.rb'
|
125
|
+
require 'com/zoho/crm/api/features/feature.rb'
|
126
|
+
require 'com/zoho/crm/api/users_territories/action_handler.rb'
|
127
|
+
require 'com/zoho/crm/api/wizards/button_background.rb'
|
128
|
+
require 'com/zoho/crm/api/send_mail/cc.rb'
|
129
|
+
require 'com/zoho/crm/api/record_locking/action_wrapper.rb'
|
130
|
+
require 'com/zoho/crm/api/cancel_meetings/action_response.rb'
|
131
|
+
require 'com/zoho/crm/api/record_locking/api_exception.rb'
|
132
|
+
require 'com/zoho/crm/api/email_related_records/response_handler.rb'
|
133
|
+
require 'com/zoho/crm/api/blueprint/transition.rb'
|
134
|
+
require 'com/zoho/crm/api/users_territories/transfer_to_user.rb'
|
135
|
+
require 'com/zoho/crm/api/holidays/holiday.rb'
|
136
|
+
require 'com/zoho/crm/api/pipeline/transfer_pipeline_wrapper.rb'
|
137
|
+
require 'com/zoho/crm/api/record/multi_select_lookup.rb'
|
138
|
+
require 'com/zoho/crm/api/blueprint/process_info.rb'
|
139
|
+
require 'com/zoho/crm/api/fiscal_year/body_wrapper.rb'
|
140
|
+
require 'com/zoho/crm/api/timelines/field_history_value.rb'
|
141
|
+
require 'com/zoho/crm/api/associate_email/body_wrapper.rb'
|
142
|
+
require 'com/zoho/crm/api/webforms/tags.rb'
|
143
|
+
require 'com/zoho/crm/api/users_territories/action_wrappe.rb'
|
144
|
+
require 'com/zoho/crm/api/holidays/response_handler.rb'
|
145
|
+
require 'com/zoho/crm/api/tags/action_handler.rb'
|
146
|
+
require 'com/zoho/crm/api/notes/success_response.rb'
|
147
|
+
require 'com/zoho/crm/api/scoring_rules/layout_request_wrapper.rb'
|
148
|
+
require 'com/zoho/crm/api/fiscal_year/response_handler.rb'
|
149
|
+
require 'com/zoho/crm/api/deal_contact_roles/data.rb'
|
150
|
+
require 'com/zoho/crm/api/mail_merge/sign_action_handler.rb'
|
151
|
+
require 'com/zoho/crm/api/fields/criteria.rb'
|
152
|
+
require 'com/zoho/crm/api/coql/response_handler.rb'
|
153
|
+
require 'com/zoho/crm/api/email_compose_meta/features_available.rb'
|
154
|
+
require 'com/zoho/crm/api/convert_lead/lead_converter.rb'
|
155
|
+
require 'com/zoho/crm/api/fields/subform.rb'
|
156
|
+
require 'com/zoho/crm/api/email_templates/api_exception.rb'
|
157
|
+
require 'com/zoho/crm/api/features/component.rb'
|
158
|
+
require 'com/zoho/crm/api/privacy_preference/wrapper.rb'
|
159
|
+
require 'com/zoho/crm/api/fields/history_tracking.rb'
|
160
|
+
require 'com/zoho/crm/api/files/body_wrapper.rb'
|
161
|
+
require 'com/zoho/crm/api/blueprint/module.rb'
|
162
|
+
require 'com/zoho/crm/api/users_territories/transfer_action_response.rb'
|
163
|
+
require 'com/zoho/crm/api/associate_email/api_exception.rb'
|
164
|
+
require 'com/zoho/crm/api/digest/digest.rb'
|
165
|
+
require 'com/zoho/crm/api/territories/action_handler.rb'
|
166
|
+
require 'com/zoho/crm/api/record_locking_configuration/lock_excluded_profile.rb'
|
167
|
+
require 'com/zoho/crm/api/mass_convert/response_handler.rb'
|
168
|
+
require 'com/zoho/crm/api/modules/modules_operations.rb'
|
169
|
+
require 'com/zoho/crm/api/appointment_preference/field.rb'
|
170
|
+
require 'com/zoho/crm/api/portal_invite/portal_invite_operations.rb'
|
171
|
+
require 'com/zoho/crm/api/unsubscribe_links/response_wrapper.rb'
|
172
|
+
require 'com/zoho/crm/api/contact_roles/success_response.rb'
|
173
|
+
require 'com/zoho/crm/api/available_currencies/response_handler.rb'
|
174
|
+
require 'com/zoho/crm/api/shift_hours/break_custom_timing.rb'
|
175
|
+
require 'com/zoho/crm/api/email_templates/attachment.rb'
|
176
|
+
require 'com/zoho/crm/api/inventory_templates/module_map.rb'
|
177
|
+
require 'com/zoho/crm/api/email_related_records/linked_record.rb'
|
178
|
+
require 'com/zoho/crm/api/user_groups/resource.rb'
|
179
|
+
require 'com/zoho/crm/api/associate_email/module_map.rb'
|
180
|
+
require 'com/zoho/crm/api/assignment_rules/user.rb'
|
181
|
+
require 'com/zoho/crm/api/blueprint/api_exception.rb'
|
182
|
+
require 'com/zoho/crm/api/from_addresses/from_addresses_operations.rb'
|
183
|
+
require 'com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb'
|
184
|
+
require 'com/zoho/crm/api/record/mass_update.rb'
|
185
|
+
require 'com/zoho/crm/api/roles/body_wrapper.rb'
|
186
|
+
require 'com/zoho/crm/api/mail_merge/action_handler.rb'
|
187
|
+
require 'com/zoho/crm/api/files/files_operations.rb'
|
188
|
+
require 'com/zoho/crm/api/notifications/event.rb'
|
189
|
+
require 'com/zoho/crm/api/portal_user_type/user_type.rb'
|
190
|
+
require 'com/zoho/crm/api/users/associated_groups_wrapper.rb'
|
191
|
+
require 'com/zoho/crm/api/record/price_book.rb'
|
192
|
+
require 'com/zoho/crm/api/fields/auto_number.rb'
|
193
|
+
require 'com/zoho/crm/api/inventory_convert/success_response.rb'
|
194
|
+
require 'com/zoho/crm/api/variables/action_handler.rb'
|
195
|
+
require 'com/zoho/crm/api/pipeline/d_pipeline_wrapper.rb'
|
196
|
+
require 'com/zoho/crm/api/users_unavailability/info.rb'
|
197
|
+
require 'com/zoho/crm/api/bulk_read/job_detail.rb'
|
198
|
+
require 'com/zoho/crm/api/user_groups/user_groups_operations.rb'
|
199
|
+
require 'com/zoho/crm/api/webforms/user.rb'
|
200
|
+
require 'com/zoho/crm/api/email_templates/info.rb'
|
201
|
+
require 'com/zoho/crm/api/timelines/field_history.rb'
|
202
|
+
require 'com/zoho/crm/api/timelines/picklist_detail.rb'
|
203
|
+
require 'com/zoho/crm/api/currencies/api_exception.rb'
|
204
|
+
require 'com/zoho/crm/api/cancel_meetings/api_exception.rb'
|
205
|
+
require 'com/zoho/crm/api/pipeline/api_exception.rb'
|
206
|
+
require 'com/zoho/crm/api/global_picklists/action_response.rb'
|
207
|
+
require 'com/zoho/crm/api/related_lists/field.rb'
|
208
|
+
require 'com/zoho/crm/api/reschedule_history/response_handler.rb'
|
209
|
+
require 'com/zoho/crm/api/fields/lookup.rb'
|
210
|
+
require 'com/zoho/crm/api/change_owner/body_wrapper.rb'
|
211
|
+
require 'com/zoho/crm/api/change_owner/mass_wrapper.rb'
|
212
|
+
require 'com/zoho/crm/api/related_records/response_handler.rb'
|
213
|
+
require 'com/zoho/crm/api/fields/minified_field.rb'
|
214
|
+
require 'com/zoho/crm/api/tags/record_action_wrapper.rb'
|
215
|
+
require 'com/zoho/crm/api/scoring_rules/field.rb'
|
216
|
+
require 'com/zoho/crm/api/features/response_handler.rb'
|
217
|
+
require 'com/zoho/crm/api/users/associated_group.rb'
|
218
|
+
require 'com/zoho/crm/api/bulk_write/request_wrapper.rb'
|
219
|
+
require 'com/zoho/crm/api/user_type_users/status_action_response.rb'
|
220
|
+
require 'com/zoho/crm/api/share_records/share_record.rb'
|
221
|
+
require 'com/zoho/crm/api/modules/action_response.rb'
|
222
|
+
require 'com/zoho/crm/api/webforms/font_attributes.rb'
|
223
|
+
require 'com/zoho/crm/api/modules/action_handler.rb'
|
224
|
+
require 'com/zoho/crm/api/inventory_convert/convert_to.rb'
|
225
|
+
require 'com/zoho/crm/api/entity_scores/entity.rb'
|
226
|
+
require 'com/zoho/crm/api/pipeline/transfer_pipeline_success_response.rb'
|
227
|
+
require 'com/zoho/crm/api/layouts/actions_allowed.rb'
|
228
|
+
require 'com/zoho/crm/api/send_mail/attachment.rb'
|
229
|
+
require 'com/zoho/crm/api/users_territories/api_exception.rb'
|
230
|
+
require 'com/zoho/crm/api/fields/textarea.rb'
|
231
|
+
require 'com/zoho/crm/api/appointment_preference/response_handler.rb'
|
232
|
+
require 'com/zoho/crm/api/webforms/button_attributes.rb'
|
233
|
+
require 'com/zoho/crm/api/bulk_read/file_body_wrapper.rb'
|
234
|
+
require 'com/zoho/crm/api/associate_email/action_wrapper.rb'
|
235
|
+
require 'com/zoho/crm/api/contact_roles/response_handler.rb'
|
236
|
+
require 'com/zoho/crm/api/fields/success_response.rb'
|
237
|
+
require 'com/zoho/crm/api/mass_delete_cvid/territory.rb'
|
238
|
+
require 'com/zoho/crm/api/taxes/taxes_operations.rb'
|
239
|
+
require 'com/zoho/crm/api/modules/minified_module.rb'
|
240
|
+
require 'com/zoho/crm/api/notifications/notification.rb'
|
241
|
+
require 'com/zoho/crm/api/modules/lookup_field_properties.rb'
|
242
|
+
require 'com/zoho/crm/api/global_picklists/resource.rb'
|
243
|
+
require 'com/zoho/crm/api/bulk_read/bulk_read_operations.rb'
|
244
|
+
require 'com/zoho/crm/api/holidays/resonse_handler.rb'
|
245
|
+
require 'com/zoho/crm/api/portals/response_wrapper.rb'
|
246
|
+
require 'com/zoho/crm/api/mass_delete_cvid/status.rb'
|
247
|
+
require 'com/zoho/crm/api/tags/api_exception.rb'
|
248
|
+
require 'com/zoho/crm/api/user_type_users/info.rb'
|
249
|
+
require 'com/zoho/crm/api/reschedule_history/api_exception.rb'
|
250
|
+
require 'com/zoho/crm/api/territory_users/territory_users_operations.rb'
|
251
|
+
require 'com/zoho/crm/api/field_attachments/response_handler.rb'
|
252
|
+
require 'com/zoho/crm/api/taxes/response_wrapper.rb'
|
253
|
+
require 'com/zoho/crm/api/coql/api_exception.rb'
|
254
|
+
require 'com/zoho/crm/api/shift_hours/shift_count.rb'
|
255
|
+
require 'com/zoho/crm/api/reschedule_history/appointment_name.rb'
|
256
|
+
require 'com/zoho/crm/api/service_preference/success_response.rb'
|
257
|
+
require 'com/zoho/crm/api/portal_user_type/action_handler.rb'
|
258
|
+
require 'com/zoho/crm/api/cancel_meetings/success_response.rb'
|
259
|
+
require 'com/zoho/crm/api/hipaa_compliance/modules.rb'
|
260
|
+
require 'com/zoho/crm/api/layouts/action_response.rb'
|
261
|
+
require 'com/zoho/crm/api/global_picklists/associations_response_wrapper.rb'
|
262
|
+
require 'com/zoho/crm/api/webforms/action_handler.rb'
|
263
|
+
require 'com/zoho/crm/api/webforms/body_wrapper.rb'
|
264
|
+
require 'com/zoho/crm/api/fields/body_wrapper.rb'
|
265
|
+
require 'com/zoho/crm/api/holidays/action_handler.rb'
|
266
|
+
require 'com/zoho/crm/api/user_groups/association_module.rb'
|
267
|
+
require 'com/zoho/crm/api/record/info.rb'
|
268
|
+
require 'com/zoho/crm/api/email_templates/last_version_statistics.rb'
|
269
|
+
require 'com/zoho/crm/api/reschedule_history/response_wrapper.rb'
|
270
|
+
require 'com/zoho/crm/api/bulk_write/bulk_write_operations.rb'
|
271
|
+
require 'com/zoho/crm/api/email_sharing_details/share_from_user.rb'
|
272
|
+
require 'com/zoho/crm/api/shift_hours/action_response.rb'
|
273
|
+
require 'com/zoho/crm/api/global_picklists/body_wrapper.rb'
|
274
|
+
require 'com/zoho/crm/api/contact_roles/contact_roles_operations.rb'
|
275
|
+
require 'com/zoho/crm/api/territories/transfer_body_wrapper.rb'
|
276
|
+
require 'com/zoho/crm/api/record/record.rb'
|
277
|
+
require 'com/zoho/crm/api/record/remind_at.rb'
|
278
|
+
require 'com/zoho/crm/api/convert_lead/api_exception.rb'
|
279
|
+
require 'com/zoho/crm/api/users/response_wrapper.rb'
|
280
|
+
require 'com/zoho/crm/api/record/tax.rb'
|
281
|
+
require 'com/zoho/crm/api/entity_scores/response_handler.rb'
|
282
|
+
require 'com/zoho/crm/api/send_mail/linked_record.rb'
|
283
|
+
require 'com/zoho/crm/api/mail_merge/action_wrapper.rb'
|
284
|
+
require 'com/zoho/crm/api/layouts/convert_mapping.rb'
|
285
|
+
require 'com/zoho/crm/api/taxes/action_handler.rb'
|
286
|
+
require 'com/zoho/crm/api/variable_groups/variable_groups_operations.rb'
|
287
|
+
require 'com/zoho/crm/api/record_locking/action_handler.rb'
|
288
|
+
require 'com/zoho/crm/api/record/deleted_record.rb'
|
289
|
+
require 'com/zoho/crm/api/profiles/action_response.rb'
|
290
|
+
require 'com/zoho/crm/api/portal_invite/data.rb'
|
291
|
+
require 'com/zoho/crm/api/attachments/attachments_operations.rb'
|
292
|
+
require 'com/zoho/crm/api/notes/note.rb'
|
293
|
+
require 'com/zoho/crm/api/user_groups/user_group.rb'
|
294
|
+
require 'com/zoho/crm/api/entity_scores/api_exception.rb'
|
295
|
+
require 'com/zoho/crm/api/blueprint/module_mapping.rb'
|
296
|
+
require 'com/zoho/crm/api/unsubscribe_links/association_details.rb'
|
297
|
+
require 'com/zoho/crm/api/email_compose_meta/from_address.rb'
|
298
|
+
require 'com/zoho/crm/api/backup/urls_wrapper.rb'
|
299
|
+
require 'com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb'
|
300
|
+
require 'com/zoho/crm/api/record/mass_update_success_response.rb'
|
301
|
+
require 'com/zoho/crm/api/users_territories/users_territories_operations.rb'
|
302
|
+
require 'com/zoho/crm/api/scoring_rules/signal.rb'
|
303
|
+
require 'com/zoho/crm/api/unsubscribe_links/unsubscribe_links.rb'
|
304
|
+
require 'com/zoho/crm/api/business_hours/business_hours_operations.rb'
|
305
|
+
require 'com/zoho/crm/api/download_inline_images/file_body_wrapper.rb'
|
306
|
+
require 'com/zoho/crm/api/related_records/related_records_operations.rb'
|
307
|
+
require 'com/zoho/crm/api/mass_convert/related_module.rb'
|
308
|
+
require 'com/zoho/crm/api/layouts/action_wrapper.rb'
|
309
|
+
require 'com/zoho/crm/api/holidays/api_exception.rb'
|
310
|
+
require 'com/zoho/crm/api/taxes/api_exception.rb'
|
311
|
+
require 'com/zoho/crm/api/webforms/web_form.rb'
|
312
|
+
require 'com/zoho/crm/api/unsubscribe_links/associations_response_wrapper.rb'
|
313
|
+
require 'com/zoho/crm/api/wizards/exempted_portal_user_type.rb'
|
314
|
+
require 'com/zoho/crm/api/mass_convert/assign_to.rb'
|
315
|
+
require 'com/zoho/crm/api/field_map_dependency/response_handler.rb'
|
316
|
+
require 'com/zoho/crm/api/notes/response_wrapper.rb'
|
317
|
+
require 'com/zoho/crm/api/users_unavailability/action_response.rb'
|
318
|
+
require 'com/zoho/crm/api/share_records/success_response.rb'
|
319
|
+
require 'com/zoho/crm/api/deal_contact_roles/response_handler.rb'
|
320
|
+
require 'com/zoho/crm/api/portal_user_type/action_wrapper.rb'
|
321
|
+
require 'com/zoho/crm/api/bulk_read/success_response.rb'
|
322
|
+
require 'com/zoho/crm/api/users_transfer_delete/response_handler.rb'
|
323
|
+
require 'com/zoho/crm/api/global_picklists/replace_action_response.rb'
|
324
|
+
require 'com/zoho/crm/api/portal_user_type/views.rb'
|
325
|
+
require 'com/zoho/crm/api/wizards/connection.rb'
|
326
|
+
require 'com/zoho/crm/api/portal_invite/api_exception.rb'
|
327
|
+
require 'com/zoho/crm/api/portals/response_handler.rb'
|
328
|
+
require 'com/zoho/crm/api/business_hours/features.rb'
|
329
|
+
require 'com/zoho/crm/api/taxes/org_tax.rb'
|
330
|
+
require 'com/zoho/crm/api/pipeline/maps.rb'
|
331
|
+
require 'com/zoho/crm/api/coql/details_wrapper.rb'
|
332
|
+
require 'com/zoho/crm/api/currencies/base_currency_action_response.rb'
|
333
|
+
require 'com/zoho/crm/api/taxes/expected_field.rb'
|
334
|
+
require 'com/zoho/crm/api/holidays/holidays.rb'
|
335
|
+
require 'com/zoho/crm/api/record/action_wrapper.rb'
|
336
|
+
require 'com/zoho/crm/api/portal_user_type/filters.rb'
|
337
|
+
require 'com/zoho/crm/api/timelines/automation_detail.rb'
|
338
|
+
require 'com/zoho/crm/api/bulk_write/result.rb'
|
339
|
+
require 'com/zoho/crm/api/mail_merge/sign_mail_merge.rb'
|
340
|
+
require 'com/zoho/crm/api/service_preference/action_wrapper.rb'
|
341
|
+
require 'com/zoho/crm/api/pipeline/transfer_pipeline.rb'
|
342
|
+
require 'com/zoho/crm/api/user_type_users/response_handler.rb'
|
343
|
+
require 'com/zoho/crm/api/service_preference/action_handler.rb'
|
344
|
+
require 'com/zoho/crm/api/templates/templates.rb'
|
345
|
+
require 'com/zoho/crm/api/associate_email/associate_email_operations.rb'
|
346
|
+
require 'com/zoho/crm/api/taxes/preference.rb'
|
347
|
+
require 'com/zoho/crm/api/tags/existing_tag.rb'
|
348
|
+
require 'com/zoho/crm/api/fiscal_year/action_handler.rb'
|
349
|
+
require 'com/zoho/crm/api/user_groups/sources_count_wrapper.rb'
|
350
|
+
require 'com/zoho/crm/api/notes/api_exception.rb'
|
351
|
+
require 'com/zoho/crm/api/service_preference/response_handler.rb'
|
352
|
+
require 'com/zoho/crm/api/org/resource.rb'
|
353
|
+
require 'com/zoho/crm/api/fiscal_year/action_response.rb'
|
354
|
+
require 'com/zoho/crm/api/fields/history_tracking_module.rb'
|
355
|
+
require 'com/zoho/crm/api/record_locking_configuration/body_wrapper.rb'
|
356
|
+
require 'com/zoho/crm/api/find_and_merge/master_record_fields.rb'
|
357
|
+
require 'com/zoho/crm/api/backup/history.rb'
|
358
|
+
require 'com/zoho/crm/api/portals/portals.rb'
|
359
|
+
require 'com/zoho/crm/api/field_map_dependency/action_wrapper.rb'
|
360
|
+
require 'com/zoho/crm/api/mail_merge/download_mail_merge.rb'
|
361
|
+
require 'com/zoho/crm/api/custom_views/pin_fields.rb'
|
362
|
+
require 'com/zoho/crm/api/profiles/default_view.rb'
|
363
|
+
require 'com/zoho/crm/api/shift_hours/break_hours.rb'
|
364
|
+
require 'com/zoho/crm/api/email_related_records/user_details.rb'
|
365
|
+
require 'com/zoho/crm/api/inventory_templates/info.rb'
|
366
|
+
require 'com/zoho/crm/api/currencies/action_response.rb'
|
367
|
+
require 'com/zoho/crm/api/appointment_preference/response_wrapper.rb'
|
368
|
+
require 'com/zoho/crm/api/inventory_mass_convert/success_response.rb'
|
369
|
+
require 'com/zoho/crm/api/record/recurring_activity.rb'
|
370
|
+
require 'com/zoho/crm/api/profiles/action_wrapper.rb'
|
371
|
+
require 'com/zoho/crm/api/record/comment.rb'
|
372
|
+
require 'com/zoho/crm/api/related_records/file_body_wrapper.rb'
|
373
|
+
require 'com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb'
|
374
|
+
require 'com/zoho/crm/api/fields/sharing_properties.rb'
|
375
|
+
require 'com/zoho/crm/api/roles/api_exception.rb'
|
376
|
+
require 'com/zoho/crm/api/record_locking/response_handler.rb'
|
377
|
+
require 'com/zoho/crm/api/associate_email/linked_record.rb'
|
378
|
+
require 'com/zoho/crm/api/variables/success_response.rb'
|
379
|
+
require 'com/zoho/crm/api/profiles/section.rb'
|
380
|
+
require 'com/zoho/crm/api/blueprint/currency.rb'
|
381
|
+
require 'com/zoho/crm/api/backup/action_wrapper.rb'
|
382
|
+
require 'com/zoho/crm/api/global_picklists/pick_list_values_associations_response_handler.rb'
|
383
|
+
require 'com/zoho/crm/api/portal_user_type/modules.rb'
|
384
|
+
require 'com/zoho/crm/api/holidays/response_wrapper.rb'
|
385
|
+
require 'com/zoho/crm/api/tags/merge_wrapper.rb'
|
386
|
+
require 'com/zoho/crm/api/portal_user_type/owner.rb'
|
387
|
+
require 'com/zoho/crm/api/org/success_response.rb'
|
388
|
+
require 'com/zoho/crm/api/mass_change_owner/field.rb'
|
389
|
+
require 'com/zoho/crm/api/portals_meta/layouts.rb'
|
390
|
+
require 'com/zoho/crm/api/bulk_write/api_exception.rb'
|
391
|
+
require 'com/zoho/crm/api/reschedule_history/info.rb'
|
392
|
+
require 'com/zoho/crm/api/mail_merge/address.rb'
|
393
|
+
require 'com/zoho/crm/api/layouts/tooltip.rb'
|
394
|
+
require 'com/zoho/crm/api/territories/reporting_to.rb'
|
395
|
+
require 'com/zoho/crm/api/conversion_option/conversion_option_operations.rb'
|
396
|
+
require 'com/zoho/crm/api/inventory_convert/inventory_converter.rb'
|
397
|
+
require 'com/zoho/crm/api/backup/backup.rb'
|
398
|
+
require 'com/zoho/crm/api/users_transfer_delete/response_wrapper.rb'
|
399
|
+
require 'com/zoho/crm/api/fields/refer_from_field.rb'
|
400
|
+
require 'com/zoho/crm/api/territory_users/action_handler.rb'
|
401
|
+
require 'com/zoho/crm/api/portal_invite/portal.rb'
|
402
|
+
require 'com/zoho/crm/api/webforms/owner.rb'
|
403
|
+
require 'com/zoho/crm/api/field_attachments/field_attachments_operations.rb'
|
404
|
+
require 'com/zoho/crm/api/org/response_wrapper.rb'
|
405
|
+
require 'com/zoho/crm/api/record_locking/info.rb'
|
406
|
+
require 'com/zoho/crm/api/layouts/success_response.rb'
|
407
|
+
require 'com/zoho/crm/api/notifications/criteria.rb'
|
408
|
+
require 'com/zoho/crm/api/fields/convert_mapping.rb'
|
409
|
+
require 'com/zoho/crm/api/mass_delete_cvid/api_exception.rb'
|
410
|
+
require 'com/zoho/crm/api/unsubscribe_links/detail.rb'
|
411
|
+
require 'com/zoho/crm/api/profiles/category_module.rb'
|
412
|
+
require 'com/zoho/crm/api/layouts/response_wrapper.rb'
|
413
|
+
require 'com/zoho/crm/api/users_territories/territory.rb'
|
414
|
+
require 'com/zoho/crm/api/users_unavailability/user.rb'
|
415
|
+
require 'com/zoho/crm/api/backup/success_response.rb'
|
416
|
+
require 'com/zoho/crm/api/global_picklists/success_response.rb'
|
417
|
+
require 'com/zoho/crm/api/convert_lead/body_wrapper.rb'
|
418
|
+
require 'com/zoho/crm/api/available_currencies/response_wrapper.rb'
|
419
|
+
require 'com/zoho/crm/api/fields/crypt.rb'
|
420
|
+
require 'com/zoho/crm/api/tags/action_response.rb'
|
421
|
+
require 'com/zoho/crm/api/contact_roles/body_wrapper.rb'
|
422
|
+
require 'com/zoho/crm/api/fields/action_handler.rb'
|
423
|
+
require 'com/zoho/crm/api/service_preference/service_preference.rb'
|
424
|
+
require 'com/zoho/crm/api/record/download_handler.rb'
|
425
|
+
require 'com/zoho/crm/api/holidays/action_response.rb'
|
426
|
+
require 'com/zoho/crm/api/profiles/category_others.rb'
|
427
|
+
require 'com/zoho/crm/api/pipeline/forecast_category.rb'
|
428
|
+
require 'com/zoho/crm/api/org/hierarchy_preferences.rb'
|
429
|
+
require 'com/zoho/crm/api/field_map_dependency/pick_list_mapping.rb'
|
430
|
+
require 'com/zoho/crm/api/global_picklists/info.rb'
|
431
|
+
require 'com/zoho/crm/api/record/time_range.rb'
|
432
|
+
require 'com/zoho/crm/api/notifications/field.rb'
|
433
|
+
require 'com/zoho/crm/api/record_locking_configuration/success_response.rb'
|
434
|
+
require 'com/zoho/crm/api/territory_users/response_wrapper.rb'
|
435
|
+
require 'com/zoho/crm/api/fields/operation_type.rb'
|
436
|
+
require 'com/zoho/crm/api/related_records/api_exception.rb'
|
437
|
+
require 'com/zoho/crm/api/inventory_mass_convert/module.rb'
|
438
|
+
require 'com/zoho/crm/api/fields/view_type.rb'
|
439
|
+
require 'com/zoho/crm/api/backup/body_wrapper.rb'
|
440
|
+
require 'com/zoho/crm/api/email_drafts/response_wrapper.rb'
|
441
|
+
require 'com/zoho/crm/api/fields/function_parameter.rb'
|
442
|
+
require 'com/zoho/crm/api/unsubscribe_links/associated_places.rb'
|
443
|
+
require 'com/zoho/crm/api/download_inline_images/response_handler.rb'
|
444
|
+
require 'com/zoho/crm/api/email_compose_meta/data.rb'
|
445
|
+
require 'com/zoho/crm/api/email_compose_meta/signature.rb'
|
446
|
+
require 'com/zoho/crm/api/tags/success_wrapper.rb'
|
447
|
+
require 'com/zoho/crm/api/conversion_option/preference_field_match.rb'
|
448
|
+
require 'com/zoho/crm/api/blueprint/layout.rb'
|
449
|
+
require 'com/zoho/crm/api/portal_user_type/personality_module.rb'
|
450
|
+
require 'com/zoho/crm/api/record/mass_update_action_response.rb'
|
451
|
+
require 'com/zoho/crm/api/entity_scores/response_wrapper.rb'
|
452
|
+
require 'com/zoho/crm/api/layouts/deal_layout_mapping.rb'
|
453
|
+
require 'com/zoho/crm/api/attachments/response_handler.rb'
|
454
|
+
require 'com/zoho/crm/api/portal_invite/response_wrapper.rb'
|
455
|
+
require 'com/zoho/crm/api/deal_contact_roles/body_wrapper.rb'
|
456
|
+
require 'com/zoho/crm/api/related_lists/module_map.rb'
|
457
|
+
require 'com/zoho/crm/api/entity_scores/entity_scores.rb'
|
458
|
+
require 'com/zoho/crm/api/business_hours/action_handler.rb'
|
459
|
+
require 'com/zoho/crm/api/custom_views/translation.rb'
|
460
|
+
require 'com/zoho/crm/api/global_picklists/layout.rb'
|
461
|
+
require 'com/zoho/crm/api/currencies/currencies_operations.rb'
|
462
|
+
require 'com/zoho/crm/api/blueprint/auto_number.rb'
|
463
|
+
require 'com/zoho/crm/api/timelines/path_finder.rb'
|
464
|
+
require 'com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb'
|
465
|
+
require 'com/zoho/crm/api/layouts/profiles.rb'
|
466
|
+
require 'com/zoho/crm/api/user_type_users/action_response.rb'
|
467
|
+
require 'com/zoho/crm/api/fields/fields.rb'
|
468
|
+
require 'com/zoho/crm/api/layouts/section_subform_field.rb'
|
469
|
+
require 'com/zoho/crm/api/scoring_rules/api_exception.rb'
|
470
|
+
require 'com/zoho/crm/api/notifications/action_handler.rb'
|
471
|
+
require 'com/zoho/crm/api/global_picklists/global_picklists_operations.rb'
|
472
|
+
require 'com/zoho/crm/api/blueprint/action_handler.rb'
|
473
|
+
require 'com/zoho/crm/api/roles/action_response.rb'
|
474
|
+
require 'com/zoho/crm/api/wizards/chart_data.rb'
|
475
|
+
require 'com/zoho/crm/api/share_records/response_wrapper.rb'
|
476
|
+
require 'com/zoho/crm/api/currencies/response_wrapper.rb'
|
477
|
+
require 'com/zoho/crm/api/global_picklists/pick_list_values_association.rb'
|
478
|
+
require 'com/zoho/crm/api/users/customize_info.rb'
|
479
|
+
require 'com/zoho/crm/api/users/minified_user.rb'
|
480
|
+
require 'com/zoho/crm/api/inventory_mass_convert/body_wrapper.rb'
|
481
|
+
require 'com/zoho/crm/api/blueprint/multi_select_lookup.rb'
|
482
|
+
require 'com/zoho/crm/api/scoring_rules/role_request_wrapper.rb'
|
483
|
+
require 'com/zoho/crm/api/currencies/format.rb'
|
484
|
+
require 'com/zoho/crm/api/conversion_option/conversion_options.rb'
|
485
|
+
require 'com/zoho/crm/api/notifications/api_exception.rb'
|
486
|
+
require 'com/zoho/crm/api/email_drafts/to.rb'
|
487
|
+
require 'com/zoho/crm/api/record/mass_update_territory.rb'
|
488
|
+
require 'com/zoho/crm/api/blueprint/convert_mapping.rb'
|
489
|
+
require 'com/zoho/crm/api/org/org_operations.rb'
|
490
|
+
require 'com/zoho/crm/api/mass_change_owner/response_wrapper.rb'
|
491
|
+
require 'com/zoho/crm/api/wizards/response_handler.rb'
|
492
|
+
require 'com/zoho/crm/api/contact_roles/contact_role.rb'
|
493
|
+
require 'com/zoho/crm/api/pipeline/response_handler.rb'
|
494
|
+
require 'com/zoho/crm/api/send_mail/send_mail_operations.rb'
|
495
|
+
require 'com/zoho/crm/api/webforms/action_wrapper.rb'
|
496
|
+
require 'com/zoho/crm/api/email_related_records/module.rb'
|
497
|
+
require 'com/zoho/crm/api/users/users_operations.rb'
|
498
|
+
require 'com/zoho/crm/api/users/success_response.rb'
|
499
|
+
require 'com/zoho/crm/api/territories/deleted_associated_territories.rb'
|
500
|
+
require 'com/zoho/crm/api/shift_hours/api_exception.rb'
|
501
|
+
require 'com/zoho/crm/api/backup/action_response.rb'
|
502
|
+
require 'com/zoho/crm/api/notifications/response_wrapper.rb'
|
503
|
+
require 'com/zoho/crm/api/modules/response_handler.rb'
|
504
|
+
require 'com/zoho/crm/api/definition/response_wrapper.rb'
|
505
|
+
require 'com/zoho/crm/api/pipeline/stages.rb'
|
506
|
+
require 'com/zoho/crm/api/wizards/api_exception.rb'
|
507
|
+
require 'com/zoho/crm/api/portal_user_type/portal_user_type_operations.rb'
|
508
|
+
require 'com/zoho/crm/api/portal_user_type/response_handler.rb'
|
509
|
+
require 'com/zoho/crm/api/find_and_merge/merge.rb'
|
510
|
+
require 'com/zoho/crm/api/record_locking/record_locking_operations.rb'
|
511
|
+
require 'com/zoho/crm/api/from_addresses/api_exception.rb'
|
512
|
+
require 'com/zoho/crm/api/change_owner/owner.rb'
|
513
|
+
require 'com/zoho/crm/api/record/mass_update_response_wrapper.rb'
|
514
|
+
require 'com/zoho/crm/api/templates/wrapper.rb'
|
515
|
+
require 'com/zoho/crm/api/mass_convert/status.rb'
|
516
|
+
require 'com/zoho/crm/api/hipaa_compliance/success_response.rb'
|
517
|
+
require 'com/zoho/crm/api/blueprint/success_response.rb'
|
518
|
+
require 'com/zoho/crm/api/mass_change_owner/api_exception.rb'
|
519
|
+
require 'com/zoho/crm/api/hipaa_compliance/api_exception.rb'
|
520
|
+
require 'com/zoho/crm/api/territories/action_response.rb'
|
521
|
+
require 'com/zoho/crm/api/layouts/static_values.rb'
|
522
|
+
require 'com/zoho/crm/api/portal_user_type/body_wrapper.rb'
|
523
|
+
require 'com/zoho/crm/api/inventory_convert/api_exception.rb'
|
524
|
+
require 'com/zoho/crm/api/deal_contact_roles/action_handler.rb'
|
525
|
+
require 'com/zoho/crm/api/reschedule_history/reschedule_history.rb'
|
526
|
+
require 'com/zoho/crm/api/global_picklists/replace_picklist_values.rb'
|
527
|
+
require 'com/zoho/crm/api/associate_email/action_handler.rb'
|
528
|
+
require 'com/zoho/crm/api/portal_invite/portal_invite.rb'
|
529
|
+
require 'com/zoho/crm/api/user_groups/source.rb'
|
530
|
+
require 'com/zoho/crm/api/privacy_preference/tpt.rb'
|
531
|
+
require 'com/zoho/crm/api/notes/notes_operations.rb'
|
532
|
+
require 'com/zoho/crm/api/users/api_exception.rb'
|
533
|
+
require 'com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb'
|
534
|
+
require 'com/zoho/crm/api/territory_users/api_exception.rb'
|
535
|
+
require 'com/zoho/crm/api/portal_invite/success_response.rb'
|
536
|
+
require 'com/zoho/crm/api/mass_change_owner/status.rb'
|
537
|
+
require 'com/zoho/crm/api/hipaa_compliance/action_wrapper.rb'
|
538
|
+
require 'com/zoho/crm/api/layouts/default_assignment_view.rb'
|
539
|
+
require 'com/zoho/crm/api/global_picklists/action_wrapper.rb'
|
540
|
+
require 'com/zoho/crm/api/pipeline/action_handler.rb'
|
541
|
+
require 'com/zoho/crm/api/users_transfer_delete/move_subordinate.rb'
|
542
|
+
require 'com/zoho/crm/api/email_drafts/success_response.rb'
|
543
|
+
require 'com/zoho/crm/api/users_unavailability/api_exception.rb'
|
544
|
+
require 'com/zoho/crm/api/fields/response_wrapper.rb'
|
545
|
+
require 'com/zoho/crm/api/convert_lead/action_wrapper.rb'
|
546
|
+
require 'com/zoho/crm/api/user_groups/action_wrapper.rb'
|
547
|
+
require 'com/zoho/crm/api/users_territories/validation_handler.rb'
|
548
|
+
require 'com/zoho/crm/api/scoring_rules/body_wrapper.rb'
|
549
|
+
require 'com/zoho/crm/api/portal_invite/action_handler.rb'
|
550
|
+
require 'com/zoho/crm/api/users_transfer_delete/api_exception.rb'
|
551
|
+
require 'com/zoho/crm/api/wizards/node.rb'
|
552
|
+
require 'com/zoho/crm/api/custom_views/response_handler.rb'
|
553
|
+
require 'com/zoho/crm/api/timelines/response_handler.rb'
|
554
|
+
require 'com/zoho/crm/api/fields/hipaa_compliance.rb'
|
555
|
+
require 'com/zoho/crm/api/cancel_meetings/notify.rb'
|
556
|
+
require 'com/zoho/crm/api/coql/parse_error_details.rb'
|
557
|
+
require 'com/zoho/crm/api/portals/body_wrapper.rb'
|
558
|
+
require 'com/zoho/crm/api/share_records/shared_through.rb'
|
559
|
+
require 'com/zoho/crm/api/mail_merge/file_body_wrapper.rb'
|
560
|
+
require 'com/zoho/crm/api/holidays/holidays_operations.rb'
|
561
|
+
require 'com/zoho/crm/api/send_mail/action_response.rb'
|
562
|
+
require 'com/zoho/crm/api/email_drafts/attachments.rb'
|
563
|
+
require 'com/zoho/crm/api/scoring_rules/info.rb'
|
564
|
+
require 'com/zoho/crm/api/bulk_write/bulk_write_response.rb'
|
565
|
+
require 'com/zoho/crm/api/attachments/action_handler.rb'
|
566
|
+
require 'com/zoho/crm/api/users_unavailability/response_wrapper.rb'
|
567
|
+
require 'com/zoho/crm/api/convert_lead/action_response.rb'
|
568
|
+
require 'com/zoho/crm/api/backup/history_wrapper.rb'
|
569
|
+
require 'com/zoho/crm/api/taxes/success_response.rb'
|
570
|
+
require 'com/zoho/crm/api/wizards/container.rb'
|
571
|
+
require 'com/zoho/crm/api/global_picklists/response_wrapper.rb'
|
572
|
+
require 'com/zoho/crm/api/user_groups/association_response.rb'
|
573
|
+
require 'com/zoho/crm/api/fiscal_year/fiscal_year_operations.rb'
|
574
|
+
require 'com/zoho/crm/api/unblock_email/body_wrapper.rb'
|
575
|
+
require 'com/zoho/crm/api/email_drafts/api_exception.rb'
|
576
|
+
require 'com/zoho/crm/api/record_locking_configuration/dependee.rb'
|
577
|
+
require 'com/zoho/crm/api/territories/info.rb'
|
578
|
+
require 'com/zoho/crm/api/users_territories/action_wrapper.rb'
|
579
|
+
require 'com/zoho/crm/api/portals/action_handler.rb'
|
580
|
+
require 'com/zoho/crm/api/wizards/message.rb'
|
581
|
+
require 'com/zoho/crm/api/currencies/currency.rb'
|
582
|
+
require 'com/zoho/crm/api/email_sharing_details/email_sharing_details_operations.rb'
|
583
|
+
require 'com/zoho/crm/api/fiscal_year/api_exception.rb'
|
584
|
+
require 'com/zoho/crm/api/unsubscribe_links/response_handler.rb'
|
585
|
+
require 'com/zoho/crm/api/deal_contact_roles/contact_role.rb'
|
586
|
+
require 'com/zoho/crm/api/custom_views/custom_views_operations.rb'
|
587
|
+
require 'com/zoho/crm/api/contact_roles/action_response.rb'
|
588
|
+
require 'com/zoho/crm/api/unblock_email/action_response.rb'
|
589
|
+
require 'com/zoho/crm/api/appointment_preference/action_handler.rb'
|
590
|
+
require 'com/zoho/crm/api/scoring_rules/signal_rule.rb'
|
591
|
+
require 'com/zoho/crm/api/users/action_handler.rb'
|
592
|
+
require 'com/zoho/crm/api/files/api_exception.rb'
|
593
|
+
require 'com/zoho/crm/api/blueprint/tool_tip.rb'
|
594
|
+
require 'com/zoho/crm/api/org/license_details.rb'
|
595
|
+
require 'com/zoho/crm/api/user_type_users/status_action_handler.rb'
|
596
|
+
require 'com/zoho/crm/api/user_groups/action_response.rb'
|
597
|
+
require 'com/zoho/crm/api/roles/action_wrapper.rb'
|
598
|
+
require 'com/zoho/crm/api/fields/unique.rb'
|
599
|
+
require 'com/zoho/crm/api/fields/query_details.rb'
|
600
|
+
require 'com/zoho/crm/api/user_groups/response_handler.rb'
|
601
|
+
require 'com/zoho/crm/api/record/mass_update_response.rb'
|
602
|
+
require 'com/zoho/crm/api/users/body_wrapper.rb'
|
603
|
+
require 'com/zoho/crm/api/record/deleted_records_wrapper.rb'
|
604
|
+
require 'com/zoho/crm/api/fields/multiselectlookup.rb'
|
605
|
+
require 'com/zoho/crm/api/business_hours/business_hours.rb'
|
606
|
+
require 'com/zoho/crm/api/cancel_meetings/body_wrapper.rb'
|
607
|
+
require 'com/zoho/crm/api/templates/folder.rb'
|
608
|
+
require 'com/zoho/crm/api/bulk_write/response_wrapper.rb'
|
609
|
+
require 'com/zoho/crm/api/modules/body_wrapper.rb'
|
610
|
+
require 'com/zoho/crm/api/webforms/from_address.rb'
|
611
|
+
require 'com/zoho/crm/api/mass_change_owner/criteria.rb'
|
612
|
+
require 'com/zoho/crm/api/shift_hours/shift_custom_timing.rb'
|
613
|
+
require 'com/zoho/crm/api/business_hours/body_wrapper.rb'
|
614
|
+
require 'com/zoho/crm/api/users_transfer_delete/transfer_and_delete_by_id.rb'
|
615
|
+
require 'com/zoho/crm/api/appointment_preference/field_mappings.rb'
|
616
|
+
require 'com/zoho/crm/api/fields/show_fields.rb'
|
617
|
+
require 'com/zoho/crm/api/inventory_templates/api_exception.rb'
|
618
|
+
require 'com/zoho/crm/api/tags/resources.rb'
|
619
|
+
require 'com/zoho/crm/api/org/action_handler.rb'
|
620
|
+
require 'com/zoho/crm/api/scoring_rules/layout.rb'
|
621
|
+
require 'com/zoho/crm/api/email_related_records/response_wrapper.rb'
|
622
|
+
require 'com/zoho/crm/api/reschedule_history/approval.rb'
|
623
|
+
require 'com/zoho/crm/api/conversion_option/api_exception.rb'
|
624
|
+
require 'com/zoho/crm/api/share_records/delete_action_handler.rb'
|
625
|
+
require 'com/zoho/crm/api/inventory_mass_convert/user.rb'
|
626
|
+
require 'com/zoho/crm/api/record_locking_configuration/action_wrapper.rb'
|
627
|
+
require 'com/zoho/crm/api/custom_views/criteria.rb'
|
628
|
+
require 'com/zoho/crm/api/privacy_preference/privacy_preference.rb'
|
629
|
+
require 'com/zoho/crm/api/holidays/shift_holiday.rb'
|
630
|
+
require 'com/zoho/crm/api/scoring_rules/field_rule.rb'
|
631
|
+
require 'com/zoho/crm/api/fields/fields_operations.rb'
|
632
|
+
require 'com/zoho/crm/api/record_locking_configuration/record_lock.rb'
|
633
|
+
require 'com/zoho/crm/api/assignment_rules/api_exception.rb'
|
634
|
+
require 'com/zoho/crm/api/attachments/owner.rb'
|
635
|
+
require 'com/zoho/crm/api/change_owner/related_modules.rb'
|
636
|
+
require 'com/zoho/crm/api/users_transfer_delete/status.rb'
|
637
|
+
require 'com/zoho/crm/api/pipeline/action_response.rb'
|
638
|
+
require 'com/zoho/crm/api/pipeline/delete.rb'
|
639
|
+
require 'com/zoho/crm/api/layouts/minified_layout.rb'
|
640
|
+
require 'com/zoho/crm/api/record/consent.rb'
|
641
|
+
require 'com/zoho/crm/api/related_records/action_handler.rb'
|
642
|
+
require 'com/zoho/crm/api/mail_merge/download_response_handler.rb'
|
643
|
+
require 'com/zoho/crm/api/hipaa_compliance/action_response.rb'
|
644
|
+
require 'com/zoho/crm/api/roles/success_response.rb'
|
645
|
+
require 'com/zoho/crm/api/custom_views/action_wrapper.rb'
|
646
|
+
require 'com/zoho/crm/api/mail_merge/mail_merge.rb'
|
647
|
+
require 'com/zoho/crm/api/deal_contact_roles/info.rb'
|
648
|
+
require 'com/zoho/crm/api/custom_views/field.rb'
|
649
|
+
require 'com/zoho/crm/api/conversion_option/response_handler.rb'
|
650
|
+
require 'com/zoho/crm/api/email_templates/email_templates_operations.rb'
|
651
|
+
require 'com/zoho/crm/api/find_and_merge/action_wrapper.rb'
|
652
|
+
require 'com/zoho/crm/api/portal_user_type/action_response.rb'
|
653
|
+
require 'com/zoho/crm/api/modules/sharing_properties.rb'
|
654
|
+
require 'com/zoho/crm/api/users_unavailability/users_unavailability.rb'
|
655
|
+
require 'com/zoho/crm/api/variable_groups/response_wrapper.rb'
|
656
|
+
require 'com/zoho/crm/api/webforms/abtesting.rb'
|
657
|
+
require 'com/zoho/crm/api/users_territories/info.rb'
|
658
|
+
require 'com/zoho/crm/api/portal_invite/job_response.rb'
|
659
|
+
require 'com/zoho/crm/api/assignment_rules/success_response.rb'
|
660
|
+
require 'com/zoho/crm/api/currencies/success_response.rb'
|
661
|
+
require 'com/zoho/crm/api/blueprint/association_details.rb'
|
662
|
+
require 'com/zoho/crm/api/hipaa_compliance/response_wrapper.rb'
|
663
|
+
require 'com/zoho/crm/api/variables/response_handler.rb'
|
664
|
+
require 'com/zoho/crm/api/scoring_rules/scoring_rules_operations.rb'
|
665
|
+
require 'com/zoho/crm/api/record_locking_configuration/action_response.rb'
|
666
|
+
require 'com/zoho/crm/api/mass_convert/mass_convert_operations.rb'
|
667
|
+
require 'com/zoho/crm/api/record_locking_configuration/restricted_custom_button.rb'
|
668
|
+
require 'com/zoho/crm/api/associate_email/from.rb'
|
669
|
+
require 'com/zoho/crm/api/global_picklists/replaced_value.rb'
|
670
|
+
require 'com/zoho/crm/api/field_map_dependency/field_map_dependency_operations.rb'
|
671
|
+
require 'com/zoho/crm/api/portal_user_type/layouts.rb'
|
672
|
+
require 'com/zoho/crm/api/record/field.rb'
|
673
|
+
require 'com/zoho/crm/api/taxes/body_wrapper.rb'
|
674
|
+
require 'com/zoho/crm/api/mass_delete_cvid/mass_delete_cvid_operations.rb'
|
675
|
+
require 'com/zoho/crm/api/global_picklists/module.rb'
|
676
|
+
require 'com/zoho/crm/api/webforms/webforms_operations.rb'
|
677
|
+
require 'com/zoho/crm/api/features/limit.rb'
|
678
|
+
require 'com/zoho/crm/api/tags/record_action_response.rb'
|
679
|
+
require 'com/zoho/crm/api/users/action_response.rb'
|
680
|
+
require 'com/zoho/crm/api/global_picklists/replaced_response_handler.rb'
|
681
|
+
require 'com/zoho/crm/api/timelines/api_exception.rb'
|
682
|
+
require 'com/zoho/crm/api/users/role.rb'
|
683
|
+
require 'com/zoho/crm/api/backup/urls.rb'
|
684
|
+
require 'com/zoho/crm/api/users_territories/transfer_action_handler.rb'
|
685
|
+
require 'com/zoho/crm/api/deal_contact_roles/success_response.rb'
|
686
|
+
require 'com/zoho/crm/api/unblock_email/api_exception.rb'
|
687
|
+
require 'com/zoho/crm/api/shift_hours/success_response.rb'
|
688
|
+
require 'com/zoho/crm/api/variables/api_exception.rb'
|
689
|
+
require 'com/zoho/crm/api/fields/currency.rb'
|
690
|
+
require 'com/zoho/crm/api/email_related_records/email.rb'
|
691
|
+
require 'com/zoho/crm/api/field_map_dependency/body_wrapper.rb'
|
692
|
+
require 'com/zoho/crm/api/territories/transfer_territory.rb'
|
693
|
+
require 'com/zoho/crm/api/webforms/response_wrapper.rb'
|
694
|
+
require 'com/zoho/crm/api/layouts/deal_field.rb'
|
695
|
+
require 'com/zoho/crm/api/users/profile.rb'
|
696
|
+
require 'com/zoho/crm/api/share_records/action_wrapper.rb'
|
697
|
+
require 'com/zoho/crm/api/bulk_read/response_handler.rb'
|
698
|
+
require 'com/zoho/crm/api/find_and_merge/response_handler.rb'
|
699
|
+
require 'com/zoho/crm/api/email_compose_meta/data_map.rb'
|
700
|
+
require 'com/zoho/crm/api/backup/requester.rb'
|
701
|
+
require 'com/zoho/crm/api/blueprint/blueprint_operations.rb'
|
702
|
+
require 'com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb'
|
703
|
+
require 'com/zoho/crm/api/global_picklists/association.rb'
|
704
|
+
require 'com/zoho/crm/api/bulk_write/action_response.rb'
|
705
|
+
require 'com/zoho/crm/api/bulk_write/call_back.rb'
|
706
|
+
require 'com/zoho/crm/api/record/duplicate_record.rb'
|
707
|
+
require 'com/zoho/crm/api/blueprint/response_handler.rb'
|
708
|
+
require 'com/zoho/crm/api/shift_hours/action_handler.rb'
|
709
|
+
require 'com/zoho/crm/api/send_mail/data.rb'
|
710
|
+
require 'com/zoho/crm/api/send_mail/from.rb'
|
711
|
+
require 'com/zoho/crm/api/users_territories/transfer_action_wrapper.rb'
|
712
|
+
require 'com/zoho/crm/api/associate_email/action_response.rb'
|
713
|
+
require 'com/zoho/crm/api/blueprint/response_wrapper.rb'
|
714
|
+
require 'com/zoho/crm/api/wizards/portal_user_type.rb'
|
715
|
+
require 'com/zoho/crm/api/mass_convert/action_response.rb'
|
716
|
+
require 'com/zoho/crm/api/email_templates/response_handler.rb'
|
717
|
+
require 'com/zoho/crm/api/reschedule_history/action_wrapper.rb'
|
718
|
+
require 'com/zoho/crm/api/layouts/sections.rb'
|
719
|
+
require 'com/zoho/crm/api/files/action_handler.rb'
|
720
|
+
require 'com/zoho/crm/api/hipaa_compliance/action_handler.rb'
|
721
|
+
require 'com/zoho/crm/api/custom_views/action_handler.rb'
|
722
|
+
require 'com/zoho/crm/api/taxes/tax.rb'
|
723
|
+
require 'com/zoho/crm/api/find_and_merge/image_data.rb'
|
724
|
+
require 'com/zoho/crm/api/users_territories/body_wrapper.rb'
|
725
|
+
require 'com/zoho/crm/api/record/widget.rb'
|
726
|
+
require 'com/zoho/crm/api/business_hours/response_wrapper.rb'
|
727
|
+
require 'com/zoho/crm/api/email_related_records/api_exception.rb'
|
728
|
+
require 'com/zoho/crm/api/email_sharing_details/response_handler.rb'
|
729
|
+
require 'com/zoho/crm/api/download_attachments/file_body_wrapper.rb'
|
730
|
+
require 'com/zoho/crm/api/find_and_merge/action_handler.rb'
|
731
|
+
require 'com/zoho/crm/api/global_picklists/replace_action_handler.rb'
|
732
|
+
require 'com/zoho/crm/api/territories/associated_users_count.rb'
|
733
|
+
require 'com/zoho/crm/api/record/success_response.rb'
|
734
|
+
require 'com/zoho/crm/api/deal_contact_roles/api_exception.rb'
|
735
|
+
require 'com/zoho/crm/api/currencies/action_wrapper.rb'
|
736
|
+
require 'com/zoho/crm/api/share_records/response_handler.rb'
|
737
|
+
require 'com/zoho/crm/api/notes/info.rb'
|
738
|
+
require 'com/zoho/crm/api/email_drafts/body_wrapper.rb'
|
739
|
+
require 'com/zoho/crm/api/mass_convert/body_wrapper.rb'
|
740
|
+
require 'com/zoho/crm/api/fiscal_year/year.rb'
|
741
|
+
require 'com/zoho/crm/api/users_territories/manager.rb'
|
742
|
+
require 'com/zoho/crm/api/user_groups/success_response.rb'
|
743
|
+
require 'com/zoho/crm/api/contact_roles/action_handler.rb'
|
744
|
+
require 'com/zoho/crm/api/portal_user_type/success_response.rb'
|
745
|
+
require 'com/zoho/crm/api/modules/response_wrapper.rb'
|
746
|
+
require 'com/zoho/crm/api/user_groups/owner.rb'
|
747
|
+
require 'com/zoho/crm/api/layouts/api_exception.rb'
|
748
|
+
require 'com/zoho/crm/api/send_mail/owner.rb'
|
749
|
+
require 'com/zoho/crm/api/reschedule_history/action_handler.rb'
|
750
|
+
require 'com/zoho/crm/api/fields/association_details.rb'
|
751
|
+
require 'com/zoho/crm/api/variables/response_wrapper.rb'
|
752
|
+
require 'com/zoho/crm/api/find_and_merge/data_fields.rb'
|
753
|
+
require 'com/zoho/crm/api/portal_user_type/response_wrapper.rb'
|
754
|
+
require 'com/zoho/crm/api/email_drafts/action_response.rb'
|
755
|
+
require 'com/zoho/crm/api/coql/coql_operations.rb'
|
756
|
+
require 'com/zoho/crm/api/variable_groups/response_handler.rb'
|
757
|
+
require 'com/zoho/crm/api/send_mail/body_wrapper.rb'
|
758
|
+
require 'com/zoho/crm/api/field_map_dependency/api_exception.rb'
|
759
|
+
require 'com/zoho/crm/api/cancel_meetings/action_wrapper.rb'
|
760
|
+
require 'com/zoho/crm/api/mass_delete_cvid/action_handler.rb'
|
761
|
+
require 'com/zoho/crm/api/field_map_dependency/success_response.rb'
|
762
|
+
require 'com/zoho/crm/api/bulk_write/default_value.rb'
|
763
|
+
require 'com/zoho/crm/api/related_records/action_wrapper.rb'
|
764
|
+
require 'com/zoho/crm/api/global_picklists/field.rb'
|
765
|
+
require 'com/zoho/crm/api/pipeline/pipeline_operations.rb'
|
766
|
+
require 'com/zoho/crm/api/global_picklists/picklist.rb'
|
767
|
+
require 'com/zoho/crm/api/webforms/assignment_rule.rb'
|
768
|
+
require 'com/zoho/crm/api/territories/minified_territory.rb'
|
769
|
+
require 'com/zoho/crm/api/org/org.rb'
|
770
|
+
require 'com/zoho/crm/api/record_locking/action_response.rb'
|
771
|
+
require 'com/zoho/crm/api/mass_change_owner/territory.rb'
|
772
|
+
require 'com/zoho/crm/api/mass_convert/api_exception.rb'
|
773
|
+
require 'com/zoho/crm/api/find_and_merge/merge_data.rb'
|
774
|
+
require 'com/zoho/crm/api/associate_email/available.rb'
|
775
|
+
require 'com/zoho/crm/api/profiles/api_exception.rb'
|
776
|
+
require 'com/zoho/crm/api/deal_contact_roles/deal_contact_roles_operations.rb'
|
777
|
+
require 'com/zoho/crm/api/webforms/fields.rb'
|
778
|
+
require 'com/zoho/crm/api/notifications/success_response.rb'
|
779
|
+
require 'com/zoho/crm/api/record/mass_update_response_handler.rb'
|
780
|
+
require 'com/zoho/crm/api/features/features_operations.rb'
|
781
|
+
require 'com/zoho/crm/api/service_preference/api_exception.rb'
|
782
|
+
require 'com/zoho/crm/api/templates/api_exception.rb'
|
783
|
+
require 'com/zoho/crm/api/business_hours/resources.rb'
|
784
|
+
require 'com/zoho/crm/api/blueprint/crypt.rb'
|
785
|
+
require 'com/zoho/crm/api/record/action_response.rb'
|
786
|
+
require 'com/zoho/crm/api/user_groups/response_wrapper.rb'
|
787
|
+
require 'com/zoho/crm/api/modules/success_response.rb'
|
788
|
+
require 'com/zoho/crm/api/send_mail/action_handler.rb'
|
789
|
+
require 'com/zoho/crm/api/available_currencies/currency.rb'
|
790
|
+
require 'com/zoho/crm/api/mail_merge/sign_mail_merge_wrapper.rb'
|
791
|
+
require 'com/zoho/crm/api/digest/action_handler.rb'
|
792
|
+
require 'com/zoho/crm/api/from_addresses/response_wrapper.rb'
|
793
|
+
require 'com/zoho/crm/api/available_currencies/available_currencies_operations.rb'
|
794
|
+
require 'com/zoho/crm/api/contact_roles/api_exception.rb'
|
795
|
+
require 'com/zoho/crm/api/profiles/response_wrapper.rb'
|
796
|
+
require 'com/zoho/crm/api/mass_convert/move_attachments_to.rb'
|
797
|
+
require 'com/zoho/crm/api/tags/conflict_wrapper.rb'
|
798
|
+
require 'com/zoho/crm/api/blueprint/view_type.rb'
|
799
|
+
require 'com/zoho/crm/api/variables/body_wrapper.rb'
|
800
|
+
require 'com/zoho/crm/api/mass_change_owner/owner.rb'
|
801
|
+
require 'com/zoho/crm/api/bulk_read/result.rb'
|
802
|
+
require 'com/zoho/crm/api/record/line_item_product.rb'
|
803
|
+
require 'com/zoho/crm/api/user_type_users/body_wrapper.rb'
|
804
|
+
require 'com/zoho/crm/api/bulk_read/action_response.rb'
|
805
|
+
require 'com/zoho/crm/api/wizards/criteria.rb'
|
806
|
+
require 'com/zoho/crm/api/record/deleted_records_handler.rb'
|
807
|
+
require 'com/zoho/crm/api/attachments/file_body_wrapper.rb'
|
808
|
+
require 'com/zoho/crm/api/modules/related_list_properties.rb'
|
809
|
+
require 'com/zoho/crm/api/send_mail/data_subject_request.rb'
|
810
|
+
require 'com/zoho/crm/api/coql/body_wrapper.rb'
|
811
|
+
require 'com/zoho/crm/api/assignment_rules/response_wrapper.rb'
|
812
|
+
require 'com/zoho/crm/api/profiles/category.rb'
|
813
|
+
require 'com/zoho/crm/api/find_and_merge/find_and_merge_operations.rb'
|
814
|
+
require 'com/zoho/crm/api/record_locking/body_wrapper.rb'
|
815
|
+
require 'com/zoho/crm/api/tags/body_wrapper.rb'
|
816
|
+
require 'com/zoho/crm/api/territory_users/response_handler.rb'
|
817
|
+
require 'com/zoho/crm/api/wizards/wizard.rb'
|
818
|
+
require 'com/zoho/crm/api/email_drafts/inventory_details.rb'
|
819
|
+
require 'com/zoho/crm/api/mass_convert/portal_user_type.rb'
|
820
|
+
require 'com/zoho/crm/api/email_templates/response_wrapper.rb'
|
821
|
+
require 'com/zoho/crm/api/attachments/attachment.rb'
|
822
|
+
require 'com/zoho/crm/api/mass_change_owner/action_wrapper.rb'
|
823
|
+
require 'com/zoho/crm/api/unsubscribe_links/action_handler.rb'
|
824
|
+
require 'com/zoho/crm/api/record/response_handler.rb'
|
825
|
+
require 'com/zoho/crm/api/webforms/suggestion.rb'
|
826
|
+
require 'com/zoho/crm/api/wizards/transition.rb'
|
827
|
+
require 'com/zoho/crm/api/fields/response_handler.rb'
|
828
|
+
require 'com/zoho/crm/api/webforms/success_response.rb'
|
829
|
+
require 'com/zoho/crm/api/mass_change_owner/body_wrapper.rb'
|
830
|
+
require 'com/zoho/crm/api/record/body_wrapper.rb'
|
831
|
+
require 'com/zoho/crm/api/shift_hours/action_wrapper.rb'
|
832
|
+
require 'com/zoho/crm/api/custom_views/owner.rb'
|
833
|
+
require 'com/zoho/crm/api/org/feature.rb'
|
834
|
+
require 'com/zoho/crm/api/related_lists/related_lists_operations.rb'
|
835
|
+
require 'com/zoho/crm/api/privacy_preference/section.rb'
|
836
|
+
require 'com/zoho/crm/api/field_attachments/file_body_wrapper.rb'
|
837
|
+
require 'com/zoho/crm/api/fields/file_upolad_option.rb'
|
838
|
+
require 'com/zoho/crm/api/privacy_preference/preference.rb'
|
839
|
+
require 'com/zoho/crm/api/conversion_option/preference_field_matched_value.rb'
|
840
|
+
require 'com/zoho/crm/api/email_sharing_details/response_wrapper.rb'
|
841
|
+
require 'com/zoho/crm/api/inventory_templates/user.rb'
|
842
|
+
require 'com/zoho/crm/api/field_map_dependency/parent.rb'
|
843
|
+
require 'com/zoho/crm/api/users_unavailability/response_handler.rb'
|
844
|
+
require 'com/zoho/crm/api/users/users.rb'
|
845
|
+
require 'com/zoho/crm/api/fields/profile.rb'
|
846
|
+
require 'com/zoho/crm/api/fiscal_year/action_wrapper.rb'
|
847
|
+
require 'com/zoho/crm/api/mail_merge/signers.rb'
|
848
|
+
require 'com/zoho/crm/api/fields/maps.rb'
|
849
|
+
require 'com/zoho/crm/api/modules/territory.rb'
|
850
|
+
require 'com/zoho/crm/api/inventory_templates/folder.rb'
|
851
|
+
require 'com/zoho/crm/api/users/theme.rb'
|
852
|
+
require 'com/zoho/crm/api/custom_views/sort_by.rb'
|
853
|
+
require 'com/zoho/crm/api/custom_views/shared_to.rb'
|
854
|
+
require 'com/zoho/crm/api/territories/deleted_associated_wrapper.rb'
|
855
|
+
require 'com/zoho/crm/api/change_owner/success_response.rb'
|
856
|
+
require 'com/zoho/crm/api/territories/territories_operations.rb'
|
857
|
+
require 'com/zoho/crm/api/users_territories/bulk_validation.rb'
|
858
|
+
require 'com/zoho/crm/api/wizards/actions.rb'
|
859
|
+
require 'com/zoho/crm/api/assignment_rules/assignment_rules.rb'
|
860
|
+
require 'com/zoho/crm/api/user_groups/action_handler.rb'
|
861
|
+
require 'com/zoho/crm/api/related_lists/response_wrapper.rb'
|
862
|
+
require 'com/zoho/crm/api/pipeline/transfer_pipeline_action_wrapper.rb'
|
863
|
+
require 'com/zoho/crm/api/files/action_wrapper.rb'
|
864
|
+
require 'com/zoho/crm/api/related_lists/response_handler.rb'
|
865
|
+
require 'com/zoho/crm/api/users_territories/transfer_and_delink.rb'
|
866
|
+
require 'com/zoho/crm/api/tags/record_success_response.rb'
|
867
|
+
require 'com/zoho/crm/api/holidays/success_response.rb'
|
868
|
+
require 'com/zoho/crm/api/shift_hours/response_wrapper.rb'
|
869
|
+
require 'com/zoho/crm/api/portals_meta/filters.rb'
|
870
|
+
require 'com/zoho/crm/api/bulk_read/response_wrapper.rb'
|
871
|
+
require 'com/zoho/crm/api/mass_delete_cvid/cvid_body_wrapper.rb'
|
872
|
+
require 'com/zoho/crm/api/conversion_option/field.rb'
|
873
|
+
require 'com/zoho/crm/api/bulk_read/api_exception.rb'
|
874
|
+
require 'com/zoho/crm/api/record_locking/record_lock.rb'
|
875
|
+
require 'com/zoho/crm/api/territory_users/action_response.rb'
|
876
|
+
require 'com/zoho/crm/api/custom_views/api_exception.rb'
|
877
|
+
require 'com/zoho/crm/api/users_territories/transfer_wrapper.rb'
|
878
|
+
require 'com/zoho/crm/api/appointment_preference/appointment_preference.rb'
|
879
|
+
require 'com/zoho/crm/api/backup/file_body_wrapper.rb'
|
880
|
+
require 'com/zoho/crm/api/profiles/body_wrapper.rb'
|
881
|
+
require 'com/zoho/crm/api/shift_hours/role.rb'
|
882
|
+
require 'com/zoho/crm/api/territory_users/info.rb'
|
883
|
+
require 'com/zoho/crm/api/shift_hours/holidays.rb'
|
884
|
+
require 'com/zoho/crm/api/roles/response_handler.rb'
|
885
|
+
require 'com/zoho/crm/api/download_inline_images/api_exception.rb'
|
886
|
+
require 'com/zoho/crm/api/record/response_wrapper.rb'
|
887
|
+
require 'com/zoho/crm/api/territories/associated_users_count_wrapper.rb'
|
888
|
+
require 'com/zoho/crm/api/email_templates/email_template.rb'
|
889
|
+
require 'com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb'
|
890
|
+
require 'com/zoho/crm/api/record/mass_update_body_wrapper.rb'
|
891
|
+
require 'com/zoho/crm/api/mail_merge/sign_action_response.rb'
|
892
|
+
require 'com/zoho/crm/api/users_unavailability/success_response.rb'
|
893
|
+
require 'com/zoho/crm/api/shift_hours/shift_hours_operations.rb'
|
894
|
+
require 'com/zoho/crm/api/pipeline/transfer_pipeline_action_handler.rb'
|
895
|
+
require 'com/zoho/crm/api/territories/criteria.rb'
|
896
|
+
require 'com/zoho/crm/api/digest/digest_operations.rb'
|
897
|
+
require 'com/zoho/crm/api/roles/role.rb'
|
898
|
+
require 'com/zoho/crm/api/record/mass_update_action_wrapper.rb'
|
899
|
+
require 'com/zoho/crm/api/blueprint/body_wrapper.rb'
|
900
|
+
require 'com/zoho/crm/api/fields/tooltip.rb'
|
901
|
+
require 'com/zoho/crm/api/reschedule_history/user.rb'
|
902
|
+
require 'com/zoho/crm/api/entity_scores/module.rb'
|
903
|
+
require 'com/zoho/crm/api/blueprint/module_fields.rb'
|
904
|
+
require 'com/zoho/crm/api/portals/owner.rb'
|
905
|
+
require 'com/zoho/crm/api/bulk_write/file.rb'
|
906
|
+
require 'com/zoho/crm/api/privacy_preference/option.rb'
|
907
|
+
require 'com/zoho/crm/api/associate_email/to.rb'
|
908
|
+
require 'com/zoho/crm/api/global_picklists/replaced_response_wrapper.rb'
|
909
|
+
require 'com/zoho/crm/api/unsubscribe_links/action_wrapper.rb'
|
910
|
+
require 'com/zoho/crm/api/hipaa_compliance/hipaa_compliance.rb'
|
911
|
+
require 'com/zoho/crm/api/layouts/section_field.rb'
|
912
|
+
require 'com/zoho/crm/api/entity_scores/scoring_rule.rb'
|
913
|
+
require 'com/zoho/crm/api/portals/api_exception.rb'
|
914
|
+
require 'com/zoho/crm/api/bulk_read/module_details.rb'
|
915
|
+
require 'com/zoho/crm/api/digest/api_exception.rb'
|
916
|
+
require 'com/zoho/crm/api/webforms/spam_controll.rb'
|
917
|
+
require 'com/zoho/crm/api/digest/action_wrapper.rb'
|
918
|
+
require 'com/zoho/crm/api/related_records/success_response.rb'
|
919
|
+
require 'com/zoho/crm/api/change_owner/action_handler.rb'
|
920
|
+
require 'com/zoho/crm/api/timelines/record.rb'
|
921
|
+
require 'com/zoho/crm/api/webforms/action_response.rb'
|
922
|
+
require 'com/zoho/crm/api/modules/api_exception.rb'
|
923
|
+
require 'com/zoho/crm/api/modules/modules.rb'
|
924
|
+
require 'com/zoho/crm/api/record/multi_select_picklist.rb'
|
925
|
+
require 'com/zoho/crm/api/record/reminder.rb'
|
926
|
+
require 'com/zoho/crm/api/portals/portals_operations.rb'
|
927
|
+
require 'com/zoho/crm/api/pipeline/d_pipeline.rb'
|
928
|
+
require 'com/zoho/crm/api/mass_change_owner/success_response.rb'
|
929
|
+
require 'com/zoho/crm/api/portals_meta/views.rb'
|
930
|
+
require 'com/zoho/crm/api/privacy_configurable_apps/apps.rb'
|
931
|
+
require 'com/zoho/crm/api/share_records/api_exception.rb'
|
932
|
+
require 'com/zoho/crm/api/send_mail/in_reply_to.rb'
|
933
|
+
require 'com/zoho/crm/api/portals_meta/modules.rb'
|
934
|
+
require 'com/zoho/crm/api/service_preference/action_response.rb'
|
935
|
+
require 'com/zoho/crm/api/fiscal_year/success_response.rb'
|
936
|
+
require 'com/zoho/crm/api/scoring_rules/action_response.rb'
|
937
|
+
require 'com/zoho/crm/api/backup/api_exception.rb'
|
938
|
+
require 'com/zoho/crm/api/mass_convert/error_details.rb'
|
939
|
+
require 'com/zoho/crm/api/blueprint/next_transition.rb'
|
940
|
+
require 'com/zoho/crm/api/org/api_exception.rb'
|
941
|
+
require 'com/zoho/crm/api/wizards/screen.rb'
|
942
|
+
require 'com/zoho/crm/api/variable_groups/minified_variable_group.rb'
|
943
|
+
require 'com/zoho/crm/api/service_preference/service_preference_operations.rb'
|
944
|
+
require 'com/zoho/crm/api/profiles/response_handler.rb'
|
945
|
+
require 'com/zoho/crm/api/change_owner/error_details.rb'
|
946
|
+
require 'com/zoho/crm/api/variable_groups/variable_group.rb'
|
947
|
+
require 'com/zoho/crm/api/from_addresses/response_handler.rb'
|
948
|
+
require 'com/zoho/crm/api/user_type_users/action_wrapper.rb'
|
949
|
+
require 'com/zoho/crm/api/conversion_option/response_wrapper.rb'
|
950
|
+
require 'com/zoho/crm/api/send_mail/action_wrapper.rb'
|
951
|
+
require 'com/zoho/crm/api/mass_change_owner/action_handler.rb'
|
952
|
+
require 'com/zoho/crm/api/record/count_wrapper.rb'
|
953
|
+
require 'com/zoho/crm/api/digest/action_response.rb'
|
954
|
+
require 'com/zoho/crm/api/contact_roles/action_wrapper.rb'
|
955
|
+
require 'com/zoho/crm/api/business_hours/response_handler.rb'
|
956
|
+
require 'com/zoho/crm/api/users_territories/validation_group.rb'
|
957
|
+
require 'com/zoho/crm/api/email_drafts/inventory_template.rb'
|
958
|
+
require 'com/zoho/crm/api/portals_meta/wrapper.rb'
|
959
|
+
require 'com/zoho/crm/api/holidays/create_shift_holiday.rb'
|
960
|
+
require 'com/zoho/crm/api/blueprint/escalation.rb'
|
961
|
+
require 'com/zoho/crm/api/mail_merge/api_exception.rb'
|
962
|
+
require 'com/zoho/crm/api/scoring_rules/scoring_rule.rb'
|
963
|
+
require 'com/zoho/crm/api/unblock_email/unblock_email_operations.rb'
|
964
|
+
require 'com/zoho/crm/api/send_mail/blocked_email_address.rb'
|
965
|
+
require 'com/zoho/crm/api/variables/action_response.rb'
|
966
|
+
require 'com/zoho/crm/api/mail_merge/mail_merge_operations.rb'
|
967
|
+
require 'com/zoho/crm/api/deal_contact_roles/error_details.rb'
|
968
|
+
require 'com/zoho/crm/api/bulk_read/call_back.rb'
|
969
|
+
require 'com/zoho/crm/api/custom_views/response_wrapper.rb'
|
970
|
+
require 'com/zoho/crm/api/timelines/info.rb'
|
971
|
+
require 'com/zoho/crm/api/tags/record_detail_tag.rb'
|
972
|
+
require 'com/zoho/crm/api/users_unavailability/body_wrapper.rb'
|
973
|
+
require 'com/zoho/crm/api/user_type_users/users.rb'
|
974
|
+
require 'com/zoho/crm/api/record_locking_configuration/criteria.rb'
|
975
|
+
require 'com/zoho/crm/api/find_and_merge/body_wrapper.rb'
|
976
|
+
require 'com/zoho/crm/api/associate_email/attachments.rb'
|
977
|
+
require 'com/zoho/crm/api/email_related_records/status.rb'
|
978
|
+
require 'com/zoho/crm/api/bulk_read/body_wrapper.rb'
|
979
|
+
require 'com/zoho/crm/api/fields/action_wrapper.rb'
|
980
|
+
require 'com/zoho/crm/api/entity_scores/info.rb'
|
981
|
+
require 'com/zoho/crm/api/scoring_rules/success_response.rb'
|
982
|
+
require 'com/zoho/crm/api/holidays/action_wrapper.rb'
|
983
|
+
require 'com/zoho/crm/api/territories/manager.rb'
|
984
|
+
require 'com/zoho/crm/api/convert_lead/convert_lead_operations.rb'
|
985
|
+
require 'com/zoho/crm/api/mail_merge/mail_merge_template.rb'
|
986
|
+
require 'com/zoho/crm/api/modules/lookup_field.rb'
|
987
|
+
require 'com/zoho/crm/api/custom_views/pin_unpin_fields.rb'
|
988
|
+
require 'com/zoho/crm/api/webforms/layout.rb'
|
989
|
+
require 'com/zoho/crm/api/taxes/response_handler.rb'
|
990
|
+
require 'com/zoho/crm/api/portals/action_wrapper.rb'
|
991
|
+
require 'com/zoho/crm/api/record/record_operations.rb'
|
992
|
+
require 'com/zoho/crm/api/email_compose_meta/user.rb'
|
993
|
+
require 'com/zoho/crm/api/global_picklists/associations_response_handler.rb'
|
994
|
+
require 'com/zoho/crm/api/appointment_preference/layout.rb'
|
995
|
+
require 'com/zoho/crm/api/unsubscribe_links/resource.rb'
|
996
|
+
require 'com/zoho/crm/api/business_hours/action_response.rb'
|
997
|
+
require 'com/zoho/crm/api/users/tab.rb'
|
998
|
+
require 'com/zoho/crm/api/bulk_read/criteria.rb'
|
999
|
+
require 'com/zoho/crm/api/files/response_handler.rb'
|
1000
|
+
require 'com/zoho/crm/api/territory_users/body_wrapper.rb'
|
1001
|
+
require 'com/zoho/crm/api/find_and_merge/success_response.rb'
|
1002
|
+
require 'com/zoho/crm/api/pipeline/pipeline.rb'
|
1003
|
+
require 'com/zoho/crm/api/roles/action_handler.rb'
|
1004
|
+
require 'com/zoho/crm/api/timelines/response_wrapper.rb'
|
1005
|
+
require 'com/zoho/crm/api/record/options.rb'
|
1006
|
+
require 'com/zoho/crm/api/users_transfer_delete/action_wrapper.rb'
|
1007
|
+
require 'com/zoho/crm/api/blueprint/formula.rb'
|
1008
|
+
require 'com/zoho/crm/api/fields/external.rb'
|
1009
|
+
require 'com/zoho/crm/api/org/checkin_preferences.rb'
|
1010
|
+
require 'com/zoho/crm/api/profiles/action_handler.rb'
|
1011
|
+
require 'com/zoho/crm/api/webforms/acknowledge_visitors.rb'
|
1012
|
+
require 'com/zoho/crm/api/record/mass_update_action_handler.rb'
|
1013
|
+
require 'com/zoho/crm/api/user_type_users/api_exception.rb'
|
1014
|
+
require 'com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb'
|
1015
|
+
require 'com/zoho/crm/api/service_preference/response_wrapper.rb'
|
1016
|
+
require 'com/zoho/crm/api/webforms/api_exception.rb'
|
1017
|
+
require 'com/zoho/crm/api/territories/body_wrapper.rb'
|
1018
|
+
require 'com/zoho/crm/api/convert_lead/action_handler.rb'
|
1019
|
+
require 'com/zoho/crm/api/mass_delete_cvid/response_handler.rb'
|
1020
|
+
require 'com/zoho/crm/api/fields/forecast_category.rb'
|
1021
|
+
require 'com/zoho/crm/api/record_locking/locked_for_s.rb'
|
1022
|
+
require 'com/zoho/crm/api/pipeline/action_wrapper.rb'
|
1023
|
+
require 'com/zoho/crm/api/appointment_preference/action_response.rb'
|
1024
|
+
require 'com/zoho/crm/api/layouts/properties.rb'
|
1025
|
+
require 'com/zoho/crm/api/roles/reporting_to.rb'
|
1026
|
+
require 'com/zoho/crm/api/related_records/response_wrapper.rb'
|
1027
|
+
require 'com/zoho/crm/api/available_currencies/api_exception.rb'
|
1028
|
+
require 'com/zoho/crm/api/user_groups/associated_user.rb'
|
1029
|
+
require 'com/zoho/crm/api/users_transfer_delete/action_handler.rb'
|
1030
|
+
require 'com/zoho/crm/api/share_records/body_wrapper.rb'
|
1031
|
+
require 'com/zoho/crm/api/email_drafts/action_wrapper.rb'
|
1032
|
+
require 'com/zoho/crm/api/shift_hours/response_handler.rb'
|
1033
|
+
require 'com/zoho/crm/api/timelines/state.rb'
|
1034
|
+
require 'com/zoho/crm/api/timelines/timeline.rb'
|
1035
|
+
require 'com/zoho/crm/api/inventory_convert/record.rb'
|
1036
|
+
require 'com/zoho/crm/api/unsubscribe_links/success_response.rb'
|
1037
|
+
require 'com/zoho/crm/api/from_addresses/address.rb'
|
1038
|
+
require 'com/zoho/crm/api/pipeline/success_response.rb'
|
1039
|
+
require 'com/zoho/crm/api/inventory_mass_convert/api_exception.rb'
|
1040
|
+
require 'com/zoho/crm/api/field_map_dependency/response_wrapper.rb'
|
1041
|
+
require 'com/zoho/crm/api/fields/multi_module_lookup.rb'
|
1042
|
+
require 'com/zoho/crm/api/notifications/module.rb'
|
1043
|
+
require 'com/zoho/crm/api/assignment_rules/response_handler.rb'
|
1044
|
+
require 'com/zoho/crm/api/tags/new_tag_request_wrapper.rb'
|
1045
|
+
require 'com/zoho/crm/api/mass_change_owner/response_handler.rb'
|
1046
|
+
require 'com/zoho/crm/api/download_attachments/api_exception.rb'
|
1047
|
+
require 'com/zoho/crm/api/territories/action_wrapper.rb'
|
1048
|
+
require 'com/zoho/crm/api/backup/action_handler.rb'
|
1049
|
+
require 'com/zoho/crm/api/profiles/permission_detail.rb'
|
1050
|
+
require 'com/zoho/crm/api/backup/backup_operations.rb'
|
1051
|
+
require 'com/zoho/crm/api/bulk_write/resource.rb'
|
1052
|
+
require 'com/zoho/crm/api/portal_user_type/permissions.rb'
|
1053
|
+
require 'com/zoho/crm/api/layouts/layouts_operations.rb'
|
1054
|
+
require 'com/zoho/crm/api/users_transfer_delete/transfer.rb'
|
1055
|
+
require 'com/zoho/crm/api/custom_views/info.rb'
|
1056
|
+
require 'com/zoho/crm/api/record/count_handler.rb'
|
1057
|
+
require 'com/zoho/crm/api/record/api_exception.rb'
|
1058
|
+
require 'com/zoho/crm/api/notifications/info.rb'
|
1059
|
+
require 'com/zoho/crm/api/notifications/body_wrapper.rb'
|
1060
|
+
require 'com/zoho/crm/api/custom_views/custom_views.rb'
|
1061
|
+
require 'com/zoho/crm/api/bulk_write/field_mapping.rb'
|
1062
|
+
require 'com/zoho/crm/api/fields/rollup_criteria.rb'
|
1063
|
+
require 'com/zoho/crm/api/currencies/response_handler.rb'
|
1064
|
+
require 'com/zoho/crm/api/users_territories/validation_wrapper.rb'
|
1065
|
+
require 'com/zoho/crm/api/variable_groups/api_exception.rb'
|
1066
|
+
require 'com/zoho/crm/api/mail_merge/success_response.rb'
|
1067
|
+
require 'com/zoho/crm/api/global_picklists/replace_body_wrapper.rb'
|
1068
|
+
require 'com/zoho/crm/api/modules/module_fields.rb'
|
1069
|
+
require 'com/zoho/crm/api/appointment_preference/api_exception.rb'
|
1070
|
+
require 'com/zoho/crm/api/convert_lead/success_response.rb'
|
1071
|
+
require 'com/zoho/crm/api/business_hours/success_response.rb'
|
1072
|
+
require 'com/zoho/crm/api/users_territories/success_response.rb'
|
1073
|
+
require 'com/zoho/crm/api/business_hours/api_exception.rb'
|
1074
|
+
require 'com/zoho/crm/api/wizards/conditional_rules.rb'
|
1075
|
+
require 'com/zoho/crm/api/notifications/notifications_operations.rb'
|
1076
|
+
require 'com/zoho/crm/api/reschedule_history/body_wrapper.rb'
|
1077
|
+
require 'com/zoho/crm/api/bulk_write/response_handler.rb'
|
1078
|
+
require 'com/zoho/crm/api/share_records/action_response.rb'
|
1079
|
+
require 'com/zoho/crm/api/field_map_dependency/map_dependency.rb'
|
1080
|
+
require 'com/zoho/crm/api/features/detail.rb'
|
1081
|
+
require 'com/zoho/crm/api/notifications/action_response.rb'
|
1082
|
+
require 'com/zoho/crm/api/currencies/base_currency_action_wrapper.rb'
|
1083
|
+
require 'com/zoho/crm/api/send_mail/to.rb'
|
1084
|
+
require 'com/zoho/crm/api/users/action_wrapper.rb'
|
1085
|
+
require 'com/zoho/crm/api/digest/success_response.rb'
|
1086
|
+
require 'com/zoho/crm/api/attachments/api_exception.rb'
|
1087
|
+
require 'com/zoho/crm/api/entity_scores/entity_scores_operations.rb'
|
1088
|
+
require 'com/zoho/crm/api/definition/minified_property1.rb'
|
1089
|
+
require 'com/zoho/crm/api/field_attachments/api_exception.rb'
|
1090
|
+
require 'com/zoho/crm/api/global_picklists/pick_list_values.rb'
|
1091
|
+
require 'com/zoho/crm/api/unsubscribe_links/api_exception.rb'
|
1092
|
+
require 'com/zoho/crm/api/users/response_handler.rb'
|
1093
|
+
require 'com/zoho/crm/api/email_related_records/criteria.rb'
|
1094
|
+
require 'com/zoho/crm/api/change_owner/action_wrapper.rb'
|
1095
|
+
require 'com/zoho/crm/api/download_attachments/download_attachments_operations.rb'
|
1096
|
+
require 'com/zoho/crm/api/variables/variable.rb'
|
1097
|
+
require 'com/zoho/crm/api/profiles/success_response.rb'
|
1098
|
+
require 'com/zoho/crm/api/record/line_tax.rb'
|
1099
|
+
require 'com/zoho/crm/api/find_and_merge/api_exception.rb'
|
1100
|
+
require 'com/zoho/crm/api/share_records/delete_action_response.rb'
|
1101
|
+
require 'com/zoho/crm/api/email_related_records/field.rb'
|
1102
|
+
require 'com/zoho/crm/api/unsubscribe_links/action_response.rb'
|
1103
|
+
require 'com/zoho/crm/api/share_records/delete_action_wrapper.rb'
|
1104
|
+
require 'com/zoho/crm/api/user_type_users/action_handler.rb'
|
1105
|
+
require 'com/zoho/crm/api/unsubscribe_links/associations_response_handler.rb'
|
1106
|
+
require 'com/zoho/crm/api/org/action_wrapper.rb'
|
1107
|
+
require 'com/zoho/crm/api/wizards/resource.rb'
|
1108
|
+
require 'com/zoho/crm/api/wizards/response_wrapper.rb'
|
1109
|
+
require 'com/zoho/crm/api/share_records/module.rb'
|
1110
|
+
require 'com/zoho/crm/api/fields/private.rb'
|
1111
|
+
require 'com/zoho/crm/api/unsubscribe_links/user.rb'
|
1112
|
+
require 'com/zoho/crm/api/webforms/module.rb'
|
1113
|
+
require 'com/zoho/crm/api/user_groups/groups.rb'
|
1114
|
+
require 'com/zoho/crm/api/territory_users/success_response.rb'
|
1115
|
+
require 'com/zoho/crm/api/attachments/info.rb'
|
1116
|
+
require 'com/zoho/crm/api/currencies/action_handler.rb'
|
1117
|
+
require 'com/zoho/crm/api/field_map_dependency/action_response.rb'
|
1118
|
+
require 'com/zoho/crm/api/global_picklists/response_handler.rb'
|
1119
|
+
require 'com/zoho/crm/api/webforms/form_attributes.rb'
|
1120
|
+
require 'com/zoho/crm/api/email_drafts/email_drafts.rb'
|
1121
|
+
require 'com/zoho/crm/api/roles/response_wrapper.rb'
|
1122
|
+
require 'com/zoho/crm/api/scoring_rules/response_wrapper.rb'
|
1123
|
+
require 'com/zoho/crm/api/appointment_preference/action_wrapper.rb'
|
1124
|
+
require 'com/zoho/crm/api/shift_hours/users.rb'
|
1125
|
+
require 'com/zoho/crm/api/global_picklists/replace_action_wrapper.rb'
|
1126
|
+
require 'com/zoho/crm/api/record_locking_configuration/locking_rules.rb'
|
1127
|
+
require 'com/zoho/crm/api/tags/info.rb'
|
1128
|
+
require 'com/zoho/crm/api/attachments/action_wrapper.rb'
|
1129
|
+
require 'com/zoho/crm/api/associate_email/success_response.rb'
|
1130
|
+
require 'com/zoho/crm/api/cancel_meetings/cancel_meetings_operations.rb'
|
1131
|
+
require 'com/zoho/crm/api/email_drafts/schedule_details.rb'
|
1132
|
+
require 'com/zoho/crm/api/record/territory.rb'
|
1133
|
+
require 'com/zoho/crm/api/custom_views/success_response.rb'
|
1134
|
+
require 'com/zoho/crm/api/holidays/body_wrapper.rb'
|
1135
|
+
require 'com/zoho/crm/api/change_owner/change_owner_operations.rb'
|
1136
|
+
require 'com/zoho/crm/api/blueprint/lookup_field.rb'
|
1137
|
+
require 'com/zoho/crm/api/bulk_write/file_body_wrapper.rb'
|
1138
|
+
require 'com/zoho/crm/api/global_picklists/replace_picklist_value.rb'
|
1139
|
+
require 'com/zoho/crm/api/share_records/action_handler.rb'
|
1140
|
+
require 'com/zoho/crm/api/pipeline/json_details.rb'
|
1141
|
+
require 'com/zoho/crm/api/user_type_users/status_action_wrapper.rb'
|
1142
|
+
require 'com/zoho/crm/api/org/response_handler.rb'
|
1143
|
+
require 'com/zoho/crm/api/users_transfer_delete/action_response.rb'
|
1144
|
+
require 'com/zoho/crm/api/portal_invite/action_response.rb'
|
1145
|
+
require 'com/zoho/crm/api/user_groups/associated_user_count.rb'
|
1146
|
+
require 'com/zoho/crm/api/tags/existing_tag_request_wrapper.rb'
|
1147
|
+
require 'com/zoho/crm/api/email_sharing_details/api_exception.rb'
|
1148
|
+
require 'com/zoho/crm/api/layouts/default_view.rb'
|
1149
|
+
require 'com/zoho/crm/api/layouts/body_wrapper.rb'
|
1150
|
+
require 'com/zoho/crm/api/holidays/info.rb'
|
1151
|
+
require 'com/zoho/crm/api/field_map_dependency/sub_module.rb'
|
1152
|
+
require 'com/zoho/crm/api/features/api_exception.rb'
|
1153
|
+
require 'com/zoho/crm/api/fields/rollup_summary.rb'
|
1154
|
+
require 'com/zoho/crm/api/features/info.rb'
|
1155
|
+
require 'com/zoho/crm/api/user_type_users/response_wrapper.rb'
|
1156
|
+
require 'com/zoho/crm/api/attachments/parent_id.rb'
|
1157
|
+
require 'com/zoho/crm/api/mail_merge/mail_merge_wrapper.rb'
|
1158
|
+
require 'com/zoho/crm/api/send_mail/success_response.rb'
|
1159
|
+
require 'com/zoho/crm/api/holidays/business_holiday.rb'
|
1160
|
+
require 'com/zoho/crm/api/user_groups/jobs_wrapper.rb'
|
1161
|
+
require 'com/zoho/crm/api/webforms/acknowledge_visitor.rb'
|
1162
|
+
require 'com/zoho/crm/api/modules/static_subform_properties.rb'
|
1163
|
+
require 'com/zoho/crm/api/appointment_preference/success_response.rb'
|
1164
|
+
require 'com/zoho/crm/api/assignment_rules/action_wrapper.rb'
|
1165
|
+
require 'com/zoho/crm/api/profiles/profiles_operations.rb'
|
1166
|
+
require 'com/zoho/crm/api/associate_email/record.rb'
|
1167
|
+
require 'com/zoho/crm/api/scoring_rules/expected_field.rb'
|
1168
|
+
require 'com/zoho/crm/api/portals_meta/related_lists.rb'
|
1169
|
+
require 'com/zoho/crm/api/record_locking_configuration/field.rb'
|
1170
|
+
require 'com/zoho/crm/api/cancel_meetings/action_handler.rb'
|
1171
|
+
require 'com/zoho/crm/api/profiles/profile.rb'
|
1172
|
+
require 'com/zoho/crm/api/related_records/action_response.rb'
|
1173
|
+
require 'com/zoho/crm/api/record_locking/response_wrapper.rb'
|
1174
|
+
require 'com/zoho/crm/api/record_locking/lock_record.rb'
|
1175
|
+
require 'com/zoho/crm/api/territories/field.rb'
|
1176
|
+
require 'com/zoho/crm/api/portal_user_type/fields.rb'
|
1177
|
+
require 'com/zoho/crm/api/shift_hours/shift_hours.rb'
|
1178
|
+
require 'com/zoho/crm/api/global_picklists/pick_list_values_associations_response_wrapper.rb'
|
1179
|
+
require 'com/zoho/crm/api/field_map_dependency/picklist_map.rb'
|
1180
|
+
require 'com/zoho/crm/api/notes/response_handler.rb'
|
1181
|
+
require 'com/zoho/crm/api/custom_views/body_wrapper.rb'
|
1182
|
+
require 'com/zoho/crm/api/tags/count_response_wrapper.rb'
|
1183
|
+
require 'com/zoho/crm/api/shift_hours/mandatory_details.rb'
|
1184
|
+
require 'com/zoho/crm/api/webforms/response_handler.rb'
|
1185
|
+
require 'com/zoho/crm/api/timelines/timelines_operations.rb'
|
1186
|
+
require 'com/zoho/crm/api/reschedule_history/success_response.rb'
|
1187
|
+
require 'com/zoho/crm/api/variables/variables_operations.rb'
|
1188
|
+
require 'com/zoho/crm/api/portal_invite/action_wrapper.rb'
|
1189
|
+
require 'com/zoho/crm/api/privacy_preference/config.rb'
|
1190
|
+
require 'com/zoho/crm/api/user_type_users/user_type_users_operations.rb'
|
1191
|
+
require 'com/zoho/crm/api/notes/action_response.rb'
|
1192
|
+
require 'com/zoho/crm/api/email_related_records/email_related_records_operations.rb'
|
1193
|
+
require 'com/zoho/crm/api/webforms/auto_response_rule.rb'
|
1194
|
+
require 'com/zoho/crm/api/global_picklists/replace_success_response.rb'
|
1195
|
+
require 'com/zoho/crm/api/bulk_read/query.rb'
|
1196
|
+
require 'com/zoho/crm/api/custom_views/fields.rb'
|
1197
|
+
require 'com/zoho/crm/api/definition/property.rb'
|
1198
|
+
require 'com/zoho/crm/api/fields/email_parser.rb'
|
1199
|
+
require 'com/zoho/crm/api/files/file_body_wrapper.rb'
|
1200
|
+
require 'com/zoho/crm/api/user_groups/association_wrapper.rb'
|
1201
|
+
require 'com/zoho/crm/api/mail_merge/download_mail_merge_wrapper.rb'
|
1202
|
+
require 'com/zoho/crm/api/fiscal_year/response_wrapper.rb'
|
1203
|
+
require 'com/zoho/crm/api/related_lists/api_exception.rb'
|
1204
|
+
require 'com/zoho/crm/api/record_locking_configuration/api_exception.rb'
|
1205
|
+
require 'com/zoho/crm/api/unblock_email/success_response.rb'
|
1206
|
+
require 'com/zoho/crm/api/users/shift.rb'
|
1207
|
+
require 'com/zoho/crm/api/tags/success_response.rb'
|
1208
|
+
require 'com/zoho/crm/api/record/wizard.rb'
|
1209
|
+
require 'com/zoho/crm/api/profiles/info.rb'
|
1210
|
+
require 'com/zoho/crm/api/modules/argument.rb'
|
1211
|
+
require 'com/zoho/crm/api/user_groups/info.rb'
|
1212
|
+
require 'com/zoho/crm/api/send_mail/api_exception.rb'
|
1213
|
+
require 'com/zoho/crm/api/record/criteria.rb'
|
1214
|
+
require 'com/zoho/crm/api/notes/action_handler.rb'
|
1215
|
+
require 'com/zoho/crm/api/record/action_handler.rb'
|
1216
|
+
require 'com/zoho/crm/api/field_map_dependency/action_handler.rb'
|
1217
|
+
require 'com/zoho/crm/api/unsubscribe_links/unsubscribe_links_operations.rb'
|
1218
|
+
require 'com/zoho/crm/api/portal_user_type/api_exception.rb'
|
1219
|
+
require 'com/zoho/crm/api/wizards/field.rb'
|
1220
|
+
require 'com/zoho/crm/api/deal_contact_roles/response_wrapper.rb'
|
1221
|
+
require 'com/zoho/crm/api/territories/success_response.rb'
|
1222
|
+
require 'com/zoho/crm/api/notifications/notification_condition.rb'
|
1223
|
+
require 'com/zoho/crm/api/find_and_merge/response_wrapper.rb'
|
1224
|
+
require 'com/zoho/crm/api/send_mail/linked_module.rb'
|
1225
|
+
require 'com/zoho/crm/api/deal_contact_roles/action_wrapper.rb'
|
1226
|
+
require 'com/zoho/crm/api/mass_change_owner/action_response.rb'
|
1227
|
+
require 'com/zoho/crm/api/blueprint/blue_print.rb'
|
1228
|
+
require 'com/zoho/crm/api/digest/dependee.rb'
|
1229
|
+
require 'com/zoho/crm/api/pipeline/response_wrapper.rb'
|
1230
|
+
require 'com/zoho/crm/api/definition/definition.rb'
|
1231
|
+
require 'com/zoho/crm/api/digest/body_wrapper.rb'
|
1232
|
+
require 'com/zoho/crm/api/territories/territories.rb'
|
1233
|
+
require 'com/zoho/crm/api/notes/body_wrapper.rb'
|
1234
|
+
require 'com/zoho/crm/api/notifications/action_wrapper.rb'
|
1235
|
+
require 'com/zoho/crm/api/convert_lead/carry_over_tags.rb'
|
1236
|
+
require 'com/zoho/crm/api/currencies/base_currency_wrapper.rb'
|
1237
|
+
require 'com/zoho/crm/api/user_groups/sources.rb'
|
1238
|
+
require 'com/zoho/crm/api/users_territories/action_response.rb'
|
1239
|
+
require 'com/zoho/crm/api/users_transfer_delete/transfer_and_delete.rb'
|
1240
|
+
require 'com/zoho/crm/api/appointment_preference/body_wrapper.rb'
|
1241
|
+
require 'com/zoho/crm/api/global_picklists/api_exception.rb'
|
1242
|
+
require 'com/zoho/crm/api/share_records/dependee.rb'
|
1243
|
+
require 'com/zoho/crm/api/bulk_read/action_wrapper.rb'
|
1244
|
+
require 'com/zoho/crm/api/portals/success_response.rb'
|
1245
|
+
require 'com/zoho/crm/api/wizards/wizards_operations.rb'
|
1246
|
+
require 'com/zoho/crm/api/notifications/response_handler.rb'
|
1247
|
+
require 'com/zoho/crm/api/find_and_merge/action_response.rb'
|
1248
|
+
require 'com/zoho/crm/api/modules/static_subform_field.rb'
|
1249
|
+
require 'com/zoho/crm/api/unsubscribe_links/body_wrapper.rb'
|
1250
|
+
require 'com/zoho/crm/api/mass_delete_cvid/action_wrapper.rb'
|
1251
|
+
require 'com/zoho/crm/api/users_territories/validation.rb'
|
1252
|
+
require 'com/zoho/crm/api/send_mail/template.rb'
|
1253
|
+
require 'com/zoho/crm/api/layouts/response_handler.rb'
|
1254
|
+
require 'com/zoho/crm/api/timelines/module.rb'
|
1255
|
+
require 'com/zoho/crm/api/org/file_body_wrapper.rb'
|
1256
|
+
require 'com/zoho/crm/api/unblock_email/action_wrapper.rb'
|
1257
|
+
require 'com/zoho/crm/api/currencies/body_wrapper.rb'
|
1258
|
+
require 'com/zoho/crm/api/inventory_mass_convert/convert_to.rb'
|
1259
|
+
require 'com/zoho/crm/api/attachments/response_wrapper.rb'
|
1260
|
+
require 'com/zoho/crm/api/record/pricing_details.rb'
|
1261
|
+
require 'com/zoho/crm/api/business_hours/action_wrapper.rb'
|
1262
|
+
require 'com/zoho/crm/api/territory_users/action_wrapper.rb'
|
1263
|
+
require 'com/zoho/crm/api/tags/associated_places.rb'
|
1264
|
+
require 'com/zoho/crm/api/record/image_upload.rb'
|
1265
|
+
require 'com/zoho/crm/api/dc/ca_datacenter.rb'
|
1266
|
+
require 'com/zoho/crm/api/dc/eu_datacenter.rb'
|
1267
|
+
require 'com/zoho/crm/api/dc/in_datacenter.rb'
|
1268
|
+
require 'com/zoho/crm/api/dc/au_datacenter.rb'
|
1269
|
+
require 'com/zoho/crm/api/dc/cn_datacenter.rb'
|
1270
|
+
require 'com/zoho/crm/api/dc/us_datacenter.rb'
|
1271
|
+
require 'com/zoho/crm/api/dc/datacenter.rb'
|
1272
|
+
require 'com/zoho/crm/api/dc/jp_datacenter.rb'
|
1273
|
+
require 'com/zoho/crm/api/util/api_http_connector.rb'
|
1274
|
+
require 'com/zoho/crm/api/util/form_data_converter.rb'
|
1275
|
+
require 'com/zoho/crm/api/util/common_api_handler.rb'
|
1276
|
+
require 'com/zoho/crm/api/util/model.rb'
|
1277
|
+
require 'com/zoho/crm/api/util/api_response.rb'
|
1278
|
+
require 'com/zoho/crm/api/util/stream_wrapper.rb'
|
1279
|
+
require 'com/zoho/crm/api/util/module_fields_handler.rb'
|
1280
|
+
require 'com/zoho/crm/api/util/header_param_validator.rb'
|
1281
|
+
require 'com/zoho/crm/api/util/converter.rb'
|
1282
|
+
require 'com/zoho/crm/api/util/json_converter.rb'
|
1283
|
+
require 'com/zoho/crm/api/util/constants.rb'
|
1284
|
+
require 'com/zoho/crm/api/util/choice.rb'
|
1285
|
+
require 'com/zoho/crm/api/util/utility.rb'
|
1286
|
+
require 'com/zoho/crm/api/util/downloader.rb'
|
1287
|
+
require 'com/zoho/crm/api/util/data_type_converter.rb'
|
1288
|
+
require 'com/zoho/crm/api/request_proxy.rb'
|
1289
|
+
require 'com/zoho/crm/api/header.rb'
|
1290
|
+
require 'com/zoho/crm/api/header_map.rb'
|
1291
|
+
require 'com/zoho/crm/api/user_signature'
|
1292
|
+
require 'com/zoho/crm/api/initializer.rb'
|
1293
|
+
require 'com/zoho/crm/api/parameter_map.rb'
|
1294
|
+
require 'com/zoho/crm/api/sdk_config.rb'
|
1295
|
+
require 'com/zoho/crm/api/param.rb'
|
1296
|
+
require 'com/zoho/crm/api/exception/sdk_exception.rb'
|
1297
|
+
require 'com/zoho/api/logger/sdk_logger.rb'
|
1298
|
+
require 'com/zoho/api/authenticator/oauth_token.rb'
|
1299
|
+
require 'com/zoho/api/authenticator/token.rb'
|
1300
|
+
require 'com/zoho/api/authenticator/store/db_store.rb'
|
1301
|
+
require 'com/zoho/api/authenticator/store/token_store.rb'
|
1302
|
+
require 'com/zoho/api/authenticator/store/file_store.rb'
|