ZOHOCRMSDK7_0 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/src/ZOHOCRMSDK7_0.rb +1472 -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 +64 -0
- data/src/com/zoho/crm/api/apis/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/apis/apis_operations.rb +40 -0
- data/src/com/zoho/crm/api/apis/operation_types.rb +120 -0
- data/src/com/zoho/crm/api/apis/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/apis/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/apis/supported_api.rb +82 -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_response.rb +12 -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 +125 -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 +123 -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/audit_log_export/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/audit_log_export/action_response.rb +12 -0
- data/src/com/zoho/crm/api/audit_log_export/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/audit_log_export/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/audit_log_export/audit_log_export.rb +196 -0
- data/src/com/zoho/crm/api/audit_log_export/audit_log_export_operations.rb +70 -0
- data/src/com/zoho/crm/api/audit_log_export/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/audit_log_export/criteria.rb +136 -0
- data/src/com/zoho/crm/api/audit_log_export/field.rb +63 -0
- data/src/com/zoho/crm/api/audit_log_export/module.rb +82 -0
- data/src/com/zoho/crm/api/audit_log_export/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/audit_log_export/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/audit_log_export/success_response.rb +123 -0
- data/src/com/zoho/crm/api/audit_log_export/user.rb +82 -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/current_picklist.rb +101 -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 +272 -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 +179 -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 +158 -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/cadences/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/cadences/cadences.rb +310 -0
- data/src/com/zoho/crm/api/cadences/custom_view.rb +82 -0
- data/src/com/zoho/crm/api/cadences/execute_every.rb +82 -0
- data/src/com/zoho/crm/api/cadences/execution_detail.rb +139 -0
- data/src/com/zoho/crm/api/cadences/info.rb +120 -0
- data/src/com/zoho/crm/api/cadences/module.rb +82 -0
- data/src/com/zoho/crm/api/cadences/summary.rb +101 -0
- data/src/com/zoho/crm/api/cadences/unenroll_property.rb +82 -0
- data/src/com/zoho/crm/api/cadences/user.rb +82 -0
- data/src/com/zoho/crm/api/cadences_execution/action.rb +82 -0
- data/src/com/zoho/crm/api/cadences_execution/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/cadences_execution/action_response.rb +12 -0
- data/src/com/zoho/crm/api/cadences_execution/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/cadences_execution/analytics.rb +120 -0
- data/src/com/zoho/crm/api/cadences_execution/analytics_alert.rb +215 -0
- data/src/com/zoho/crm/api/cadences_execution/analytics_call.rb +196 -0
- data/src/com/zoho/crm/api/cadences_execution/analytics_task.rb +158 -0
- data/src/com/zoho/crm/api/cadences_execution/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/cadences_execution/body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/cadences_execution/cadence.rb +82 -0
- data/src/com/zoho/crm/api/cadences_execution/cadences_analytics_get.rb +139 -0
- data/src/com/zoho/crm/api/cadences_execution/cadences_execution_operations.rb +68 -0
- data/src/com/zoho/crm/api/cadences_execution/details.rb +82 -0
- data/src/com/zoho/crm/api/cadences_execution/module.rb +82 -0
- data/src/com/zoho/crm/api/cadences_execution/parent_follow_up.rb +63 -0
- data/src/com/zoho/crm/api/cadences_execution/success_response.rb +123 -0
- data/src/com/zoho/crm/api/cadences_execution/template.rb +82 -0
- data/src/com/zoho/crm/api/cadences_execution/user.rb +82 -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 +237 -0
- data/src/com/zoho/crm/api/convert_lead/move_attachments_to.rb +82 -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 +65 -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 +154 -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 +68 -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/duplicate_check_preference/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/action_response.rb +12 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/current_field.rb +101 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/duplicate_check_preference.rb +83 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/duplicate_check_preference_operations.rb +108 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/expected_fields.rb +82 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/field_mappings.rb +82 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/mapped_field.rb +101 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/mapped_module.rb +101 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/success_response.rb +123 -0
- data/src/com/zoho/crm/api/duplicate_check_preference/type_configuration.rb +82 -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 +102 -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 +196 -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 +101 -0
- data/src/com/zoho/crm/api/features/feature.rb +158 -0
- data/src/com/zoho/crm/api/features/features_operations.rb +107 -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 +177 -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 +1525 -0
- data/src/com/zoho/crm/api/fields/fields_operations.rb +245 -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/layout_association.rb +101 -0
- data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
- data/src/com/zoho/crm/api/fields/mandatory_details.rb +82 -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/functions/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/functions/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/functions/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/functions/functions_operations.rb +175 -0
- data/src/com/zoho/crm/api/functions/response_wrapper.rb +12 -0
- data/src/com/zoho/crm/api/functions/success_response.rb +104 -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 +463 -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 +1629 -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/subform_property.rb +63 -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/mass_delete_tags/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_tags/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/mass_delete_tags/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/mass_delete_tags/mass_delete.rb +82 -0
- data/src/com/zoho/crm/api/mass_delete_tags/mass_delete_details.rb +142 -0
- data/src/com/zoho/crm/api/mass_delete_tags/mass_delete_tags_operations.rb +64 -0
- data/src/com/zoho/crm/api/mass_delete_tags/module.rb +82 -0
- data/src/com/zoho/crm/api/mass_delete_tags/status_action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_tags/status_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_tags/status_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_delete_tags/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_delete_tags/tag.rb +63 -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 +1551 -0
- data/src/com/zoho/crm/api/modules/modules.rb +1305 -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 +350 -0
- data/src/com/zoho/crm/api/notes/notes_operations.rb +233 -0
- data/src/com/zoho/crm/api/notes/parent_id.rb +102 -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/pick_list_values/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/pick_list_values/layout_association.rb +101 -0
- data/src/com/zoho/crm/api/pick_list_values/pick_list_values.rb +196 -0
- data/src/com/zoho/crm/api/pick_list_values/pick_list_values_operations.rb +47 -0
- data/src/com/zoho/crm/api/pick_list_values/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/pick_list_values/response_wrapper.rb +65 -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 +2899 -0
- data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
- data/src/com/zoho/crm/api/record/file_details.rb +235 -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 +1070 -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 +406 -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 +181 -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 +389 -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 +312 -0
- data/src/com/zoho/crm/api/territories/territories_operations.rb +295 -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 +131 -0
- data/src/com/zoho/crm/api/user_groups/assign.rb +159 -0
- data/src/com/zoho/crm/api/user_groups/assigned_action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/assigned_action_wrapper.rb +63 -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/criteria.rb +137 -0
- data/src/com/zoho/crm/api/user_groups/field.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/get_assign_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/get_unassign_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/grouped_count.rb +83 -0
- data/src/com/zoho/crm/api/user_groups/grouped_count_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/groups.rb +215 -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/un_assigned_action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/un_assigned_action_wrapper.rb +63 -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 +296 -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 +67 -0
- data/src/com/zoho/crm/api/users/api_exception.rb +129 -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/count_handler.rb +12 -0
- data/src/com/zoho/crm/api/users/count_wrapper.rb +65 -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 +247 -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 +757 -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 +780 -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 +1009 -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/com/zoho/crm/api/zia_allowed_field_mappings/allowed_field_map.rb +82 -0
- data/src/com/zoho/crm/api/zia_allowed_field_mappings/allowed_output_data.rb +82 -0
- data/src/com/zoho/crm/api/zia_allowed_field_mappings/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/zia_allowed_field_mappings/crm_field.rb +82 -0
- data/src/com/zoho/crm/api/zia_allowed_field_mappings/enrich_field.rb +82 -0
- data/src/com/zoho/crm/api/zia_allowed_field_mappings/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_enrichment/action_response.rb +12 -0
- data/src/com/zoho/crm/api/zia_enrichment/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_enrichment/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/zia_enrichment/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_enrichment/crm_field.rb +101 -0
- data/src/com/zoho/crm/api/zia_enrichment/data_enrichment.rb +234 -0
- data/src/com/zoho/crm/api/zia_enrichment/enrich_field.rb +82 -0
- data/src/com/zoho/crm/api/zia_enrichment/input_data.rb +82 -0
- data/src/com/zoho/crm/api/zia_enrichment/module.rb +82 -0
- data/src/com/zoho/crm/api/zia_enrichment/output_data.rb +82 -0
- data/src/com/zoho/crm/api/zia_enrichment/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_enrichment/scrapy_action_response.rb +12 -0
- data/src/com/zoho/crm/api/zia_enrichment/scrapy_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_enrichment/scrapy_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_enrichment/scrapy_feedback.rb +121 -0
- data/src/com/zoho/crm/api/zia_enrichment/scrapy_success.rb +123 -0
- data/src/com/zoho/crm/api/zia_enrichment/success_response.rb +121 -0
- data/src/com/zoho/crm/api/zia_enrichment/user.rb +82 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/action_response.rb +12 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/address.rb +139 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/description.rb +82 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/enrich_based_on.rb +101 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/enriched_data.rb +557 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/industry.rb +82 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/info.rb +120 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/social_media.rb +82 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/success_response.rb +123 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/user.rb +82 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/zia_org_enrichment.rb +158 -0
- data/src/com/zoho/crm/api/zia_org_enrichment/zia_org_enrichment_operations.rb +117 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/action_response.rb +12 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/address.rb +139 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/company.rb +82 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/company_info.rb +101 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/email_info.rb +82 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/enrich_based_on.rb +120 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/enriched_data.rb +424 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/experience.rb +139 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/industry.rb +82 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/info.rb +120 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/social.rb +101 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/social_media.rb +82 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/success_response.rb +123 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/user.rb +82 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/zia_people_enrichment.rb +158 -0
- data/src/com/zoho/crm/api/zia_people_enrichment/zia_people_enrichment_operations.rb +121 -0
- data/src/resources/json_details.json +1 -0
- data/src/version.rb +3 -0
- metadata +1634 -0
@@ -0,0 +1,1305 @@
|
|
1
|
+
require_relative '../custom_views/custom_views'
|
2
|
+
require_relative '../fields/layout_association'
|
3
|
+
require_relative '../fields/minified_field'
|
4
|
+
require_relative '../profiles/minified_profile'
|
5
|
+
require_relative '../related_lists/related_list'
|
6
|
+
require_relative '../users/minified_user'
|
7
|
+
require_relative '../util/choice'
|
8
|
+
require_relative '../util/model'
|
9
|
+
|
10
|
+
module ZOHOCRMSDK
|
11
|
+
module Modules
|
12
|
+
class Modules
|
13
|
+
include Util::Model
|
14
|
+
|
15
|
+
# Creates an instance of Modules
|
16
|
+
def initialize
|
17
|
+
@has_more_profiles = nil
|
18
|
+
@sub_menu_available = nil
|
19
|
+
@global_search_supported = nil
|
20
|
+
@deletable = nil
|
21
|
+
@description = nil
|
22
|
+
@creatable = nil
|
23
|
+
@recycle_bin_on_delete = nil
|
24
|
+
@inventory_template_supported = nil
|
25
|
+
@modified_time = nil
|
26
|
+
@plural_label = nil
|
27
|
+
@presence_sub_menu = nil
|
28
|
+
@triggers_supported = nil
|
29
|
+
@id = nil
|
30
|
+
@chart_view = nil
|
31
|
+
@isblueprintsupported = nil
|
32
|
+
@visibility = nil
|
33
|
+
@visible = nil
|
34
|
+
@convertable = nil
|
35
|
+
@editable = nil
|
36
|
+
@emailtemplate_support = nil
|
37
|
+
@email_parser_supported = nil
|
38
|
+
@filter_supported = nil
|
39
|
+
@show_as_tab = nil
|
40
|
+
@web_link = nil
|
41
|
+
@sequence_number = nil
|
42
|
+
@singular_label = nil
|
43
|
+
@viewable = nil
|
44
|
+
@api_supported = nil
|
45
|
+
@api_name = nil
|
46
|
+
@quick_create = nil
|
47
|
+
@generated_type = nil
|
48
|
+
@feeds_required = nil
|
49
|
+
@scoring_supported = nil
|
50
|
+
@webform_supported = nil
|
51
|
+
@territory = nil
|
52
|
+
@arguments = nil
|
53
|
+
@module_name = nil
|
54
|
+
@chart_view_supported = nil
|
55
|
+
@profile_count = nil
|
56
|
+
@business_card_field_limit = nil
|
57
|
+
@track_current_data = nil
|
58
|
+
@modified_by = nil
|
59
|
+
@profiles = nil
|
60
|
+
@parent_module = nil
|
61
|
+
@activity_badge = nil
|
62
|
+
@field_states = nil
|
63
|
+
@business_card_fields = nil
|
64
|
+
@per_page = nil
|
65
|
+
@properties = nil
|
66
|
+
@on_demand_properties = nil
|
67
|
+
@search_layout_fields = nil
|
68
|
+
@kanban_view_supported = nil
|
69
|
+
@lookup_field_properties = nil
|
70
|
+
@kanban_view = nil
|
71
|
+
@related_lists = nil
|
72
|
+
@filter_status = nil
|
73
|
+
@related_list_properties = nil
|
74
|
+
@display_field = nil
|
75
|
+
@layouts = nil
|
76
|
+
@fields = nil
|
77
|
+
@custom_view = nil
|
78
|
+
@zia_view = nil
|
79
|
+
@default_mapping_fields = nil
|
80
|
+
@status = nil
|
81
|
+
@static_subform_properties = nil
|
82
|
+
@layout_associations = nil
|
83
|
+
@key_modified = Hash.new
|
84
|
+
end
|
85
|
+
|
86
|
+
# The method to get the has_more_profiles
|
87
|
+
# @return A Boolean value
|
88
|
+
|
89
|
+
def has_more_profiles
|
90
|
+
@has_more_profiles
|
91
|
+
end
|
92
|
+
|
93
|
+
# The method to set the value to has_more_profiles
|
94
|
+
# @param has_more_profiles [Boolean] A Boolean
|
95
|
+
|
96
|
+
def has_more_profiles=(has_more_profiles)
|
97
|
+
if has_more_profiles!=nil and ! [true, false].include?has_more_profiles
|
98
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: has_more_profiles EXPECTED TYPE: Boolean', nil, nil)
|
99
|
+
end
|
100
|
+
@has_more_profiles = has_more_profiles
|
101
|
+
@key_modified['has_more_profiles'] = 1
|
102
|
+
end
|
103
|
+
|
104
|
+
# The method to get the sub_menu_available
|
105
|
+
# @return A Boolean value
|
106
|
+
|
107
|
+
def sub_menu_available
|
108
|
+
@sub_menu_available
|
109
|
+
end
|
110
|
+
|
111
|
+
# The method to set the value to sub_menu_available
|
112
|
+
# @param sub_menu_available [Boolean] A Boolean
|
113
|
+
|
114
|
+
def sub_menu_available=(sub_menu_available)
|
115
|
+
if sub_menu_available!=nil and ! [true, false].include?sub_menu_available
|
116
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sub_menu_available EXPECTED TYPE: Boolean', nil, nil)
|
117
|
+
end
|
118
|
+
@sub_menu_available = sub_menu_available
|
119
|
+
@key_modified['sub_menu_available'] = 1
|
120
|
+
end
|
121
|
+
|
122
|
+
# The method to get the global_search_supported
|
123
|
+
# @return A Boolean value
|
124
|
+
|
125
|
+
def global_search_supported
|
126
|
+
@global_search_supported
|
127
|
+
end
|
128
|
+
|
129
|
+
# The method to set the value to global_search_supported
|
130
|
+
# @param global_search_supported [Boolean] A Boolean
|
131
|
+
|
132
|
+
def global_search_supported=(global_search_supported)
|
133
|
+
if global_search_supported!=nil and ! [true, false].include?global_search_supported
|
134
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: global_search_supported EXPECTED TYPE: Boolean', nil, nil)
|
135
|
+
end
|
136
|
+
@global_search_supported = global_search_supported
|
137
|
+
@key_modified['global_search_supported'] = 1
|
138
|
+
end
|
139
|
+
|
140
|
+
# The method to get the deletable
|
141
|
+
# @return A Boolean value
|
142
|
+
|
143
|
+
def deletable
|
144
|
+
@deletable
|
145
|
+
end
|
146
|
+
|
147
|
+
# The method to set the value to deletable
|
148
|
+
# @param deletable [Boolean] A Boolean
|
149
|
+
|
150
|
+
def deletable=(deletable)
|
151
|
+
if deletable!=nil and ! [true, false].include?deletable
|
152
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: deletable EXPECTED TYPE: Boolean', nil, nil)
|
153
|
+
end
|
154
|
+
@deletable = deletable
|
155
|
+
@key_modified['deletable'] = 1
|
156
|
+
end
|
157
|
+
|
158
|
+
# The method to get the description
|
159
|
+
# @return A String value
|
160
|
+
|
161
|
+
def description
|
162
|
+
@description
|
163
|
+
end
|
164
|
+
|
165
|
+
# The method to set the value to description
|
166
|
+
# @param description [String] A String
|
167
|
+
|
168
|
+
def description=(description)
|
169
|
+
if description!=nil and !description.is_a? String
|
170
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: description EXPECTED TYPE: String', nil, nil)
|
171
|
+
end
|
172
|
+
@description = description
|
173
|
+
@key_modified['description'] = 1
|
174
|
+
end
|
175
|
+
|
176
|
+
# The method to get the creatable
|
177
|
+
# @return A Boolean value
|
178
|
+
|
179
|
+
def creatable
|
180
|
+
@creatable
|
181
|
+
end
|
182
|
+
|
183
|
+
# The method to set the value to creatable
|
184
|
+
# @param creatable [Boolean] A Boolean
|
185
|
+
|
186
|
+
def creatable=(creatable)
|
187
|
+
if creatable!=nil and ! [true, false].include?creatable
|
188
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: creatable EXPECTED TYPE: Boolean', nil, nil)
|
189
|
+
end
|
190
|
+
@creatable = creatable
|
191
|
+
@key_modified['creatable'] = 1
|
192
|
+
end
|
193
|
+
|
194
|
+
# The method to get the recycle_bin_on_delete
|
195
|
+
# @return A Boolean value
|
196
|
+
|
197
|
+
def recycle_bin_on_delete
|
198
|
+
@recycle_bin_on_delete
|
199
|
+
end
|
200
|
+
|
201
|
+
# The method to set the value to recycle_bin_on_delete
|
202
|
+
# @param recycle_bin_on_delete [Boolean] A Boolean
|
203
|
+
|
204
|
+
def recycle_bin_on_delete=(recycle_bin_on_delete)
|
205
|
+
if recycle_bin_on_delete!=nil and ! [true, false].include?recycle_bin_on_delete
|
206
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: recycle_bin_on_delete EXPECTED TYPE: Boolean', nil, nil)
|
207
|
+
end
|
208
|
+
@recycle_bin_on_delete = recycle_bin_on_delete
|
209
|
+
@key_modified['recycle_bin_on_delete'] = 1
|
210
|
+
end
|
211
|
+
|
212
|
+
# The method to get the inventory_template_supported
|
213
|
+
# @return A Boolean value
|
214
|
+
|
215
|
+
def inventory_template_supported
|
216
|
+
@inventory_template_supported
|
217
|
+
end
|
218
|
+
|
219
|
+
# The method to set the value to inventory_template_supported
|
220
|
+
# @param inventory_template_supported [Boolean] A Boolean
|
221
|
+
|
222
|
+
def inventory_template_supported=(inventory_template_supported)
|
223
|
+
if inventory_template_supported!=nil and ! [true, false].include?inventory_template_supported
|
224
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: inventory_template_supported EXPECTED TYPE: Boolean', nil, nil)
|
225
|
+
end
|
226
|
+
@inventory_template_supported = inventory_template_supported
|
227
|
+
@key_modified['inventory_template_supported'] = 1
|
228
|
+
end
|
229
|
+
|
230
|
+
# The method to get the modified_time
|
231
|
+
# @return An instance of DateTime
|
232
|
+
|
233
|
+
def modified_time
|
234
|
+
@modified_time
|
235
|
+
end
|
236
|
+
|
237
|
+
# The method to set the value to modified_time
|
238
|
+
# @param modified_time [DateTime] An instance of DateTime
|
239
|
+
|
240
|
+
def modified_time=(modified_time)
|
241
|
+
if modified_time!=nil and !modified_time.is_a? DateTime
|
242
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_time EXPECTED TYPE: DateTime', nil, nil)
|
243
|
+
end
|
244
|
+
@modified_time = modified_time
|
245
|
+
@key_modified['modified_time'] = 1
|
246
|
+
end
|
247
|
+
|
248
|
+
# The method to get the plural_label
|
249
|
+
# @return A String value
|
250
|
+
|
251
|
+
def plural_label
|
252
|
+
@plural_label
|
253
|
+
end
|
254
|
+
|
255
|
+
# The method to set the value to plural_label
|
256
|
+
# @param plural_label [String] A String
|
257
|
+
|
258
|
+
def plural_label=(plural_label)
|
259
|
+
if plural_label!=nil and !plural_label.is_a? String
|
260
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: plural_label EXPECTED TYPE: String', nil, nil)
|
261
|
+
end
|
262
|
+
@plural_label = plural_label
|
263
|
+
@key_modified['plural_label'] = 1
|
264
|
+
end
|
265
|
+
|
266
|
+
# The method to get the presence_sub_menu
|
267
|
+
# @return A Boolean value
|
268
|
+
|
269
|
+
def presence_sub_menu
|
270
|
+
@presence_sub_menu
|
271
|
+
end
|
272
|
+
|
273
|
+
# The method to set the value to presence_sub_menu
|
274
|
+
# @param presence_sub_menu [Boolean] A Boolean
|
275
|
+
|
276
|
+
def presence_sub_menu=(presence_sub_menu)
|
277
|
+
if presence_sub_menu!=nil and ! [true, false].include?presence_sub_menu
|
278
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: presence_sub_menu EXPECTED TYPE: Boolean', nil, nil)
|
279
|
+
end
|
280
|
+
@presence_sub_menu = presence_sub_menu
|
281
|
+
@key_modified['presence_sub_menu'] = 1
|
282
|
+
end
|
283
|
+
|
284
|
+
# The method to get the triggers_supported
|
285
|
+
# @return A Boolean value
|
286
|
+
|
287
|
+
def triggers_supported
|
288
|
+
@triggers_supported
|
289
|
+
end
|
290
|
+
|
291
|
+
# The method to set the value to triggers_supported
|
292
|
+
# @param triggers_supported [Boolean] A Boolean
|
293
|
+
|
294
|
+
def triggers_supported=(triggers_supported)
|
295
|
+
if triggers_supported!=nil and ! [true, false].include?triggers_supported
|
296
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: triggers_supported EXPECTED TYPE: Boolean', nil, nil)
|
297
|
+
end
|
298
|
+
@triggers_supported = triggers_supported
|
299
|
+
@key_modified['triggers_supported'] = 1
|
300
|
+
end
|
301
|
+
|
302
|
+
# The method to get the id
|
303
|
+
# @return A Integer value
|
304
|
+
|
305
|
+
def id
|
306
|
+
@id
|
307
|
+
end
|
308
|
+
|
309
|
+
# The method to set the value to id
|
310
|
+
# @param id [Integer] A Integer
|
311
|
+
|
312
|
+
def id=(id)
|
313
|
+
if id!=nil and !id.is_a? Integer
|
314
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
|
315
|
+
end
|
316
|
+
@id = id
|
317
|
+
@key_modified['id'] = 1
|
318
|
+
end
|
319
|
+
|
320
|
+
# The method to get the chart_view
|
321
|
+
# @return A Boolean value
|
322
|
+
|
323
|
+
def chart_view
|
324
|
+
@chart_view
|
325
|
+
end
|
326
|
+
|
327
|
+
# The method to set the value to chart_view
|
328
|
+
# @param chart_view [Boolean] A Boolean
|
329
|
+
|
330
|
+
def chart_view=(chart_view)
|
331
|
+
if chart_view!=nil and ! [true, false].include?chart_view
|
332
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: chart_view EXPECTED TYPE: Boolean', nil, nil)
|
333
|
+
end
|
334
|
+
@chart_view = chart_view
|
335
|
+
@key_modified['chart_view'] = 1
|
336
|
+
end
|
337
|
+
|
338
|
+
# The method to get the isblueprintsupported
|
339
|
+
# @return A Boolean value
|
340
|
+
|
341
|
+
def isblueprintsupported
|
342
|
+
@isblueprintsupported
|
343
|
+
end
|
344
|
+
|
345
|
+
# The method to set the value to isblueprintsupported
|
346
|
+
# @param isblueprintsupported [Boolean] A Boolean
|
347
|
+
|
348
|
+
def isblueprintsupported=(isblueprintsupported)
|
349
|
+
if isblueprintsupported!=nil and ! [true, false].include?isblueprintsupported
|
350
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: isblueprintsupported EXPECTED TYPE: Boolean', nil, nil)
|
351
|
+
end
|
352
|
+
@isblueprintsupported = isblueprintsupported
|
353
|
+
@key_modified['isBlueprintSupported'] = 1
|
354
|
+
end
|
355
|
+
|
356
|
+
# The method to get the visibility
|
357
|
+
# @return A Integer value
|
358
|
+
|
359
|
+
def visibility
|
360
|
+
@visibility
|
361
|
+
end
|
362
|
+
|
363
|
+
# The method to set the value to visibility
|
364
|
+
# @param visibility [Integer] A Integer
|
365
|
+
|
366
|
+
def visibility=(visibility)
|
367
|
+
if visibility!=nil and !visibility.is_a? Integer
|
368
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visibility EXPECTED TYPE: Integer', nil, nil)
|
369
|
+
end
|
370
|
+
@visibility = visibility
|
371
|
+
@key_modified['visibility'] = 1
|
372
|
+
end
|
373
|
+
|
374
|
+
# The method to get the visible
|
375
|
+
# @return A Boolean value
|
376
|
+
|
377
|
+
def visible
|
378
|
+
@visible
|
379
|
+
end
|
380
|
+
|
381
|
+
# The method to set the value to visible
|
382
|
+
# @param visible [Boolean] A Boolean
|
383
|
+
|
384
|
+
def visible=(visible)
|
385
|
+
if visible!=nil and ! [true, false].include?visible
|
386
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visible EXPECTED TYPE: Boolean', nil, nil)
|
387
|
+
end
|
388
|
+
@visible = visible
|
389
|
+
@key_modified['visible'] = 1
|
390
|
+
end
|
391
|
+
|
392
|
+
# The method to get the convertable
|
393
|
+
# @return A Boolean value
|
394
|
+
|
395
|
+
def convertable
|
396
|
+
@convertable
|
397
|
+
end
|
398
|
+
|
399
|
+
# The method to set the value to convertable
|
400
|
+
# @param convertable [Boolean] A Boolean
|
401
|
+
|
402
|
+
def convertable=(convertable)
|
403
|
+
if convertable!=nil and ! [true, false].include?convertable
|
404
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: convertable EXPECTED TYPE: Boolean', nil, nil)
|
405
|
+
end
|
406
|
+
@convertable = convertable
|
407
|
+
@key_modified['convertable'] = 1
|
408
|
+
end
|
409
|
+
|
410
|
+
# The method to get the editable
|
411
|
+
# @return A Boolean value
|
412
|
+
|
413
|
+
def editable
|
414
|
+
@editable
|
415
|
+
end
|
416
|
+
|
417
|
+
# The method to set the value to editable
|
418
|
+
# @param editable [Boolean] A Boolean
|
419
|
+
|
420
|
+
def editable=(editable)
|
421
|
+
if editable!=nil and ! [true, false].include?editable
|
422
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: editable EXPECTED TYPE: Boolean', nil, nil)
|
423
|
+
end
|
424
|
+
@editable = editable
|
425
|
+
@key_modified['editable'] = 1
|
426
|
+
end
|
427
|
+
|
428
|
+
# The method to get the emailtemplate_support
|
429
|
+
# @return A Boolean value
|
430
|
+
|
431
|
+
def emailtemplate_support
|
432
|
+
@emailtemplate_support
|
433
|
+
end
|
434
|
+
|
435
|
+
# The method to set the value to emailtemplate_support
|
436
|
+
# @param emailtemplate_support [Boolean] A Boolean
|
437
|
+
|
438
|
+
def emailtemplate_support=(emailtemplate_support)
|
439
|
+
if emailtemplate_support!=nil and ! [true, false].include?emailtemplate_support
|
440
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: emailtemplate_support EXPECTED TYPE: Boolean', nil, nil)
|
441
|
+
end
|
442
|
+
@emailtemplate_support = emailtemplate_support
|
443
|
+
@key_modified['emailTemplate_support'] = 1
|
444
|
+
end
|
445
|
+
|
446
|
+
# The method to get the email_parser_supported
|
447
|
+
# @return A Boolean value
|
448
|
+
|
449
|
+
def email_parser_supported
|
450
|
+
@email_parser_supported
|
451
|
+
end
|
452
|
+
|
453
|
+
# The method to set the value to email_parser_supported
|
454
|
+
# @param email_parser_supported [Boolean] A Boolean
|
455
|
+
|
456
|
+
def email_parser_supported=(email_parser_supported)
|
457
|
+
if email_parser_supported!=nil and ! [true, false].include?email_parser_supported
|
458
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: email_parser_supported EXPECTED TYPE: Boolean', nil, nil)
|
459
|
+
end
|
460
|
+
@email_parser_supported = email_parser_supported
|
461
|
+
@key_modified['email_parser_supported'] = 1
|
462
|
+
end
|
463
|
+
|
464
|
+
# The method to get the filter_supported
|
465
|
+
# @return A Boolean value
|
466
|
+
|
467
|
+
def filter_supported
|
468
|
+
@filter_supported
|
469
|
+
end
|
470
|
+
|
471
|
+
# The method to set the value to filter_supported
|
472
|
+
# @param filter_supported [Boolean] A Boolean
|
473
|
+
|
474
|
+
def filter_supported=(filter_supported)
|
475
|
+
if filter_supported!=nil and ! [true, false].include?filter_supported
|
476
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filter_supported EXPECTED TYPE: Boolean', nil, nil)
|
477
|
+
end
|
478
|
+
@filter_supported = filter_supported
|
479
|
+
@key_modified['filter_supported'] = 1
|
480
|
+
end
|
481
|
+
|
482
|
+
# The method to get the show_as_tab
|
483
|
+
# @return A Boolean value
|
484
|
+
|
485
|
+
def show_as_tab
|
486
|
+
@show_as_tab
|
487
|
+
end
|
488
|
+
|
489
|
+
# The method to set the value to show_as_tab
|
490
|
+
# @param show_as_tab [Boolean] A Boolean
|
491
|
+
|
492
|
+
def show_as_tab=(show_as_tab)
|
493
|
+
if show_as_tab!=nil and ! [true, false].include?show_as_tab
|
494
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: show_as_tab EXPECTED TYPE: Boolean', nil, nil)
|
495
|
+
end
|
496
|
+
@show_as_tab = show_as_tab
|
497
|
+
@key_modified['show_as_tab'] = 1
|
498
|
+
end
|
499
|
+
|
500
|
+
# The method to get the web_link
|
501
|
+
# @return A String value
|
502
|
+
|
503
|
+
def web_link
|
504
|
+
@web_link
|
505
|
+
end
|
506
|
+
|
507
|
+
# The method to set the value to web_link
|
508
|
+
# @param web_link [String] A String
|
509
|
+
|
510
|
+
def web_link=(web_link)
|
511
|
+
if web_link!=nil and !web_link.is_a? String
|
512
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: web_link EXPECTED TYPE: String', nil, nil)
|
513
|
+
end
|
514
|
+
@web_link = web_link
|
515
|
+
@key_modified['web_link'] = 1
|
516
|
+
end
|
517
|
+
|
518
|
+
# The method to get the sequence_number
|
519
|
+
# @return A Integer value
|
520
|
+
|
521
|
+
def sequence_number
|
522
|
+
@sequence_number
|
523
|
+
end
|
524
|
+
|
525
|
+
# The method to set the value to sequence_number
|
526
|
+
# @param sequence_number [Integer] A Integer
|
527
|
+
|
528
|
+
def sequence_number=(sequence_number)
|
529
|
+
if sequence_number!=nil and !sequence_number.is_a? Integer
|
530
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sequence_number EXPECTED TYPE: Integer', nil, nil)
|
531
|
+
end
|
532
|
+
@sequence_number = sequence_number
|
533
|
+
@key_modified['sequence_number'] = 1
|
534
|
+
end
|
535
|
+
|
536
|
+
# The method to get the singular_label
|
537
|
+
# @return A String value
|
538
|
+
|
539
|
+
def singular_label
|
540
|
+
@singular_label
|
541
|
+
end
|
542
|
+
|
543
|
+
# The method to set the value to singular_label
|
544
|
+
# @param singular_label [String] A String
|
545
|
+
|
546
|
+
def singular_label=(singular_label)
|
547
|
+
if singular_label!=nil and !singular_label.is_a? String
|
548
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: singular_label EXPECTED TYPE: String', nil, nil)
|
549
|
+
end
|
550
|
+
@singular_label = singular_label
|
551
|
+
@key_modified['singular_label'] = 1
|
552
|
+
end
|
553
|
+
|
554
|
+
# The method to get the viewable
|
555
|
+
# @return A Boolean value
|
556
|
+
|
557
|
+
def viewable
|
558
|
+
@viewable
|
559
|
+
end
|
560
|
+
|
561
|
+
# The method to set the value to viewable
|
562
|
+
# @param viewable [Boolean] A Boolean
|
563
|
+
|
564
|
+
def viewable=(viewable)
|
565
|
+
if viewable!=nil and ! [true, false].include?viewable
|
566
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: viewable EXPECTED TYPE: Boolean', nil, nil)
|
567
|
+
end
|
568
|
+
@viewable = viewable
|
569
|
+
@key_modified['viewable'] = 1
|
570
|
+
end
|
571
|
+
|
572
|
+
# The method to get the api_supported
|
573
|
+
# @return A Boolean value
|
574
|
+
|
575
|
+
def api_supported
|
576
|
+
@api_supported
|
577
|
+
end
|
578
|
+
|
579
|
+
# The method to set the value to api_supported
|
580
|
+
# @param api_supported [Boolean] A Boolean
|
581
|
+
|
582
|
+
def api_supported=(api_supported)
|
583
|
+
if api_supported!=nil and ! [true, false].include?api_supported
|
584
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_supported EXPECTED TYPE: Boolean', nil, nil)
|
585
|
+
end
|
586
|
+
@api_supported = api_supported
|
587
|
+
@key_modified['api_supported'] = 1
|
588
|
+
end
|
589
|
+
|
590
|
+
# The method to get the api_name
|
591
|
+
# @return A String value
|
592
|
+
|
593
|
+
def api_name
|
594
|
+
@api_name
|
595
|
+
end
|
596
|
+
|
597
|
+
# The method to set the value to api_name
|
598
|
+
# @param api_name [String] A String
|
599
|
+
|
600
|
+
def api_name=(api_name)
|
601
|
+
if api_name!=nil and !api_name.is_a? String
|
602
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
|
603
|
+
end
|
604
|
+
@api_name = api_name
|
605
|
+
@key_modified['api_name'] = 1
|
606
|
+
end
|
607
|
+
|
608
|
+
# The method to get the quick_create
|
609
|
+
# @return A Boolean value
|
610
|
+
|
611
|
+
def quick_create
|
612
|
+
@quick_create
|
613
|
+
end
|
614
|
+
|
615
|
+
# The method to set the value to quick_create
|
616
|
+
# @param quick_create [Boolean] A Boolean
|
617
|
+
|
618
|
+
def quick_create=(quick_create)
|
619
|
+
if quick_create!=nil and ! [true, false].include?quick_create
|
620
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quick_create EXPECTED TYPE: Boolean', nil, nil)
|
621
|
+
end
|
622
|
+
@quick_create = quick_create
|
623
|
+
@key_modified['quick_create'] = 1
|
624
|
+
end
|
625
|
+
|
626
|
+
# The method to get the generated_type
|
627
|
+
# @return An instance of Util::Choice
|
628
|
+
|
629
|
+
def generated_type
|
630
|
+
@generated_type
|
631
|
+
end
|
632
|
+
|
633
|
+
# The method to set the value to generated_type
|
634
|
+
# @param generated_type [Util::Choice] An instance of Util::Choice
|
635
|
+
|
636
|
+
def generated_type=(generated_type)
|
637
|
+
if generated_type!=nil and !generated_type.is_a? Util::Choice
|
638
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: generated_type EXPECTED TYPE: Util::Choice', nil, nil)
|
639
|
+
end
|
640
|
+
@generated_type = generated_type
|
641
|
+
@key_modified['generated_type'] = 1
|
642
|
+
end
|
643
|
+
|
644
|
+
# The method to get the feeds_required
|
645
|
+
# @return A Boolean value
|
646
|
+
|
647
|
+
def feeds_required
|
648
|
+
@feeds_required
|
649
|
+
end
|
650
|
+
|
651
|
+
# The method to set the value to feeds_required
|
652
|
+
# @param feeds_required [Boolean] A Boolean
|
653
|
+
|
654
|
+
def feeds_required=(feeds_required)
|
655
|
+
if feeds_required!=nil and ! [true, false].include?feeds_required
|
656
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: feeds_required EXPECTED TYPE: Boolean', nil, nil)
|
657
|
+
end
|
658
|
+
@feeds_required = feeds_required
|
659
|
+
@key_modified['feeds_required'] = 1
|
660
|
+
end
|
661
|
+
|
662
|
+
# The method to get the scoring_supported
|
663
|
+
# @return A Boolean value
|
664
|
+
|
665
|
+
def scoring_supported
|
666
|
+
@scoring_supported
|
667
|
+
end
|
668
|
+
|
669
|
+
# The method to set the value to scoring_supported
|
670
|
+
# @param scoring_supported [Boolean] A Boolean
|
671
|
+
|
672
|
+
def scoring_supported=(scoring_supported)
|
673
|
+
if scoring_supported!=nil and ! [true, false].include?scoring_supported
|
674
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: scoring_supported EXPECTED TYPE: Boolean', nil, nil)
|
675
|
+
end
|
676
|
+
@scoring_supported = scoring_supported
|
677
|
+
@key_modified['scoring_supported'] = 1
|
678
|
+
end
|
679
|
+
|
680
|
+
# The method to get the webform_supported
|
681
|
+
# @return A Boolean value
|
682
|
+
|
683
|
+
def webform_supported
|
684
|
+
@webform_supported
|
685
|
+
end
|
686
|
+
|
687
|
+
# The method to set the value to webform_supported
|
688
|
+
# @param webform_supported [Boolean] A Boolean
|
689
|
+
|
690
|
+
def webform_supported=(webform_supported)
|
691
|
+
if webform_supported!=nil and ! [true, false].include?webform_supported
|
692
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: webform_supported EXPECTED TYPE: Boolean', nil, nil)
|
693
|
+
end
|
694
|
+
@webform_supported = webform_supported
|
695
|
+
@key_modified['webform_supported'] = 1
|
696
|
+
end
|
697
|
+
|
698
|
+
# The method to get the territory
|
699
|
+
# @return An instance of Territory
|
700
|
+
|
701
|
+
def territory
|
702
|
+
@territory
|
703
|
+
end
|
704
|
+
|
705
|
+
# The method to set the value to territory
|
706
|
+
# @param territory [Territory] An instance of Territory
|
707
|
+
|
708
|
+
def territory=(territory)
|
709
|
+
if territory!=nil and !territory.is_a? Territory
|
710
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: territory EXPECTED TYPE: Territory', nil, nil)
|
711
|
+
end
|
712
|
+
@territory = territory
|
713
|
+
@key_modified['territory'] = 1
|
714
|
+
end
|
715
|
+
|
716
|
+
# The method to get the arguments
|
717
|
+
# @return An instance of Array
|
718
|
+
|
719
|
+
def arguments
|
720
|
+
@arguments
|
721
|
+
end
|
722
|
+
|
723
|
+
# The method to set the value to arguments
|
724
|
+
# @param arguments [Array] An instance of Array
|
725
|
+
|
726
|
+
def arguments=(arguments)
|
727
|
+
if arguments!=nil and !arguments.is_a? Array
|
728
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: arguments EXPECTED TYPE: Array', nil, nil)
|
729
|
+
end
|
730
|
+
@arguments = arguments
|
731
|
+
@key_modified['arguments'] = 1
|
732
|
+
end
|
733
|
+
|
734
|
+
# The method to get the module_name
|
735
|
+
# @return A String value
|
736
|
+
|
737
|
+
def module_name
|
738
|
+
@module_name
|
739
|
+
end
|
740
|
+
|
741
|
+
# The method to set the value to module_name
|
742
|
+
# @param module_name [String] A String
|
743
|
+
|
744
|
+
def module_name=(module_name)
|
745
|
+
if module_name!=nil and !module_name.is_a? String
|
746
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: module_name EXPECTED TYPE: String', nil, nil)
|
747
|
+
end
|
748
|
+
@module_name = module_name
|
749
|
+
@key_modified['module_name'] = 1
|
750
|
+
end
|
751
|
+
|
752
|
+
# The method to get the chart_view_supported
|
753
|
+
# @return A Boolean value
|
754
|
+
|
755
|
+
def chart_view_supported
|
756
|
+
@chart_view_supported
|
757
|
+
end
|
758
|
+
|
759
|
+
# The method to set the value to chart_view_supported
|
760
|
+
# @param chart_view_supported [Boolean] A Boolean
|
761
|
+
|
762
|
+
def chart_view_supported=(chart_view_supported)
|
763
|
+
if chart_view_supported!=nil and ! [true, false].include?chart_view_supported
|
764
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: chart_view_supported EXPECTED TYPE: Boolean', nil, nil)
|
765
|
+
end
|
766
|
+
@chart_view_supported = chart_view_supported
|
767
|
+
@key_modified['chart_view_supported'] = 1
|
768
|
+
end
|
769
|
+
|
770
|
+
# The method to get the profile_count
|
771
|
+
# @return A Integer value
|
772
|
+
|
773
|
+
def profile_count
|
774
|
+
@profile_count
|
775
|
+
end
|
776
|
+
|
777
|
+
# The method to set the value to profile_count
|
778
|
+
# @param profile_count [Integer] A Integer
|
779
|
+
|
780
|
+
def profile_count=(profile_count)
|
781
|
+
if profile_count!=nil and !profile_count.is_a? Integer
|
782
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: profile_count EXPECTED TYPE: Integer', nil, nil)
|
783
|
+
end
|
784
|
+
@profile_count = profile_count
|
785
|
+
@key_modified['profile_count'] = 1
|
786
|
+
end
|
787
|
+
|
788
|
+
# The method to get the business_card_field_limit
|
789
|
+
# @return A Integer value
|
790
|
+
|
791
|
+
def business_card_field_limit
|
792
|
+
@business_card_field_limit
|
793
|
+
end
|
794
|
+
|
795
|
+
# The method to set the value to business_card_field_limit
|
796
|
+
# @param business_card_field_limit [Integer] A Integer
|
797
|
+
|
798
|
+
def business_card_field_limit=(business_card_field_limit)
|
799
|
+
if business_card_field_limit!=nil and !business_card_field_limit.is_a? Integer
|
800
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: business_card_field_limit EXPECTED TYPE: Integer', nil, nil)
|
801
|
+
end
|
802
|
+
@business_card_field_limit = business_card_field_limit
|
803
|
+
@key_modified['business_card_field_limit'] = 1
|
804
|
+
end
|
805
|
+
|
806
|
+
# The method to get the track_current_data
|
807
|
+
# @return A Boolean value
|
808
|
+
|
809
|
+
def track_current_data
|
810
|
+
@track_current_data
|
811
|
+
end
|
812
|
+
|
813
|
+
# The method to set the value to track_current_data
|
814
|
+
# @param track_current_data [Boolean] A Boolean
|
815
|
+
|
816
|
+
def track_current_data=(track_current_data)
|
817
|
+
if track_current_data!=nil and ! [true, false].include?track_current_data
|
818
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: track_current_data EXPECTED TYPE: Boolean', nil, nil)
|
819
|
+
end
|
820
|
+
@track_current_data = track_current_data
|
821
|
+
@key_modified['track_current_data'] = 1
|
822
|
+
end
|
823
|
+
|
824
|
+
# The method to get the modified_by
|
825
|
+
# @return An instance of Users::MinifiedUser
|
826
|
+
|
827
|
+
def modified_by
|
828
|
+
@modified_by
|
829
|
+
end
|
830
|
+
|
831
|
+
# The method to set the value to modified_by
|
832
|
+
# @param modified_by [Users::MinifiedUser] An instance of Users::MinifiedUser
|
833
|
+
|
834
|
+
def modified_by=(modified_by)
|
835
|
+
if modified_by!=nil and !modified_by.is_a? Users::MinifiedUser
|
836
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_by EXPECTED TYPE: MinifiedUser', nil, nil)
|
837
|
+
end
|
838
|
+
@modified_by = modified_by
|
839
|
+
@key_modified['modified_by'] = 1
|
840
|
+
end
|
841
|
+
|
842
|
+
# The method to get the profiles
|
843
|
+
# @return An instance of Array
|
844
|
+
|
845
|
+
def profiles
|
846
|
+
@profiles
|
847
|
+
end
|
848
|
+
|
849
|
+
# The method to set the value to profiles
|
850
|
+
# @param profiles [Array] An instance of Array
|
851
|
+
|
852
|
+
def profiles=(profiles)
|
853
|
+
if profiles!=nil and !profiles.is_a? Array
|
854
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: profiles EXPECTED TYPE: Array', nil, nil)
|
855
|
+
end
|
856
|
+
@profiles = profiles
|
857
|
+
@key_modified['profiles'] = 1
|
858
|
+
end
|
859
|
+
|
860
|
+
# The method to get the parent_module
|
861
|
+
# @return An instance of MinifiedModule
|
862
|
+
|
863
|
+
def parent_module
|
864
|
+
@parent_module
|
865
|
+
end
|
866
|
+
|
867
|
+
# The method to set the value to parent_module
|
868
|
+
# @param parent_module [MinifiedModule] An instance of MinifiedModule
|
869
|
+
|
870
|
+
def parent_module=(parent_module)
|
871
|
+
if parent_module!=nil and !parent_module.is_a? MinifiedModule
|
872
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: parent_module EXPECTED TYPE: MinifiedModule', nil, nil)
|
873
|
+
end
|
874
|
+
@parent_module = parent_module
|
875
|
+
@key_modified['parent_module'] = 1
|
876
|
+
end
|
877
|
+
|
878
|
+
# The method to get the activity_badge
|
879
|
+
# @return An instance of Util::Choice
|
880
|
+
|
881
|
+
def activity_badge
|
882
|
+
@activity_badge
|
883
|
+
end
|
884
|
+
|
885
|
+
# The method to set the value to activity_badge
|
886
|
+
# @param activity_badge [Util::Choice] An instance of Util::Choice
|
887
|
+
|
888
|
+
def activity_badge=(activity_badge)
|
889
|
+
if activity_badge!=nil and !activity_badge.is_a? Util::Choice
|
890
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: activity_badge EXPECTED TYPE: Util::Choice', nil, nil)
|
891
|
+
end
|
892
|
+
@activity_badge = activity_badge
|
893
|
+
@key_modified['activity_badge'] = 1
|
894
|
+
end
|
895
|
+
|
896
|
+
# The method to get the field_states
|
897
|
+
# @return An instance of Array
|
898
|
+
|
899
|
+
def field_states
|
900
|
+
@field_states
|
901
|
+
end
|
902
|
+
|
903
|
+
# The method to set the value to field_states
|
904
|
+
# @param field_states [Array] An instance of Array
|
905
|
+
|
906
|
+
def field_states=(field_states)
|
907
|
+
if field_states!=nil and !field_states.is_a? Array
|
908
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_states EXPECTED TYPE: Array', nil, nil)
|
909
|
+
end
|
910
|
+
@field_states = field_states
|
911
|
+
@key_modified['$field_states'] = 1
|
912
|
+
end
|
913
|
+
|
914
|
+
# The method to get the business_card_fields
|
915
|
+
# @return An instance of Array
|
916
|
+
|
917
|
+
def business_card_fields
|
918
|
+
@business_card_fields
|
919
|
+
end
|
920
|
+
|
921
|
+
# The method to set the value to business_card_fields
|
922
|
+
# @param business_card_fields [Array] An instance of Array
|
923
|
+
|
924
|
+
def business_card_fields=(business_card_fields)
|
925
|
+
if business_card_fields!=nil and !business_card_fields.is_a? Array
|
926
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: business_card_fields EXPECTED TYPE: Array', nil, nil)
|
927
|
+
end
|
928
|
+
@business_card_fields = business_card_fields
|
929
|
+
@key_modified['business_card_fields'] = 1
|
930
|
+
end
|
931
|
+
|
932
|
+
# The method to get the per_page
|
933
|
+
# @return A Integer value
|
934
|
+
|
935
|
+
def per_page
|
936
|
+
@per_page
|
937
|
+
end
|
938
|
+
|
939
|
+
# The method to set the value to per_page
|
940
|
+
# @param per_page [Integer] A Integer
|
941
|
+
|
942
|
+
def per_page=(per_page)
|
943
|
+
if per_page!=nil and !per_page.is_a? Integer
|
944
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: per_page EXPECTED TYPE: Integer', nil, nil)
|
945
|
+
end
|
946
|
+
@per_page = per_page
|
947
|
+
@key_modified['per_page'] = 1
|
948
|
+
end
|
949
|
+
|
950
|
+
# The method to get the properties
|
951
|
+
# @return An instance of Array
|
952
|
+
|
953
|
+
def properties
|
954
|
+
@properties
|
955
|
+
end
|
956
|
+
|
957
|
+
# The method to set the value to properties
|
958
|
+
# @param properties [Array] An instance of Array
|
959
|
+
|
960
|
+
def properties=(properties)
|
961
|
+
if properties!=nil and !properties.is_a? Array
|
962
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: properties EXPECTED TYPE: Array', nil, nil)
|
963
|
+
end
|
964
|
+
@properties = properties
|
965
|
+
@key_modified['$properties'] = 1
|
966
|
+
end
|
967
|
+
|
968
|
+
# The method to get the on_demand_properties
|
969
|
+
# @return An instance of Array
|
970
|
+
|
971
|
+
def on_demand_properties
|
972
|
+
@on_demand_properties
|
973
|
+
end
|
974
|
+
|
975
|
+
# The method to set the value to on_demand_properties
|
976
|
+
# @param on_demand_properties [Array] An instance of Array
|
977
|
+
|
978
|
+
def on_demand_properties=(on_demand_properties)
|
979
|
+
if on_demand_properties!=nil and !on_demand_properties.is_a? Array
|
980
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: on_demand_properties EXPECTED TYPE: Array', nil, nil)
|
981
|
+
end
|
982
|
+
@on_demand_properties = on_demand_properties
|
983
|
+
@key_modified['$on_demand_properties'] = 1
|
984
|
+
end
|
985
|
+
|
986
|
+
# The method to get the search_layout_fields
|
987
|
+
# @return An instance of Array
|
988
|
+
|
989
|
+
def search_layout_fields
|
990
|
+
@search_layout_fields
|
991
|
+
end
|
992
|
+
|
993
|
+
# The method to set the value to search_layout_fields
|
994
|
+
# @param search_layout_fields [Array] An instance of Array
|
995
|
+
|
996
|
+
def search_layout_fields=(search_layout_fields)
|
997
|
+
if search_layout_fields!=nil and !search_layout_fields.is_a? Array
|
998
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: search_layout_fields EXPECTED TYPE: Array', nil, nil)
|
999
|
+
end
|
1000
|
+
@search_layout_fields = search_layout_fields
|
1001
|
+
@key_modified['search_layout_fields'] = 1
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
# The method to get the kanban_view_supported
|
1005
|
+
# @return A Boolean value
|
1006
|
+
|
1007
|
+
def kanban_view_supported
|
1008
|
+
@kanban_view_supported
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
# The method to set the value to kanban_view_supported
|
1012
|
+
# @param kanban_view_supported [Boolean] A Boolean
|
1013
|
+
|
1014
|
+
def kanban_view_supported=(kanban_view_supported)
|
1015
|
+
if kanban_view_supported!=nil and ! [true, false].include?kanban_view_supported
|
1016
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: kanban_view_supported EXPECTED TYPE: Boolean', nil, nil)
|
1017
|
+
end
|
1018
|
+
@kanban_view_supported = kanban_view_supported
|
1019
|
+
@key_modified['kanban_view_supported'] = 1
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
# The method to get the lookup_field_properties
|
1023
|
+
# @return An instance of LookupFieldProperties
|
1024
|
+
|
1025
|
+
def lookup_field_properties
|
1026
|
+
@lookup_field_properties
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
# The method to set the value to lookup_field_properties
|
1030
|
+
# @param lookup_field_properties [LookupFieldProperties] An instance of LookupFieldProperties
|
1031
|
+
|
1032
|
+
def lookup_field_properties=(lookup_field_properties)
|
1033
|
+
if lookup_field_properties!=nil and !lookup_field_properties.is_a? LookupFieldProperties
|
1034
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: lookup_field_properties EXPECTED TYPE: LookupFieldProperties', nil, nil)
|
1035
|
+
end
|
1036
|
+
@lookup_field_properties = lookup_field_properties
|
1037
|
+
@key_modified['lookup_field_properties'] = 1
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
# The method to get the kanban_view
|
1041
|
+
# @return A Boolean value
|
1042
|
+
|
1043
|
+
def kanban_view
|
1044
|
+
@kanban_view
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
# The method to set the value to kanban_view
|
1048
|
+
# @param kanban_view [Boolean] A Boolean
|
1049
|
+
|
1050
|
+
def kanban_view=(kanban_view)
|
1051
|
+
if kanban_view!=nil and ! [true, false].include?kanban_view
|
1052
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: kanban_view EXPECTED TYPE: Boolean', nil, nil)
|
1053
|
+
end
|
1054
|
+
@kanban_view = kanban_view
|
1055
|
+
@key_modified['kanban_view'] = 1
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
# The method to get the related_lists
|
1059
|
+
# @return An instance of Array
|
1060
|
+
|
1061
|
+
def related_lists
|
1062
|
+
@related_lists
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
# The method to set the value to related_lists
|
1066
|
+
# @param related_lists [Array] An instance of Array
|
1067
|
+
|
1068
|
+
def related_lists=(related_lists)
|
1069
|
+
if related_lists!=nil and !related_lists.is_a? Array
|
1070
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: related_lists EXPECTED TYPE: Array', nil, nil)
|
1071
|
+
end
|
1072
|
+
@related_lists = related_lists
|
1073
|
+
@key_modified['related_lists'] = 1
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
# The method to get the filter_status
|
1077
|
+
# @return A Boolean value
|
1078
|
+
|
1079
|
+
def filter_status
|
1080
|
+
@filter_status
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
# The method to set the value to filter_status
|
1084
|
+
# @param filter_status [Boolean] A Boolean
|
1085
|
+
|
1086
|
+
def filter_status=(filter_status)
|
1087
|
+
if filter_status!=nil and ! [true, false].include?filter_status
|
1088
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filter_status EXPECTED TYPE: Boolean', nil, nil)
|
1089
|
+
end
|
1090
|
+
@filter_status = filter_status
|
1091
|
+
@key_modified['filter_status'] = 1
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
# The method to get the related_list_properties
|
1095
|
+
# @return An instance of RelatedListProperties
|
1096
|
+
|
1097
|
+
def related_list_properties
|
1098
|
+
@related_list_properties
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
# The method to set the value to related_list_properties
|
1102
|
+
# @param related_list_properties [RelatedListProperties] An instance of RelatedListProperties
|
1103
|
+
|
1104
|
+
def related_list_properties=(related_list_properties)
|
1105
|
+
if related_list_properties!=nil and !related_list_properties.is_a? RelatedListProperties
|
1106
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: related_list_properties EXPECTED TYPE: RelatedListProperties', nil, nil)
|
1107
|
+
end
|
1108
|
+
@related_list_properties = related_list_properties
|
1109
|
+
@key_modified['related_list_properties'] = 1
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
# The method to get the display_field
|
1113
|
+
# @return A String value
|
1114
|
+
|
1115
|
+
def display_field
|
1116
|
+
@display_field
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
# The method to set the value to display_field
|
1120
|
+
# @param display_field [String] A String
|
1121
|
+
|
1122
|
+
def display_field=(display_field)
|
1123
|
+
if display_field!=nil and !display_field.is_a? String
|
1124
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_field EXPECTED TYPE: String', nil, nil)
|
1125
|
+
end
|
1126
|
+
@display_field = display_field
|
1127
|
+
@key_modified['display_field'] = 1
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
# The method to get the layouts
|
1131
|
+
# @return An instance of Array
|
1132
|
+
|
1133
|
+
def layouts
|
1134
|
+
@layouts
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
# The method to set the value to layouts
|
1138
|
+
# @param layouts [Array] An instance of Array
|
1139
|
+
|
1140
|
+
def layouts=(layouts)
|
1141
|
+
if layouts!=nil and !layouts.is_a? Array
|
1142
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: layouts EXPECTED TYPE: Array', nil, nil)
|
1143
|
+
end
|
1144
|
+
@layouts = layouts
|
1145
|
+
@key_modified['layouts'] = 1
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
# The method to get the fields
|
1149
|
+
# @return An instance of Array
|
1150
|
+
|
1151
|
+
def fields
|
1152
|
+
@fields
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
# The method to set the value to fields
|
1156
|
+
# @param fields [Array] An instance of Array
|
1157
|
+
|
1158
|
+
def fields=(fields)
|
1159
|
+
if fields!=nil and !fields.is_a? Array
|
1160
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: fields EXPECTED TYPE: Array', nil, nil)
|
1161
|
+
end
|
1162
|
+
@fields = fields
|
1163
|
+
@key_modified['fields'] = 1
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
# The method to get the custom_view
|
1167
|
+
# @return An instance of CustomViews::CustomViews
|
1168
|
+
|
1169
|
+
def custom_view
|
1170
|
+
@custom_view
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
# The method to set the value to custom_view
|
1174
|
+
# @param custom_view [CustomViews::CustomViews] An instance of CustomViews::CustomViews
|
1175
|
+
|
1176
|
+
def custom_view=(custom_view)
|
1177
|
+
if custom_view!=nil and !custom_view.is_a? CustomViews::CustomViews
|
1178
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: custom_view EXPECTED TYPE: CustomViews', nil, nil)
|
1179
|
+
end
|
1180
|
+
@custom_view = custom_view
|
1181
|
+
@key_modified['custom_view'] = 1
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
# The method to get the zia_view
|
1185
|
+
# @return A Boolean value
|
1186
|
+
|
1187
|
+
def zia_view
|
1188
|
+
@zia_view
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
# The method to set the value to zia_view
|
1192
|
+
# @param zia_view [Boolean] A Boolean
|
1193
|
+
|
1194
|
+
def zia_view=(zia_view)
|
1195
|
+
if zia_view!=nil and ! [true, false].include?zia_view
|
1196
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: zia_view EXPECTED TYPE: Boolean', nil, nil)
|
1197
|
+
end
|
1198
|
+
@zia_view = zia_view
|
1199
|
+
@key_modified['zia_view'] = 1
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
# The method to get the default_mapping_fields
|
1203
|
+
# @return An instance of Array
|
1204
|
+
|
1205
|
+
def default_mapping_fields
|
1206
|
+
@default_mapping_fields
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
# The method to set the value to default_mapping_fields
|
1210
|
+
# @param default_mapping_fields [Array] An instance of Array
|
1211
|
+
|
1212
|
+
def default_mapping_fields=(default_mapping_fields)
|
1213
|
+
if default_mapping_fields!=nil and !default_mapping_fields.is_a? Array
|
1214
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: default_mapping_fields EXPECTED TYPE: Array', nil, nil)
|
1215
|
+
end
|
1216
|
+
@default_mapping_fields = default_mapping_fields
|
1217
|
+
@key_modified['default_mapping_fields'] = 1
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
# The method to get the status
|
1221
|
+
# @return A String value
|
1222
|
+
|
1223
|
+
def status
|
1224
|
+
@status
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
# The method to set the value to status
|
1228
|
+
# @param status [String] A String
|
1229
|
+
|
1230
|
+
def status=(status)
|
1231
|
+
if status!=nil and !status.is_a? String
|
1232
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: status EXPECTED TYPE: String', nil, nil)
|
1233
|
+
end
|
1234
|
+
@status = status
|
1235
|
+
@key_modified['status'] = 1
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
# The method to get the static_subform_properties
|
1239
|
+
# @return An instance of StaticSubformProperties
|
1240
|
+
|
1241
|
+
def static_subform_properties
|
1242
|
+
@static_subform_properties
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
# The method to set the value to static_subform_properties
|
1246
|
+
# @param static_subform_properties [StaticSubformProperties] An instance of StaticSubformProperties
|
1247
|
+
|
1248
|
+
def static_subform_properties=(static_subform_properties)
|
1249
|
+
if static_subform_properties!=nil and !static_subform_properties.is_a? StaticSubformProperties
|
1250
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: static_subform_properties EXPECTED TYPE: StaticSubformProperties', nil, nil)
|
1251
|
+
end
|
1252
|
+
@static_subform_properties = static_subform_properties
|
1253
|
+
@key_modified['static_subform_properties'] = 1
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
# The method to get the layout_associations
|
1257
|
+
# @return An instance of Array
|
1258
|
+
|
1259
|
+
def layout_associations
|
1260
|
+
@layout_associations
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
# The method to set the value to layout_associations
|
1264
|
+
# @param layout_associations [Array] An instance of Array
|
1265
|
+
|
1266
|
+
def layout_associations=(layout_associations)
|
1267
|
+
if layout_associations!=nil and !layout_associations.is_a? Array
|
1268
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: layout_associations EXPECTED TYPE: Array', nil, nil)
|
1269
|
+
end
|
1270
|
+
@layout_associations = layout_associations
|
1271
|
+
@key_modified['layout_associations'] = 1
|
1272
|
+
end
|
1273
|
+
|
1274
|
+
# The method to check if the user has modified the given key
|
1275
|
+
# @param key [String] A String
|
1276
|
+
# @return A Integer value
|
1277
|
+
|
1278
|
+
def is_key_modified(key)
|
1279
|
+
if key!=nil and !key.is_a? String
|
1280
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
1281
|
+
end
|
1282
|
+
if @key_modified.key?(key)
|
1283
|
+
return @key_modified[key]
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
nil
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
# The method to mark the given key as modified
|
1290
|
+
# @param key [String] A String
|
1291
|
+
# @param modification [Integer] A Integer
|
1292
|
+
|
1293
|
+
def set_key_modified(key, modification)
|
1294
|
+
if key!=nil and !key.is_a? String
|
1295
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
1296
|
+
end
|
1297
|
+
if modification!=nil and !modification.is_a? Integer
|
1298
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
1299
|
+
end
|
1300
|
+
@key_modified[key] = modification
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
end
|
1304
|
+
end
|
1305
|
+
end
|