ZOHOCRMSDK5_0 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/src/ZOHOCRMSDK5_0.rb +1082 -0
- data/src/com/zoho/api/authenticator/oauth_token.rb +425 -0
- data/src/com/zoho/api/authenticator/store/db_store.rb +279 -0
- data/src/com/zoho/api/authenticator/store/file_store.rb +280 -0
- data/src/com/zoho/api/authenticator/store/token_store.rb +31 -0
- data/src/com/zoho/api/authenticator/token.rb +14 -0
- data/src/com/zoho/api/logger/sdk_logger.rb +88 -0
- data/src/com/zoho/crm/api/appointment_preference/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/action_response.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/appointment_preference/appointment_preference.rb +159 -0
- data/src/com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/appointment_preference/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/created_by.rb +122 -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/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 +82 -0
- data/src/com/zoho/crm/api/attachments/parent_id.rb +82 -0
- data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/attachments/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
- data/src/com/zoho/crm/api/available_currencies/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/available_currencies/available_currencies_operations.rb +30 -0
- data/src/com/zoho/crm/api/available_currencies/currency.rb +177 -0
- data/src/com/zoho/crm/api/available_currencies/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/available_currencies/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/backup/action_response.rb +12 -0
- data/src/com/zoho/crm/api/backup/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/backup/backup.rb +158 -0
- data/src/com/zoho/crm/api/backup/backup_operations.rb +136 -0
- data/src/com/zoho/crm/api/backup/body_wrapper.rb +65 -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/success_response.rb +123 -0
- data/src/com/zoho/crm/api/backup/urls.rb +101 -0
- data/src/com/zoho/crm/api/backup/urls_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/blueprint/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/blueprint/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/blueprint/association_details.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/auto_number.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/blue_print.rb +121 -0
- data/src/com/zoho/crm/api/blueprint/blueprint_operations.rb +69 -0
- data/src/com/zoho/crm/api/blueprint/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/blueprint/convert_mapping.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/crypt.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/currency.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/escalation.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/field.rb +924 -0
- data/src/com/zoho/crm/api/blueprint/formula.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/layout.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/lookup_field.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/module.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/module_fields.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/module_mapping.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/multi_select_lookup.rb +158 -0
- data/src/com/zoho/crm/api/blueprint/next_transition.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/process_info.rb +253 -0
- data/src/com/zoho/crm/api/blueprint/profile.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/blueprint/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/blueprint/success_response.rb +123 -0
- data/src/com/zoho/crm/api/blueprint/tool_tip.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/transition.rb +273 -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/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 +157 -0
- data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
- data/src/com/zoho/crm/api/bulk_read/query.rb +160 -0
- data/src/com/zoho/crm/api/bulk_read/request_wrapper.rb +102 -0
- data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/bulk_read/result.rb +139 -0
- data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
- data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
- data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
- data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
- data/src/com/zoho/crm/api/bulk_write/default_value.rb +98 -0
- data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +158 -0
- data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
- data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +140 -0
- data/src/com/zoho/crm/api/bulk_write/resource.rb +217 -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_created.rb +123 -0
- data/src/com/zoho/crm/api/business_hours/business_hours_operations.rb +90 -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/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 +65 -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 +164 -0
- data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
- data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/currencies/base_currency.rb +196 -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 +65 -0
- data/src/com/zoho/crm/api/currencies/currencies_operations.rb +157 -0
- data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
- data/src/com/zoho/crm/api/currencies/currency_format.rb +102 -0
- data/src/com/zoho/crm/api/currencies/disable_success.rb +121 -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/success_response.rb +125 -0
- data/src/com/zoho/crm/api/custom_views/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/action_response.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/custom_views/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/custom_views/body_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
- data/src/com/zoho/crm/api/custom_views/custom_view.rb +463 -0
- data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
- data/src/com/zoho/crm/api/custom_views/field.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/fields.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
- data/src/com/zoho/crm/api/custom_views/owner.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/pin_fields.rb +83 -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/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/cn_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/datacenter.rb +70 -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 +84 -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/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/download_attachments/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/download_attachments/download_attachments_operations.rb +60 -0
- data/src/com/zoho/crm/api/download_attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/download_attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/download_inline_images/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb +64 -0
- data/src/com/zoho/crm/api/download_inline_images/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/download_inline_images/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_compose_meta/compose_settings.rb +120 -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 +158 -0
- data/src/com/zoho/crm/api/email_compose_meta/default_form.rb +120 -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/user.rb +139 -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/email.rb +483 -0
- data/src/com/zoho/crm/api/email_related_records/email_related_records_operations.rb +89 -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 +82 -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 +158 -0
- data/src/com/zoho/crm/api/email_related_records/user_details.rb +82 -0
- data/src/com/zoho/crm/api/email_sharing/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_sharing/email_sharing_operations.rb +44 -0
- data/src/com/zoho/crm/api/email_sharing/get_email_sharing.rb +82 -0
- data/src/com/zoho/crm/api/email_sharing/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_sharing/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/email_sharing/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 +433 -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_scores.rb +253 -0
- data/src/com/zoho/crm/api/entity_scores/entity_scores_operations.rb +70 -0
- data/src/com/zoho/crm/api/entity_scores/entity_structure.rb +84 -0
- data/src/com/zoho/crm/api/entity_scores/entity_structure_group.rb +12 -0
- data/src/com/zoho/crm/api/entity_scores/entity_structure_with_module.rb +103 -0
- data/src/com/zoho/crm/api/entity_scores/info.rb +215 -0
- data/src/com/zoho/crm/api/entity_scores/module_structure.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_structure.rb +82 -0
- data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -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 +84 -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 +178 -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/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_response.rb +12 -0
- data/src/com/zoho/crm/api/fields/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/fields/api_exception.rb +125 -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 +65 -0
- data/src/com/zoho/crm/api/fields/convert_mapping.rb +101 -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 +102 -0
- data/src/com/zoho/crm/api/fields/fields.rb +1355 -0
- data/src/com/zoho/crm/api/fields/fields_operations.rb +103 -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 +83 -0
- data/src/com/zoho/crm/api/fields/function_parameter.rb +63 -0
- data/src/com/zoho/crm/api/fields/hipaa_compliance.rb +82 -0
- data/src/com/zoho/crm/api/fields/history_tracking.rb +83 -0
- data/src/com/zoho/crm/api/fields/history_tracking_module.rb +159 -0
- data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
- data/src/com/zoho/crm/api/fields/maps.rb +82 -0
- data/src/com/zoho/crm/api/fields/minified_field.rb +82 -0
- data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +102 -0
- data/src/com/zoho/crm/api/fields/multiselectlookup.rb +216 -0
- data/src/com/zoho/crm/api/fields/operation_type.rb +120 -0
- data/src/com/zoho/crm/api/fields/pick_list_value.rb +273 -0
- data/src/com/zoho/crm/api/fields/private.rb +101 -0
- data/src/com/zoho/crm/api/fields/profile.rb +101 -0
- data/src/com/zoho/crm/api/fields/query_details.rb +82 -0
- data/src/com/zoho/crm/api/fields/refer_from_field.rb +82 -0
- data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/fields/rollup_criteria.rb +98 -0
- data/src/com/zoho/crm/api/fields/rollup_summary.rb +139 -0
- data/src/com/zoho/crm/api/fields/show_fields.rb +82 -0
- data/src/com/zoho/crm/api/fields/success.rb +123 -0
- data/src/com/zoho/crm/api/fields/tooltip.rb +83 -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 +77 -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/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/header.rb +12 -0
- data/src/com/zoho/crm/api/header_map.rb +57 -0
- data/src/com/zoho/crm/api/hipaa_compliance/action_handler.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 +102 -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 +188 -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_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_template.rb +316 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +75 -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/isc_signature/signature.rb +60 -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/convert_mapping.rb +139 -0
- data/src/com/zoho/crm/api/layouts/deal_field.rb +120 -0
- data/src/com/zoho/crm/api/layouts/deal_layout_mapping.rb +103 -0
- data/src/com/zoho/crm/api/layouts/default_assignment_view.rb +101 -0
- data/src/com/zoho/crm/api/layouts/default_view.rb +101 -0
- data/src/com/zoho/crm/api/layouts/layouts.rb +425 -0
- data/src/com/zoho/crm/api/layouts/layouts_operations.rb +75 -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 +1456 -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/tooltip.rb +83 -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 +63 -0
- data/src/com/zoho/crm/api/mail_merge/address.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/address_value_map.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/api_exception.rb +121 -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/mail_merge.rb +216 -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_response.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/sign_action_wrapper.rb +63 -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 +101 -0
- data/src/com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb +76 -0
- data/src/com/zoho/crm/api/mass_change_owner/owner.rb +63 -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/convert.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/mass_delete_scheduled.rb +123 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/status.rb +121 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/territory.rb +82 -0
- data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
- data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/modules/argument.rb +82 -0
- data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/modules/lookup_field.rb +103 -0
- data/src/com/zoho/crm/api/modules/lookup_field_properties.rb +63 -0
- data/src/com/zoho/crm/api/modules/minified_module.rb +101 -0
- data/src/com/zoho/crm/api/modules/module_field_lookup.rb +181 -0
- data/src/com/zoho/crm/api/modules/module_fields.rb +1377 -0
- data/src/com/zoho/crm/api/modules/modules.rb +1191 -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/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 +370 -0
- data/src/com/zoho/crm/api/notes/notes_operations.rb +229 -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/delete_details.rb +101 -0
- data/src/com/zoho/crm/api/notifications/event.rb +141 -0
- data/src/com/zoho/crm/api/notifications/info.rb +120 -0
- data/src/com/zoho/crm/api/notifications/notification.rb +275 -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/api_exception.rb +125 -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 +823 -0
- data/src/com/zoho/crm/api/org/org_operations.rb +79 -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 +56 -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 +65 -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/mandatory_details.rb +82 -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 +166 -0
- data/src/com/zoho/crm/api/pipeline/regex_details.rb +101 -0
- data/src/com/zoho/crm/api/pipeline/response_handler.rb +12 -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 +67 -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 +65 -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/api_exception.rb +123 -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 +216 -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 +178 -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 +72 -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/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/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 +178 -0
- data/src/com/zoho/crm/api/profiles/profile.rb +350 -0
- data/src/com/zoho/crm/api/profiles/profile_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/profiles/profiles_operations.rb +146 -0
- data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -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/query/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/query/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/query/query_operations.rb +37 -0
- data/src/com/zoho/crm/api/query/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/query/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/action_response.rb +12 -0
- data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/api_exception.rb +143 -0
- data/src/com/zoho/crm/api/record/body_wrapper.rb +158 -0
- data/src/com/zoho/crm/api/record/carry_over_tags.rb +101 -0
- data/src/com/zoho/crm/api/record/comment.rb +120 -0
- data/src/com/zoho/crm/api/record/consent.rb +307 -0
- data/src/com/zoho/crm/api/record/conversion_option.rb +159 -0
- data/src/com/zoho/crm/api/record/conversion_options_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/convert_body_wrapper.rb +63 -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 +2479 -0
- data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
- data/src/com/zoho/crm/api/record/file_details.rb +139 -0
- data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/image_upload.rb +215 -0
- data/src/com/zoho/crm/api/record/info.rb +253 -0
- data/src/com/zoho/crm/api/record/lead_converter.rb +197 -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/preference_field_matched_value.rb +101 -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 +1182 -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/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_responses.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 +129 -0
- data/src/com/zoho/crm/api/record_locking/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking/error_handler.rb +12 -0
- data/src/com/zoho/crm/api/record_locking/error_wrapper.rb +65 -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_action_locked.rb +63 -0
- data/src/com/zoho/crm/api/record_locking/record_action_locked_detail1.rb +101 -0
- data/src/com/zoho/crm/api/record_locking/record_action_locked_detail2.rb +82 -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 +201 -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/related_lists/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/related_lists/field.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/module_map.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/related_list.rb +386 -0
- data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
- data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/related_records/related_records_operations.rb +556 -0
- data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
- data/src/com/zoho/crm/api/request_proxy.rb +17 -0
- data/src/com/zoho/crm/api/reschedule_history/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/action_response.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/reschedule_history/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/reschedule_history/appointment_name.rb +82 -0
- data/src/com/zoho/crm/api/reschedule_history/approval.rb +120 -0
- data/src/com/zoho/crm/api/reschedule_history/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/reschedule_history/info.rb +177 -0
- data/src/com/zoho/crm/api/reschedule_history/reschedule_history.rb +557 -0
- data/src/com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb +177 -0
- data/src/com/zoho/crm/api/reschedule_history/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/reschedule_history/success_response.rb +123 -0
- data/src/com/zoho/crm/api/reschedule_history/user.rb +101 -0
- data/src/com/zoho/crm/api/roles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/roles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/roles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/roles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/roles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/roles/reporting_to.rb +82 -0
- data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/roles/role.rb +273 -0
- data/src/com/zoho/crm/api/roles/roles_operations.rb +150 -0
- data/src/com/zoho/crm/api/roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/scoring_rules/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/action_response.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/scoring_rules/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/scoring_rules/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/scoring_rules/criteria.rb +136 -0
- data/src/com/zoho/crm/api/scoring_rules/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 +331 -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/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/data.rb +349 -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/invalid_details.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/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 +127 -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 +65 -0
- data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/share_records/body_wrapper.rb +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/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/tag.rb +179 -0
- data/src/com/zoho/crm/api/tags/tags_operations.rb +385 -0
- data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
- data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/taxes/expected_field.rb +82 -0
- data/src/com/zoho/crm/api/taxes/org_tax.rb +82 -0
- data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
- data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/taxes/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
- data/src/com/zoho/crm/api/taxes/tax.rb +158 -0
- data/src/com/zoho/crm/api/taxes/taxes_operations.rb +70 -0
- data/src/com/zoho/crm/api/templates/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/templates/folder.rb +82 -0
- data/src/com/zoho/crm/api/templates/templates.rb +234 -0
- data/src/com/zoho/crm/api/templates/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/territories/action_response.rb +12 -0
- data/src/com/zoho/crm/api/territories/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/territories/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/territories/associated_users_count.rb +82 -0
- data/src/com/zoho/crm/api/territories/associated_users_count_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/territories/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/criteria.rb +136 -0
- data/src/com/zoho/crm/api/territories/deleted_associated_territories.rb +121 -0
- data/src/com/zoho/crm/api/territories/deleted_associated_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/territories/field.rb +82 -0
- data/src/com/zoho/crm/api/territories/info.rb +120 -0
- data/src/com/zoho/crm/api/territories/manager.rb +82 -0
- data/src/com/zoho/crm/api/territories/minified_territory.rb +101 -0
- data/src/com/zoho/crm/api/territories/reporting_to.rb +82 -0
- data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/territories/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/territories/success_response.rb +123 -0
- data/src/com/zoho/crm/api/territories/territories.rb +293 -0
- data/src/com/zoho/crm/api/territories/territories_operations.rb +283 -0
- data/src/com/zoho/crm/api/territories/transfer_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/transfer_territory.rb +101 -0
- data/src/com/zoho/crm/api/territory_users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/territory_users/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/territory_users/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/territory_users/info.rb +120 -0
- data/src/com/zoho/crm/api/territory_users/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/response_wrapper.rb +85 -0
- data/src/com/zoho/crm/api/territory_users/success_response.rb +123 -0
- data/src/com/zoho/crm/api/territory_users/territory_users_operations.rb +172 -0
- data/src/com/zoho/crm/api/timelines/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/timelines/automation_detail.rb +101 -0
- data/src/com/zoho/crm/api/timelines/field_history.rb +177 -0
- data/src/com/zoho/crm/api/timelines/field_history_value.rb +82 -0
- data/src/com/zoho/crm/api/timelines/info.rb +158 -0
- data/src/com/zoho/crm/api/timelines/module.rb +82 -0
- data/src/com/zoho/crm/api/timelines/name_id_structure.rb +82 -0
- data/src/com/zoho/crm/api/timelines/path_finder.rb +101 -0
- data/src/com/zoho/crm/api/timelines/picklist_detail.rb +158 -0
- data/src/com/zoho/crm/api/timelines/record.rb +101 -0
- data/src/com/zoho/crm/api/timelines/related_record.rb +101 -0
- data/src/com/zoho/crm/api/timelines/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/timelines/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/timelines/state.rb +120 -0
- data/src/com/zoho/crm/api/timelines/timeline.rb +253 -0
- data/src/com/zoho/crm/api/timelines/timelines_operations.rb +88 -0
- data/src/com/zoho/crm/api/user_groups/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/user_groups/associated_user.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/associated_user_count.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/association_module.rb +64 -0
- data/src/com/zoho/crm/api/user_groups/association_response.rb +101 -0
- data/src/com/zoho/crm/api/user_groups/association_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/groups.rb +196 -0
- data/src/com/zoho/crm/api/user_groups/info.rb +120 -0
- data/src/com/zoho/crm/api/user_groups/jobs.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/jobs_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/owner.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/resource.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/source.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/sources.rb +121 -0
- data/src/com/zoho/crm/api/user_groups/sources_count.rb +120 -0
- data/src/com/zoho/crm/api/user_groups/sources_count_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/sources_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/success_response.rb +123 -0
- data/src/com/zoho/crm/api/user_groups/user_group.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/user_groups_operations.rb +260 -0
- data/src/com/zoho/crm/api/user_groups/users.rb +101 -0
- data/src/com/zoho/crm/api/user_signature.rb +15 -0
- data/src/com/zoho/crm/api/user_type_users/api_exception.rb +123 -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/user_type_users_operations.rb +60 -0
- data/src/com/zoho/crm/api/user_type_users/users.rb +196 -0
- data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/users/associated_group.rb +177 -0
- data/src/com/zoho/crm/api/users/associated_groups_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users/customize_info.rb +146 -0
- data/src/com/zoho/crm/api/users/error_details.rb +82 -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 +208 -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_wrapper.rb +67 -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 +192 -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_i_d.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 +754 -0
- data/src/com/zoho/crm/api/util/converter.rb +280 -0
- data/src/com/zoho/crm/api/util/data_type_converter.rb +179 -0
- data/src/com/zoho/crm/api/util/downloader.rb +86 -0
- data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
- data/src/com/zoho/crm/api/util/header_param_validator.rb +57 -0
- data/src/com/zoho/crm/api/util/json_converter.rb +774 -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 +1007 -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/error_details.rb +82 -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 +255 -0
- data/src/com/zoho/crm/api/wizards/actions.rb +157 -0
- data/src/com/zoho/crm/api/wizards/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/wizards/button.rb +288 -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 +82 -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/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/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 +120 -0
- data/src/com/zoho/crm/api/wizards/segment.rb +197 -0
- data/src/com/zoho/crm/api/wizards/transition.rb +82 -0
- data/src/com/zoho/crm/api/wizards/wizard.rb +313 -0
- data/src/com/zoho/crm/api/wizards/wizards_operations.rb +63 -0
- data/src/resources/json_details.json +1 -0
- data/src/version.rb +3 -0
- metadata +1241 -0
@@ -0,0 +1,1191 @@
|
|
1
|
+
require_relative '../custom_views/custom_view'
|
2
|
+
require_relative '../fields/minified_field'
|
3
|
+
require_relative '../layouts/layouts'
|
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
|
+
@sub_menu_available = nil
|
18
|
+
@global_search_supported = nil
|
19
|
+
@deletable = nil
|
20
|
+
@description = nil
|
21
|
+
@creatable = nil
|
22
|
+
@inventory_template_supported = nil
|
23
|
+
@modified_time = nil
|
24
|
+
@plural_label = nil
|
25
|
+
@presence_sub_menu = nil
|
26
|
+
@triggers_supported = nil
|
27
|
+
@id = nil
|
28
|
+
@isblueprintsupported = nil
|
29
|
+
@visibility = nil
|
30
|
+
@visible = nil
|
31
|
+
@convertable = nil
|
32
|
+
@editable = nil
|
33
|
+
@emailtemplate_support = nil
|
34
|
+
@email_parser_supported = nil
|
35
|
+
@filter_supported = nil
|
36
|
+
@show_as_tab = nil
|
37
|
+
@web_link = nil
|
38
|
+
@sequence_number = nil
|
39
|
+
@singular_label = nil
|
40
|
+
@viewable = nil
|
41
|
+
@api_supported = nil
|
42
|
+
@api_name = nil
|
43
|
+
@quick_create = nil
|
44
|
+
@generated_type = nil
|
45
|
+
@feeds_required = nil
|
46
|
+
@scoring_supported = nil
|
47
|
+
@webform_supported = nil
|
48
|
+
@territory = nil
|
49
|
+
@arguments = nil
|
50
|
+
@module_name = nil
|
51
|
+
@business_card_field_limit = nil
|
52
|
+
@track_current_data = nil
|
53
|
+
@modified_by = nil
|
54
|
+
@profiles = nil
|
55
|
+
@parent_module = nil
|
56
|
+
@activity_badge = nil
|
57
|
+
@field_states = nil
|
58
|
+
@business_card_fields = nil
|
59
|
+
@per_page = nil
|
60
|
+
@properties = nil
|
61
|
+
@on_demand_properties = nil
|
62
|
+
@search_layout_fields = nil
|
63
|
+
@kanban_view_supported = nil
|
64
|
+
@lookup_field_properties = nil
|
65
|
+
@kanban_view = nil
|
66
|
+
@related_lists = nil
|
67
|
+
@filter_status = nil
|
68
|
+
@related_list_properties = nil
|
69
|
+
@display_field = nil
|
70
|
+
@layouts = nil
|
71
|
+
@fields = nil
|
72
|
+
@custom_view = nil
|
73
|
+
@zia_view = nil
|
74
|
+
@default_mapping_fields = nil
|
75
|
+
@status = nil
|
76
|
+
@arguments_32 = nil
|
77
|
+
@key_modified = Hash.new
|
78
|
+
end
|
79
|
+
|
80
|
+
# The method to get the sub_menu_available
|
81
|
+
# @return A Boolean value
|
82
|
+
|
83
|
+
def sub_menu_available
|
84
|
+
@sub_menu_available
|
85
|
+
end
|
86
|
+
|
87
|
+
# The method to set the value to sub_menu_available
|
88
|
+
# @param sub_menu_available [Boolean] A Boolean
|
89
|
+
|
90
|
+
def sub_menu_available=(sub_menu_available)
|
91
|
+
if sub_menu_available!=nil and ! [true, false].include?sub_menu_available
|
92
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sub_menu_available EXPECTED TYPE: Boolean', nil, nil)
|
93
|
+
end
|
94
|
+
@sub_menu_available = sub_menu_available
|
95
|
+
@key_modified['sub_menu_available'] = 1
|
96
|
+
end
|
97
|
+
|
98
|
+
# The method to get the global_search_supported
|
99
|
+
# @return A Boolean value
|
100
|
+
|
101
|
+
def global_search_supported
|
102
|
+
@global_search_supported
|
103
|
+
end
|
104
|
+
|
105
|
+
# The method to set the value to global_search_supported
|
106
|
+
# @param global_search_supported [Boolean] A Boolean
|
107
|
+
|
108
|
+
def global_search_supported=(global_search_supported)
|
109
|
+
if global_search_supported!=nil and ! [true, false].include?global_search_supported
|
110
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: global_search_supported EXPECTED TYPE: Boolean', nil, nil)
|
111
|
+
end
|
112
|
+
@global_search_supported = global_search_supported
|
113
|
+
@key_modified['global_search_supported'] = 1
|
114
|
+
end
|
115
|
+
|
116
|
+
# The method to get the deletable
|
117
|
+
# @return A Boolean value
|
118
|
+
|
119
|
+
def deletable
|
120
|
+
@deletable
|
121
|
+
end
|
122
|
+
|
123
|
+
# The method to set the value to deletable
|
124
|
+
# @param deletable [Boolean] A Boolean
|
125
|
+
|
126
|
+
def deletable=(deletable)
|
127
|
+
if deletable!=nil and ! [true, false].include?deletable
|
128
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: deletable EXPECTED TYPE: Boolean', nil, nil)
|
129
|
+
end
|
130
|
+
@deletable = deletable
|
131
|
+
@key_modified['deletable'] = 1
|
132
|
+
end
|
133
|
+
|
134
|
+
# The method to get the description
|
135
|
+
# @return A String value
|
136
|
+
|
137
|
+
def description
|
138
|
+
@description
|
139
|
+
end
|
140
|
+
|
141
|
+
# The method to set the value to description
|
142
|
+
# @param description [String] A String
|
143
|
+
|
144
|
+
def description=(description)
|
145
|
+
if description!=nil and !description.is_a? String
|
146
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: description EXPECTED TYPE: String', nil, nil)
|
147
|
+
end
|
148
|
+
@description = description
|
149
|
+
@key_modified['description'] = 1
|
150
|
+
end
|
151
|
+
|
152
|
+
# The method to get the creatable
|
153
|
+
# @return A Boolean value
|
154
|
+
|
155
|
+
def creatable
|
156
|
+
@creatable
|
157
|
+
end
|
158
|
+
|
159
|
+
# The method to set the value to creatable
|
160
|
+
# @param creatable [Boolean] A Boolean
|
161
|
+
|
162
|
+
def creatable=(creatable)
|
163
|
+
if creatable!=nil and ! [true, false].include?creatable
|
164
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: creatable EXPECTED TYPE: Boolean', nil, nil)
|
165
|
+
end
|
166
|
+
@creatable = creatable
|
167
|
+
@key_modified['creatable'] = 1
|
168
|
+
end
|
169
|
+
|
170
|
+
# The method to get the inventory_template_supported
|
171
|
+
# @return A Boolean value
|
172
|
+
|
173
|
+
def inventory_template_supported
|
174
|
+
@inventory_template_supported
|
175
|
+
end
|
176
|
+
|
177
|
+
# The method to set the value to inventory_template_supported
|
178
|
+
# @param inventory_template_supported [Boolean] A Boolean
|
179
|
+
|
180
|
+
def inventory_template_supported=(inventory_template_supported)
|
181
|
+
if inventory_template_supported!=nil and ! [true, false].include?inventory_template_supported
|
182
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: inventory_template_supported EXPECTED TYPE: Boolean', nil, nil)
|
183
|
+
end
|
184
|
+
@inventory_template_supported = inventory_template_supported
|
185
|
+
@key_modified['inventory_template_supported'] = 1
|
186
|
+
end
|
187
|
+
|
188
|
+
# The method to get the modified_time
|
189
|
+
# @return An instance of DateTime
|
190
|
+
|
191
|
+
def modified_time
|
192
|
+
@modified_time
|
193
|
+
end
|
194
|
+
|
195
|
+
# The method to set the value to modified_time
|
196
|
+
# @param modified_time [DateTime] An instance of DateTime
|
197
|
+
|
198
|
+
def modified_time=(modified_time)
|
199
|
+
if modified_time!=nil and !modified_time.is_a? DateTime
|
200
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_time EXPECTED TYPE: DateTime', nil, nil)
|
201
|
+
end
|
202
|
+
@modified_time = modified_time
|
203
|
+
@key_modified['modified_time'] = 1
|
204
|
+
end
|
205
|
+
|
206
|
+
# The method to get the plural_label
|
207
|
+
# @return A String value
|
208
|
+
|
209
|
+
def plural_label
|
210
|
+
@plural_label
|
211
|
+
end
|
212
|
+
|
213
|
+
# The method to set the value to plural_label
|
214
|
+
# @param plural_label [String] A String
|
215
|
+
|
216
|
+
def plural_label=(plural_label)
|
217
|
+
if plural_label!=nil and !plural_label.is_a? String
|
218
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: plural_label EXPECTED TYPE: String', nil, nil)
|
219
|
+
end
|
220
|
+
@plural_label = plural_label
|
221
|
+
@key_modified['plural_label'] = 1
|
222
|
+
end
|
223
|
+
|
224
|
+
# The method to get the presence_sub_menu
|
225
|
+
# @return A Boolean value
|
226
|
+
|
227
|
+
def presence_sub_menu
|
228
|
+
@presence_sub_menu
|
229
|
+
end
|
230
|
+
|
231
|
+
# The method to set the value to presence_sub_menu
|
232
|
+
# @param presence_sub_menu [Boolean] A Boolean
|
233
|
+
|
234
|
+
def presence_sub_menu=(presence_sub_menu)
|
235
|
+
if presence_sub_menu!=nil and ! [true, false].include?presence_sub_menu
|
236
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: presence_sub_menu EXPECTED TYPE: Boolean', nil, nil)
|
237
|
+
end
|
238
|
+
@presence_sub_menu = presence_sub_menu
|
239
|
+
@key_modified['presence_sub_menu'] = 1
|
240
|
+
end
|
241
|
+
|
242
|
+
# The method to get the triggers_supported
|
243
|
+
# @return A Boolean value
|
244
|
+
|
245
|
+
def triggers_supported
|
246
|
+
@triggers_supported
|
247
|
+
end
|
248
|
+
|
249
|
+
# The method to set the value to triggers_supported
|
250
|
+
# @param triggers_supported [Boolean] A Boolean
|
251
|
+
|
252
|
+
def triggers_supported=(triggers_supported)
|
253
|
+
if triggers_supported!=nil and ! [true, false].include?triggers_supported
|
254
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: triggers_supported EXPECTED TYPE: Boolean', nil, nil)
|
255
|
+
end
|
256
|
+
@triggers_supported = triggers_supported
|
257
|
+
@key_modified['triggers_supported'] = 1
|
258
|
+
end
|
259
|
+
|
260
|
+
# The method to get the id
|
261
|
+
# @return A Integer value
|
262
|
+
|
263
|
+
def id
|
264
|
+
@id
|
265
|
+
end
|
266
|
+
|
267
|
+
# The method to set the value to id
|
268
|
+
# @param id [Integer] A Integer
|
269
|
+
|
270
|
+
def id=(id)
|
271
|
+
if id!=nil and !id.is_a? Integer
|
272
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
|
273
|
+
end
|
274
|
+
@id = id
|
275
|
+
@key_modified['id'] = 1
|
276
|
+
end
|
277
|
+
|
278
|
+
# The method to get the isblueprintsupported
|
279
|
+
# @return A Boolean value
|
280
|
+
|
281
|
+
def isblueprintsupported
|
282
|
+
@isblueprintsupported
|
283
|
+
end
|
284
|
+
|
285
|
+
# The method to set the value to isblueprintsupported
|
286
|
+
# @param isblueprintsupported [Boolean] A Boolean
|
287
|
+
|
288
|
+
def isblueprintsupported=(isblueprintsupported)
|
289
|
+
if isblueprintsupported!=nil and ! [true, false].include?isblueprintsupported
|
290
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: isblueprintsupported EXPECTED TYPE: Boolean', nil, nil)
|
291
|
+
end
|
292
|
+
@isblueprintsupported = isblueprintsupported
|
293
|
+
@key_modified['isBlueprintSupported'] = 1
|
294
|
+
end
|
295
|
+
|
296
|
+
# The method to get the visibility
|
297
|
+
# @return A Integer value
|
298
|
+
|
299
|
+
def visibility
|
300
|
+
@visibility
|
301
|
+
end
|
302
|
+
|
303
|
+
# The method to set the value to visibility
|
304
|
+
# @param visibility [Integer] A Integer
|
305
|
+
|
306
|
+
def visibility=(visibility)
|
307
|
+
if visibility!=nil and !visibility.is_a? Integer
|
308
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visibility EXPECTED TYPE: Integer', nil, nil)
|
309
|
+
end
|
310
|
+
@visibility = visibility
|
311
|
+
@key_modified['visibility'] = 1
|
312
|
+
end
|
313
|
+
|
314
|
+
# The method to get the visible
|
315
|
+
# @return A Boolean value
|
316
|
+
|
317
|
+
def visible
|
318
|
+
@visible
|
319
|
+
end
|
320
|
+
|
321
|
+
# The method to set the value to visible
|
322
|
+
# @param visible [Boolean] A Boolean
|
323
|
+
|
324
|
+
def visible=(visible)
|
325
|
+
if visible!=nil and ! [true, false].include?visible
|
326
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visible EXPECTED TYPE: Boolean', nil, nil)
|
327
|
+
end
|
328
|
+
@visible = visible
|
329
|
+
@key_modified['visible'] = 1
|
330
|
+
end
|
331
|
+
|
332
|
+
# The method to get the convertable
|
333
|
+
# @return A Boolean value
|
334
|
+
|
335
|
+
def convertable
|
336
|
+
@convertable
|
337
|
+
end
|
338
|
+
|
339
|
+
# The method to set the value to convertable
|
340
|
+
# @param convertable [Boolean] A Boolean
|
341
|
+
|
342
|
+
def convertable=(convertable)
|
343
|
+
if convertable!=nil and ! [true, false].include?convertable
|
344
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: convertable EXPECTED TYPE: Boolean', nil, nil)
|
345
|
+
end
|
346
|
+
@convertable = convertable
|
347
|
+
@key_modified['convertable'] = 1
|
348
|
+
end
|
349
|
+
|
350
|
+
# The method to get the editable
|
351
|
+
# @return A Boolean value
|
352
|
+
|
353
|
+
def editable
|
354
|
+
@editable
|
355
|
+
end
|
356
|
+
|
357
|
+
# The method to set the value to editable
|
358
|
+
# @param editable [Boolean] A Boolean
|
359
|
+
|
360
|
+
def editable=(editable)
|
361
|
+
if editable!=nil and ! [true, false].include?editable
|
362
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: editable EXPECTED TYPE: Boolean', nil, nil)
|
363
|
+
end
|
364
|
+
@editable = editable
|
365
|
+
@key_modified['editable'] = 1
|
366
|
+
end
|
367
|
+
|
368
|
+
# The method to get the emailtemplate_support
|
369
|
+
# @return A Boolean value
|
370
|
+
|
371
|
+
def emailtemplate_support
|
372
|
+
@emailtemplate_support
|
373
|
+
end
|
374
|
+
|
375
|
+
# The method to set the value to emailtemplate_support
|
376
|
+
# @param emailtemplate_support [Boolean] A Boolean
|
377
|
+
|
378
|
+
def emailtemplate_support=(emailtemplate_support)
|
379
|
+
if emailtemplate_support!=nil and ! [true, false].include?emailtemplate_support
|
380
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: emailtemplate_support EXPECTED TYPE: Boolean', nil, nil)
|
381
|
+
end
|
382
|
+
@emailtemplate_support = emailtemplate_support
|
383
|
+
@key_modified['emailTemplate_support'] = 1
|
384
|
+
end
|
385
|
+
|
386
|
+
# The method to get the email_parser_supported
|
387
|
+
# @return A Boolean value
|
388
|
+
|
389
|
+
def email_parser_supported
|
390
|
+
@email_parser_supported
|
391
|
+
end
|
392
|
+
|
393
|
+
# The method to set the value to email_parser_supported
|
394
|
+
# @param email_parser_supported [Boolean] A Boolean
|
395
|
+
|
396
|
+
def email_parser_supported=(email_parser_supported)
|
397
|
+
if email_parser_supported!=nil and ! [true, false].include?email_parser_supported
|
398
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: email_parser_supported EXPECTED TYPE: Boolean', nil, nil)
|
399
|
+
end
|
400
|
+
@email_parser_supported = email_parser_supported
|
401
|
+
@key_modified['email_parser_supported'] = 1
|
402
|
+
end
|
403
|
+
|
404
|
+
# The method to get the filter_supported
|
405
|
+
# @return A Boolean value
|
406
|
+
|
407
|
+
def filter_supported
|
408
|
+
@filter_supported
|
409
|
+
end
|
410
|
+
|
411
|
+
# The method to set the value to filter_supported
|
412
|
+
# @param filter_supported [Boolean] A Boolean
|
413
|
+
|
414
|
+
def filter_supported=(filter_supported)
|
415
|
+
if filter_supported!=nil and ! [true, false].include?filter_supported
|
416
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filter_supported EXPECTED TYPE: Boolean', nil, nil)
|
417
|
+
end
|
418
|
+
@filter_supported = filter_supported
|
419
|
+
@key_modified['filter_supported'] = 1
|
420
|
+
end
|
421
|
+
|
422
|
+
# The method to get the show_as_tab
|
423
|
+
# @return A Boolean value
|
424
|
+
|
425
|
+
def show_as_tab
|
426
|
+
@show_as_tab
|
427
|
+
end
|
428
|
+
|
429
|
+
# The method to set the value to show_as_tab
|
430
|
+
# @param show_as_tab [Boolean] A Boolean
|
431
|
+
|
432
|
+
def show_as_tab=(show_as_tab)
|
433
|
+
if show_as_tab!=nil and ! [true, false].include?show_as_tab
|
434
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: show_as_tab EXPECTED TYPE: Boolean', nil, nil)
|
435
|
+
end
|
436
|
+
@show_as_tab = show_as_tab
|
437
|
+
@key_modified['show_as_tab'] = 1
|
438
|
+
end
|
439
|
+
|
440
|
+
# The method to get the web_link
|
441
|
+
# @return A String value
|
442
|
+
|
443
|
+
def web_link
|
444
|
+
@web_link
|
445
|
+
end
|
446
|
+
|
447
|
+
# The method to set the value to web_link
|
448
|
+
# @param web_link [String] A String
|
449
|
+
|
450
|
+
def web_link=(web_link)
|
451
|
+
if web_link!=nil and !web_link.is_a? String
|
452
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: web_link EXPECTED TYPE: String', nil, nil)
|
453
|
+
end
|
454
|
+
@web_link = web_link
|
455
|
+
@key_modified['web_link'] = 1
|
456
|
+
end
|
457
|
+
|
458
|
+
# The method to get the sequence_number
|
459
|
+
# @return A Integer value
|
460
|
+
|
461
|
+
def sequence_number
|
462
|
+
@sequence_number
|
463
|
+
end
|
464
|
+
|
465
|
+
# The method to set the value to sequence_number
|
466
|
+
# @param sequence_number [Integer] A Integer
|
467
|
+
|
468
|
+
def sequence_number=(sequence_number)
|
469
|
+
if sequence_number!=nil and !sequence_number.is_a? Integer
|
470
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sequence_number EXPECTED TYPE: Integer', nil, nil)
|
471
|
+
end
|
472
|
+
@sequence_number = sequence_number
|
473
|
+
@key_modified['sequence_number'] = 1
|
474
|
+
end
|
475
|
+
|
476
|
+
# The method to get the singular_label
|
477
|
+
# @return A String value
|
478
|
+
|
479
|
+
def singular_label
|
480
|
+
@singular_label
|
481
|
+
end
|
482
|
+
|
483
|
+
# The method to set the value to singular_label
|
484
|
+
# @param singular_label [String] A String
|
485
|
+
|
486
|
+
def singular_label=(singular_label)
|
487
|
+
if singular_label!=nil and !singular_label.is_a? String
|
488
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: singular_label EXPECTED TYPE: String', nil, nil)
|
489
|
+
end
|
490
|
+
@singular_label = singular_label
|
491
|
+
@key_modified['singular_label'] = 1
|
492
|
+
end
|
493
|
+
|
494
|
+
# The method to get the viewable
|
495
|
+
# @return A Boolean value
|
496
|
+
|
497
|
+
def viewable
|
498
|
+
@viewable
|
499
|
+
end
|
500
|
+
|
501
|
+
# The method to set the value to viewable
|
502
|
+
# @param viewable [Boolean] A Boolean
|
503
|
+
|
504
|
+
def viewable=(viewable)
|
505
|
+
if viewable!=nil and ! [true, false].include?viewable
|
506
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: viewable EXPECTED TYPE: Boolean', nil, nil)
|
507
|
+
end
|
508
|
+
@viewable = viewable
|
509
|
+
@key_modified['viewable'] = 1
|
510
|
+
end
|
511
|
+
|
512
|
+
# The method to get the api_supported
|
513
|
+
# @return A Boolean value
|
514
|
+
|
515
|
+
def api_supported
|
516
|
+
@api_supported
|
517
|
+
end
|
518
|
+
|
519
|
+
# The method to set the value to api_supported
|
520
|
+
# @param api_supported [Boolean] A Boolean
|
521
|
+
|
522
|
+
def api_supported=(api_supported)
|
523
|
+
if api_supported!=nil and ! [true, false].include?api_supported
|
524
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_supported EXPECTED TYPE: Boolean', nil, nil)
|
525
|
+
end
|
526
|
+
@api_supported = api_supported
|
527
|
+
@key_modified['api_supported'] = 1
|
528
|
+
end
|
529
|
+
|
530
|
+
# The method to get the api_name
|
531
|
+
# @return A String value
|
532
|
+
|
533
|
+
def api_name
|
534
|
+
@api_name
|
535
|
+
end
|
536
|
+
|
537
|
+
# The method to set the value to api_name
|
538
|
+
# @param api_name [String] A String
|
539
|
+
|
540
|
+
def api_name=(api_name)
|
541
|
+
if api_name!=nil and !api_name.is_a? String
|
542
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
|
543
|
+
end
|
544
|
+
@api_name = api_name
|
545
|
+
@key_modified['api_name'] = 1
|
546
|
+
end
|
547
|
+
|
548
|
+
# The method to get the quick_create
|
549
|
+
# @return A Boolean value
|
550
|
+
|
551
|
+
def quick_create
|
552
|
+
@quick_create
|
553
|
+
end
|
554
|
+
|
555
|
+
# The method to set the value to quick_create
|
556
|
+
# @param quick_create [Boolean] A Boolean
|
557
|
+
|
558
|
+
def quick_create=(quick_create)
|
559
|
+
if quick_create!=nil and ! [true, false].include?quick_create
|
560
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quick_create EXPECTED TYPE: Boolean', nil, nil)
|
561
|
+
end
|
562
|
+
@quick_create = quick_create
|
563
|
+
@key_modified['quick_create'] = 1
|
564
|
+
end
|
565
|
+
|
566
|
+
# The method to get the generated_type
|
567
|
+
# @return An instance of Util::Choice
|
568
|
+
|
569
|
+
def generated_type
|
570
|
+
@generated_type
|
571
|
+
end
|
572
|
+
|
573
|
+
# The method to set the value to generated_type
|
574
|
+
# @param generated_type [Util::Choice] An instance of Util::Choice
|
575
|
+
|
576
|
+
def generated_type=(generated_type)
|
577
|
+
if generated_type!=nil and !generated_type.is_a? Util::Choice
|
578
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: generated_type EXPECTED TYPE: Util::Choice', nil, nil)
|
579
|
+
end
|
580
|
+
@generated_type = generated_type
|
581
|
+
@key_modified['generated_type'] = 1
|
582
|
+
end
|
583
|
+
|
584
|
+
# The method to get the feeds_required
|
585
|
+
# @return A Boolean value
|
586
|
+
|
587
|
+
def feeds_required
|
588
|
+
@feeds_required
|
589
|
+
end
|
590
|
+
|
591
|
+
# The method to set the value to feeds_required
|
592
|
+
# @param feeds_required [Boolean] A Boolean
|
593
|
+
|
594
|
+
def feeds_required=(feeds_required)
|
595
|
+
if feeds_required!=nil and ! [true, false].include?feeds_required
|
596
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: feeds_required EXPECTED TYPE: Boolean', nil, nil)
|
597
|
+
end
|
598
|
+
@feeds_required = feeds_required
|
599
|
+
@key_modified['feeds_required'] = 1
|
600
|
+
end
|
601
|
+
|
602
|
+
# The method to get the scoring_supported
|
603
|
+
# @return A Boolean value
|
604
|
+
|
605
|
+
def scoring_supported
|
606
|
+
@scoring_supported
|
607
|
+
end
|
608
|
+
|
609
|
+
# The method to set the value to scoring_supported
|
610
|
+
# @param scoring_supported [Boolean] A Boolean
|
611
|
+
|
612
|
+
def scoring_supported=(scoring_supported)
|
613
|
+
if scoring_supported!=nil and ! [true, false].include?scoring_supported
|
614
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: scoring_supported EXPECTED TYPE: Boolean', nil, nil)
|
615
|
+
end
|
616
|
+
@scoring_supported = scoring_supported
|
617
|
+
@key_modified['scoring_supported'] = 1
|
618
|
+
end
|
619
|
+
|
620
|
+
# The method to get the webform_supported
|
621
|
+
# @return A Boolean value
|
622
|
+
|
623
|
+
def webform_supported
|
624
|
+
@webform_supported
|
625
|
+
end
|
626
|
+
|
627
|
+
# The method to set the value to webform_supported
|
628
|
+
# @param webform_supported [Boolean] A Boolean
|
629
|
+
|
630
|
+
def webform_supported=(webform_supported)
|
631
|
+
if webform_supported!=nil and ! [true, false].include?webform_supported
|
632
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: webform_supported EXPECTED TYPE: Boolean', nil, nil)
|
633
|
+
end
|
634
|
+
@webform_supported = webform_supported
|
635
|
+
@key_modified['webform_supported'] = 1
|
636
|
+
end
|
637
|
+
|
638
|
+
# The method to get the territory
|
639
|
+
# @return An instance of Territory
|
640
|
+
|
641
|
+
def territory
|
642
|
+
@territory
|
643
|
+
end
|
644
|
+
|
645
|
+
# The method to set the value to territory
|
646
|
+
# @param territory [Territory] An instance of Territory
|
647
|
+
|
648
|
+
def territory=(territory)
|
649
|
+
if territory!=nil and !territory.is_a? Territory
|
650
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: territory EXPECTED TYPE: Territory', nil, nil)
|
651
|
+
end
|
652
|
+
@territory = territory
|
653
|
+
@key_modified['territory'] = 1
|
654
|
+
end
|
655
|
+
|
656
|
+
# The method to get the arguments
|
657
|
+
# @return An instance of Array
|
658
|
+
|
659
|
+
def arguments
|
660
|
+
@arguments
|
661
|
+
end
|
662
|
+
|
663
|
+
# The method to set the value to arguments
|
664
|
+
# @param arguments [Array] An instance of Array
|
665
|
+
|
666
|
+
def arguments=(arguments)
|
667
|
+
if arguments!=nil and !arguments.is_a? Array
|
668
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: arguments EXPECTED TYPE: Array', nil, nil)
|
669
|
+
end
|
670
|
+
@arguments = arguments
|
671
|
+
@key_modified['arguments'] = 1
|
672
|
+
end
|
673
|
+
|
674
|
+
# The method to get the module_name
|
675
|
+
# @return A String value
|
676
|
+
|
677
|
+
def module_name
|
678
|
+
@module_name
|
679
|
+
end
|
680
|
+
|
681
|
+
# The method to set the value to module_name
|
682
|
+
# @param module_name [String] A String
|
683
|
+
|
684
|
+
def module_name=(module_name)
|
685
|
+
if module_name!=nil and !module_name.is_a? String
|
686
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: module_name EXPECTED TYPE: String', nil, nil)
|
687
|
+
end
|
688
|
+
@module_name = module_name
|
689
|
+
@key_modified['module_name'] = 1
|
690
|
+
end
|
691
|
+
|
692
|
+
# The method to get the business_card_field_limit
|
693
|
+
# @return A Integer value
|
694
|
+
|
695
|
+
def business_card_field_limit
|
696
|
+
@business_card_field_limit
|
697
|
+
end
|
698
|
+
|
699
|
+
# The method to set the value to business_card_field_limit
|
700
|
+
# @param business_card_field_limit [Integer] A Integer
|
701
|
+
|
702
|
+
def business_card_field_limit=(business_card_field_limit)
|
703
|
+
if business_card_field_limit!=nil and !business_card_field_limit.is_a? Integer
|
704
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: business_card_field_limit EXPECTED TYPE: Integer', nil, nil)
|
705
|
+
end
|
706
|
+
@business_card_field_limit = business_card_field_limit
|
707
|
+
@key_modified['business_card_field_limit'] = 1
|
708
|
+
end
|
709
|
+
|
710
|
+
# The method to get the track_current_data
|
711
|
+
# @return A Boolean value
|
712
|
+
|
713
|
+
def track_current_data
|
714
|
+
@track_current_data
|
715
|
+
end
|
716
|
+
|
717
|
+
# The method to set the value to track_current_data
|
718
|
+
# @param track_current_data [Boolean] A Boolean
|
719
|
+
|
720
|
+
def track_current_data=(track_current_data)
|
721
|
+
if track_current_data!=nil and ! [true, false].include?track_current_data
|
722
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: track_current_data EXPECTED TYPE: Boolean', nil, nil)
|
723
|
+
end
|
724
|
+
@track_current_data = track_current_data
|
725
|
+
@key_modified['track_current_data'] = 1
|
726
|
+
end
|
727
|
+
|
728
|
+
# The method to get the modified_by
|
729
|
+
# @return An instance of Users::MinifiedUser
|
730
|
+
|
731
|
+
def modified_by
|
732
|
+
@modified_by
|
733
|
+
end
|
734
|
+
|
735
|
+
# The method to set the value to modified_by
|
736
|
+
# @param modified_by [Users::MinifiedUser] An instance of Users::MinifiedUser
|
737
|
+
|
738
|
+
def modified_by=(modified_by)
|
739
|
+
if modified_by!=nil and !modified_by.is_a? Users::MinifiedUser
|
740
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_by EXPECTED TYPE: MinifiedUser', nil, nil)
|
741
|
+
end
|
742
|
+
@modified_by = modified_by
|
743
|
+
@key_modified['modified_by'] = 1
|
744
|
+
end
|
745
|
+
|
746
|
+
# The method to get the profiles
|
747
|
+
# @return An instance of Array
|
748
|
+
|
749
|
+
def profiles
|
750
|
+
@profiles
|
751
|
+
end
|
752
|
+
|
753
|
+
# The method to set the value to profiles
|
754
|
+
# @param profiles [Array] An instance of Array
|
755
|
+
|
756
|
+
def profiles=(profiles)
|
757
|
+
if profiles!=nil and !profiles.is_a? Array
|
758
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: profiles EXPECTED TYPE: Array', nil, nil)
|
759
|
+
end
|
760
|
+
@profiles = profiles
|
761
|
+
@key_modified['profiles'] = 1
|
762
|
+
end
|
763
|
+
|
764
|
+
# The method to get the parent_module
|
765
|
+
# @return An instance of MinifiedModule
|
766
|
+
|
767
|
+
def parent_module
|
768
|
+
@parent_module
|
769
|
+
end
|
770
|
+
|
771
|
+
# The method to set the value to parent_module
|
772
|
+
# @param parent_module [MinifiedModule] An instance of MinifiedModule
|
773
|
+
|
774
|
+
def parent_module=(parent_module)
|
775
|
+
if parent_module!=nil and !parent_module.is_a? MinifiedModule
|
776
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: parent_module EXPECTED TYPE: MinifiedModule', nil, nil)
|
777
|
+
end
|
778
|
+
@parent_module = parent_module
|
779
|
+
@key_modified['parent_module'] = 1
|
780
|
+
end
|
781
|
+
|
782
|
+
# The method to get the activity_badge
|
783
|
+
# @return An instance of Util::Choice
|
784
|
+
|
785
|
+
def activity_badge
|
786
|
+
@activity_badge
|
787
|
+
end
|
788
|
+
|
789
|
+
# The method to set the value to activity_badge
|
790
|
+
# @param activity_badge [Util::Choice] An instance of Util::Choice
|
791
|
+
|
792
|
+
def activity_badge=(activity_badge)
|
793
|
+
if activity_badge!=nil and !activity_badge.is_a? Util::Choice
|
794
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: activity_badge EXPECTED TYPE: Util::Choice', nil, nil)
|
795
|
+
end
|
796
|
+
@activity_badge = activity_badge
|
797
|
+
@key_modified['activity_badge'] = 1
|
798
|
+
end
|
799
|
+
|
800
|
+
# The method to get the field_states
|
801
|
+
# @return An instance of Array
|
802
|
+
|
803
|
+
def field_states
|
804
|
+
@field_states
|
805
|
+
end
|
806
|
+
|
807
|
+
# The method to set the value to field_states
|
808
|
+
# @param field_states [Array] An instance of Array
|
809
|
+
|
810
|
+
def field_states=(field_states)
|
811
|
+
if field_states!=nil and !field_states.is_a? Array
|
812
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_states EXPECTED TYPE: Array', nil, nil)
|
813
|
+
end
|
814
|
+
@field_states = field_states
|
815
|
+
@key_modified['$field_states'] = 1
|
816
|
+
end
|
817
|
+
|
818
|
+
# The method to get the business_card_fields
|
819
|
+
# @return An instance of Array
|
820
|
+
|
821
|
+
def business_card_fields
|
822
|
+
@business_card_fields
|
823
|
+
end
|
824
|
+
|
825
|
+
# The method to set the value to business_card_fields
|
826
|
+
# @param business_card_fields [Array] An instance of Array
|
827
|
+
|
828
|
+
def business_card_fields=(business_card_fields)
|
829
|
+
if business_card_fields!=nil and !business_card_fields.is_a? Array
|
830
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: business_card_fields EXPECTED TYPE: Array', nil, nil)
|
831
|
+
end
|
832
|
+
@business_card_fields = business_card_fields
|
833
|
+
@key_modified['business_card_fields'] = 1
|
834
|
+
end
|
835
|
+
|
836
|
+
# The method to get the per_page
|
837
|
+
# @return A Integer value
|
838
|
+
|
839
|
+
def per_page
|
840
|
+
@per_page
|
841
|
+
end
|
842
|
+
|
843
|
+
# The method to set the value to per_page
|
844
|
+
# @param per_page [Integer] A Integer
|
845
|
+
|
846
|
+
def per_page=(per_page)
|
847
|
+
if per_page!=nil and !per_page.is_a? Integer
|
848
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: per_page EXPECTED TYPE: Integer', nil, nil)
|
849
|
+
end
|
850
|
+
@per_page = per_page
|
851
|
+
@key_modified['per_page'] = 1
|
852
|
+
end
|
853
|
+
|
854
|
+
# The method to get the properties
|
855
|
+
# @return An instance of Array
|
856
|
+
|
857
|
+
def properties
|
858
|
+
@properties
|
859
|
+
end
|
860
|
+
|
861
|
+
# The method to set the value to properties
|
862
|
+
# @param properties [Array] An instance of Array
|
863
|
+
|
864
|
+
def properties=(properties)
|
865
|
+
if properties!=nil and !properties.is_a? Array
|
866
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: properties EXPECTED TYPE: Array', nil, nil)
|
867
|
+
end
|
868
|
+
@properties = properties
|
869
|
+
@key_modified['$properties'] = 1
|
870
|
+
end
|
871
|
+
|
872
|
+
# The method to get the on_demand_properties
|
873
|
+
# @return An instance of Array
|
874
|
+
|
875
|
+
def on_demand_properties
|
876
|
+
@on_demand_properties
|
877
|
+
end
|
878
|
+
|
879
|
+
# The method to set the value to on_demand_properties
|
880
|
+
# @param on_demand_properties [Array] An instance of Array
|
881
|
+
|
882
|
+
def on_demand_properties=(on_demand_properties)
|
883
|
+
if on_demand_properties!=nil and !on_demand_properties.is_a? Array
|
884
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: on_demand_properties EXPECTED TYPE: Array', nil, nil)
|
885
|
+
end
|
886
|
+
@on_demand_properties = on_demand_properties
|
887
|
+
@key_modified['$on_demand_properties'] = 1
|
888
|
+
end
|
889
|
+
|
890
|
+
# The method to get the search_layout_fields
|
891
|
+
# @return An instance of Array
|
892
|
+
|
893
|
+
def search_layout_fields
|
894
|
+
@search_layout_fields
|
895
|
+
end
|
896
|
+
|
897
|
+
# The method to set the value to search_layout_fields
|
898
|
+
# @param search_layout_fields [Array] An instance of Array
|
899
|
+
|
900
|
+
def search_layout_fields=(search_layout_fields)
|
901
|
+
if search_layout_fields!=nil and !search_layout_fields.is_a? Array
|
902
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: search_layout_fields EXPECTED TYPE: Array', nil, nil)
|
903
|
+
end
|
904
|
+
@search_layout_fields = search_layout_fields
|
905
|
+
@key_modified['search_layout_fields'] = 1
|
906
|
+
end
|
907
|
+
|
908
|
+
# The method to get the kanban_view_supported
|
909
|
+
# @return A Boolean value
|
910
|
+
|
911
|
+
def kanban_view_supported
|
912
|
+
@kanban_view_supported
|
913
|
+
end
|
914
|
+
|
915
|
+
# The method to set the value to kanban_view_supported
|
916
|
+
# @param kanban_view_supported [Boolean] A Boolean
|
917
|
+
|
918
|
+
def kanban_view_supported=(kanban_view_supported)
|
919
|
+
if kanban_view_supported!=nil and ! [true, false].include?kanban_view_supported
|
920
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: kanban_view_supported EXPECTED TYPE: Boolean', nil, nil)
|
921
|
+
end
|
922
|
+
@kanban_view_supported = kanban_view_supported
|
923
|
+
@key_modified['kanban_view_supported'] = 1
|
924
|
+
end
|
925
|
+
|
926
|
+
# The method to get the lookup_field_properties
|
927
|
+
# @return An instance of LookupFieldProperties
|
928
|
+
|
929
|
+
def lookup_field_properties
|
930
|
+
@lookup_field_properties
|
931
|
+
end
|
932
|
+
|
933
|
+
# The method to set the value to lookup_field_properties
|
934
|
+
# @param lookup_field_properties [LookupFieldProperties] An instance of LookupFieldProperties
|
935
|
+
|
936
|
+
def lookup_field_properties=(lookup_field_properties)
|
937
|
+
if lookup_field_properties!=nil and !lookup_field_properties.is_a? LookupFieldProperties
|
938
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: lookup_field_properties EXPECTED TYPE: LookupFieldProperties', nil, nil)
|
939
|
+
end
|
940
|
+
@lookup_field_properties = lookup_field_properties
|
941
|
+
@key_modified['lookup_field_properties'] = 1
|
942
|
+
end
|
943
|
+
|
944
|
+
# The method to get the kanban_view
|
945
|
+
# @return A Boolean value
|
946
|
+
|
947
|
+
def kanban_view
|
948
|
+
@kanban_view
|
949
|
+
end
|
950
|
+
|
951
|
+
# The method to set the value to kanban_view
|
952
|
+
# @param kanban_view [Boolean] A Boolean
|
953
|
+
|
954
|
+
def kanban_view=(kanban_view)
|
955
|
+
if kanban_view!=nil and ! [true, false].include?kanban_view
|
956
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: kanban_view EXPECTED TYPE: Boolean', nil, nil)
|
957
|
+
end
|
958
|
+
@kanban_view = kanban_view
|
959
|
+
@key_modified['kanban_view'] = 1
|
960
|
+
end
|
961
|
+
|
962
|
+
# The method to get the related_lists
|
963
|
+
# @return An instance of Array
|
964
|
+
|
965
|
+
def related_lists
|
966
|
+
@related_lists
|
967
|
+
end
|
968
|
+
|
969
|
+
# The method to set the value to related_lists
|
970
|
+
# @param related_lists [Array] An instance of Array
|
971
|
+
|
972
|
+
def related_lists=(related_lists)
|
973
|
+
if related_lists!=nil and !related_lists.is_a? Array
|
974
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: related_lists EXPECTED TYPE: Array', nil, nil)
|
975
|
+
end
|
976
|
+
@related_lists = related_lists
|
977
|
+
@key_modified['related_lists'] = 1
|
978
|
+
end
|
979
|
+
|
980
|
+
# The method to get the filter_status
|
981
|
+
# @return A Boolean value
|
982
|
+
|
983
|
+
def filter_status
|
984
|
+
@filter_status
|
985
|
+
end
|
986
|
+
|
987
|
+
# The method to set the value to filter_status
|
988
|
+
# @param filter_status [Boolean] A Boolean
|
989
|
+
|
990
|
+
def filter_status=(filter_status)
|
991
|
+
if filter_status!=nil and ! [true, false].include?filter_status
|
992
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filter_status EXPECTED TYPE: Boolean', nil, nil)
|
993
|
+
end
|
994
|
+
@filter_status = filter_status
|
995
|
+
@key_modified['filter_status'] = 1
|
996
|
+
end
|
997
|
+
|
998
|
+
# The method to get the related_list_properties
|
999
|
+
# @return An instance of RelatedListProperties
|
1000
|
+
|
1001
|
+
def related_list_properties
|
1002
|
+
@related_list_properties
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
# The method to set the value to related_list_properties
|
1006
|
+
# @param related_list_properties [RelatedListProperties] An instance of RelatedListProperties
|
1007
|
+
|
1008
|
+
def related_list_properties=(related_list_properties)
|
1009
|
+
if related_list_properties!=nil and !related_list_properties.is_a? RelatedListProperties
|
1010
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: related_list_properties EXPECTED TYPE: RelatedListProperties', nil, nil)
|
1011
|
+
end
|
1012
|
+
@related_list_properties = related_list_properties
|
1013
|
+
@key_modified['related_list_properties'] = 1
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
# The method to get the display_field
|
1017
|
+
# @return A String value
|
1018
|
+
|
1019
|
+
def display_field
|
1020
|
+
@display_field
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
# The method to set the value to display_field
|
1024
|
+
# @param display_field [String] A String
|
1025
|
+
|
1026
|
+
def display_field=(display_field)
|
1027
|
+
if display_field!=nil and !display_field.is_a? String
|
1028
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_field EXPECTED TYPE: String', nil, nil)
|
1029
|
+
end
|
1030
|
+
@display_field = display_field
|
1031
|
+
@key_modified['display_field'] = 1
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
# The method to get the layouts
|
1035
|
+
# @return An instance of Array
|
1036
|
+
|
1037
|
+
def layouts
|
1038
|
+
@layouts
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
# The method to set the value to layouts
|
1042
|
+
# @param layouts [Array] An instance of Array
|
1043
|
+
|
1044
|
+
def layouts=(layouts)
|
1045
|
+
if layouts!=nil and !layouts.is_a? Array
|
1046
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: layouts EXPECTED TYPE: Array', nil, nil)
|
1047
|
+
end
|
1048
|
+
@layouts = layouts
|
1049
|
+
@key_modified['layouts'] = 1
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
# The method to get the fields
|
1053
|
+
# @return An instance of Array
|
1054
|
+
|
1055
|
+
def fields
|
1056
|
+
@fields
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
# The method to set the value to fields
|
1060
|
+
# @param fields [Array] An instance of Array
|
1061
|
+
|
1062
|
+
def fields=(fields)
|
1063
|
+
if fields!=nil and !fields.is_a? Array
|
1064
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: fields EXPECTED TYPE: Array', nil, nil)
|
1065
|
+
end
|
1066
|
+
@fields = fields
|
1067
|
+
@key_modified['fields'] = 1
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
# The method to get the custom_view
|
1071
|
+
# @return An instance of CustomViews::CustomView
|
1072
|
+
|
1073
|
+
def custom_view
|
1074
|
+
@custom_view
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
# The method to set the value to custom_view
|
1078
|
+
# @param custom_view [CustomViews::CustomView] An instance of CustomViews::CustomView
|
1079
|
+
|
1080
|
+
def custom_view=(custom_view)
|
1081
|
+
if custom_view!=nil and !custom_view.is_a? CustomViews::CustomView
|
1082
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: custom_view EXPECTED TYPE: CustomView', nil, nil)
|
1083
|
+
end
|
1084
|
+
@custom_view = custom_view
|
1085
|
+
@key_modified['custom_view'] = 1
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
# The method to get the zia_view
|
1089
|
+
# @return A Boolean value
|
1090
|
+
|
1091
|
+
def zia_view
|
1092
|
+
@zia_view
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# The method to set the value to zia_view
|
1096
|
+
# @param zia_view [Boolean] A Boolean
|
1097
|
+
|
1098
|
+
def zia_view=(zia_view)
|
1099
|
+
if zia_view!=nil and ! [true, false].include?zia_view
|
1100
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: zia_view EXPECTED TYPE: Boolean', nil, nil)
|
1101
|
+
end
|
1102
|
+
@zia_view = zia_view
|
1103
|
+
@key_modified['zia_view'] = 1
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
# The method to get the default_mapping_fields
|
1107
|
+
# @return An instance of Array
|
1108
|
+
|
1109
|
+
def default_mapping_fields
|
1110
|
+
@default_mapping_fields
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
# The method to set the value to default_mapping_fields
|
1114
|
+
# @param default_mapping_fields [Array] An instance of Array
|
1115
|
+
|
1116
|
+
def default_mapping_fields=(default_mapping_fields)
|
1117
|
+
if default_mapping_fields!=nil and !default_mapping_fields.is_a? Array
|
1118
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: default_mapping_fields EXPECTED TYPE: Array', nil, nil)
|
1119
|
+
end
|
1120
|
+
@default_mapping_fields = default_mapping_fields
|
1121
|
+
@key_modified['default_mapping_fields'] = 1
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
# The method to get the status
|
1125
|
+
# @return A String value
|
1126
|
+
|
1127
|
+
def status
|
1128
|
+
@status
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
# The method to set the value to status
|
1132
|
+
# @param status [String] A String
|
1133
|
+
|
1134
|
+
def status=(status)
|
1135
|
+
if status!=nil and !status.is_a? String
|
1136
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: status EXPECTED TYPE: String', nil, nil)
|
1137
|
+
end
|
1138
|
+
@status = status
|
1139
|
+
@key_modified['status'] = 1
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
# The method to get the arguments_32
|
1143
|
+
# @return An instance of Array
|
1144
|
+
|
1145
|
+
def arguments_32
|
1146
|
+
@arguments_32
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
# The method to set the value to arguments_32
|
1150
|
+
# @param arguments_32 [Array] An instance of Array
|
1151
|
+
|
1152
|
+
def arguments_32=(arguments_32)
|
1153
|
+
if arguments_32!=nil and !arguments_32.is_a? Array
|
1154
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: arguments_32 EXPECTED TYPE: Array', nil, nil)
|
1155
|
+
end
|
1156
|
+
@arguments_32 = arguments_32
|
1157
|
+
@key_modified['arguments'] = 1
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
# The method to check if the user has modified the given key
|
1161
|
+
# @param key [String] A String
|
1162
|
+
# @return A Integer value
|
1163
|
+
|
1164
|
+
def is_key_modified(key)
|
1165
|
+
if key!=nil and !key.is_a? String
|
1166
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
1167
|
+
end
|
1168
|
+
if @key_modified.key?(key)
|
1169
|
+
return @key_modified[key]
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
nil
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
# The method to mark the given key as modified
|
1176
|
+
# @param key [String] A String
|
1177
|
+
# @param modification [Integer] A Integer
|
1178
|
+
|
1179
|
+
def set_key_modified(key, modification)
|
1180
|
+
if key!=nil and !key.is_a? String
|
1181
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
1182
|
+
end
|
1183
|
+
if modification!=nil and !modification.is_a? Integer
|
1184
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
1185
|
+
end
|
1186
|
+
@key_modified[key] = modification
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
end
|
1190
|
+
end
|
1191
|
+
end
|