ZOHOCRMSDK6_0 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/src/ZOHOCRMSDK6_0.rb +1302 -0
- data/src/com/zoho/api/authenticator/oauth_token.rb +425 -0
- data/src/com/zoho/api/authenticator/store/db_store.rb +279 -0
- data/src/com/zoho/api/authenticator/store/file_store.rb +280 -0
- data/src/com/zoho/api/authenticator/store/token_store.rb +31 -0
- data/src/com/zoho/api/authenticator/token.rb +14 -0
- data/src/com/zoho/api/logger/sdk_logger.rb +88 -0
- data/src/com/zoho/crm/api/appointment_preference/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/action_response.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/appointment_preference/appointment_preference.rb +159 -0
- data/src/com/zoho/crm/api/appointment_preference/appointment_preference_operations.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/appointment_preference/deal_record_configuration.rb +101 -0
- data/src/com/zoho/crm/api/appointment_preference/field.rb +82 -0
- data/src/com/zoho/crm/api/appointment_preference/field_mappings.rb +102 -0
- data/src/com/zoho/crm/api/appointment_preference/layout.rb +82 -0
- data/src/com/zoho/crm/api/appointment_preference/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/appointment_preference/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/appointment_preference/success_response.rb +123 -0
- data/src/com/zoho/crm/api/assignment_rules/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rules.rb +235 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +75 -0
- data/src/com/zoho/crm/api/assignment_rules/default_assignee.rb +82 -0
- data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/assignment_rules/success_response.rb +121 -0
- data/src/com/zoho/crm/api/assignment_rules/user.rb +122 -0
- data/src/com/zoho/crm/api/associate_email/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/associate_email/action_response.rb +12 -0
- data/src/com/zoho/crm/api/associate_email/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/associate_email/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/associate_email/associate_email.rb +273 -0
- data/src/com/zoho/crm/api/associate_email/associate_email_operations.rb +49 -0
- data/src/com/zoho/crm/api/associate_email/attachments.rb +63 -0
- data/src/com/zoho/crm/api/associate_email/available.rb +101 -0
- data/src/com/zoho/crm/api/associate_email/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/associate_email/from.rb +82 -0
- data/src/com/zoho/crm/api/associate_email/linked_record.rb +82 -0
- data/src/com/zoho/crm/api/associate_email/module_map.rb +82 -0
- data/src/com/zoho/crm/api/associate_email/record.rb +101 -0
- data/src/com/zoho/crm/api/associate_email/success_response.rb +123 -0
- data/src/com/zoho/crm/api/associate_email/to.rb +82 -0
- data/src/com/zoho/crm/api/attachments/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/attachments/action_response.rb +12 -0
- data/src/com/zoho/crm/api/attachments/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/attachments/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/attachments/attachment.rb +368 -0
- data/src/com/zoho/crm/api/attachments/attachments_operations.rb +243 -0
- data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/attachments/info.rb +120 -0
- data/src/com/zoho/crm/api/attachments/owner.rb +101 -0
- data/src/com/zoho/crm/api/attachments/parent_id.rb +82 -0
- data/src/com/zoho/crm/api/attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/attachments/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/attachments/success_response.rb +123 -0
- data/src/com/zoho/crm/api/available_currencies/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/available_currencies/available_currencies_operations.rb +30 -0
- data/src/com/zoho/crm/api/available_currencies/currency.rb +177 -0
- data/src/com/zoho/crm/api/available_currencies/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/available_currencies/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/backup/action_response.rb +12 -0
- data/src/com/zoho/crm/api/backup/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/backup/backup.rb +158 -0
- data/src/com/zoho/crm/api/backup/backup_operations.rb +136 -0
- data/src/com/zoho/crm/api/backup/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/backup/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/backup/history.rb +196 -0
- data/src/com/zoho/crm/api/backup/history_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/backup/info.rb +120 -0
- data/src/com/zoho/crm/api/backup/requester.rb +101 -0
- data/src/com/zoho/crm/api/backup/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/backup/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/backup/success_response.rb +123 -0
- data/src/com/zoho/crm/api/backup/urls.rb +101 -0
- data/src/com/zoho/crm/api/backup/urls_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/blueprint/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/blueprint/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/blueprint/association_details.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/auto_number.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/blue_print.rb +121 -0
- data/src/com/zoho/crm/api/blueprint/blueprint_operations.rb +69 -0
- data/src/com/zoho/crm/api/blueprint/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/blueprint/convert_mapping.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/crypt.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/currency.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/escalation.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/field.rb +924 -0
- data/src/com/zoho/crm/api/blueprint/formula.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/layout.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/lookup_field.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/module.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/module_fields.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/module_mapping.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/multi_select_lookup.rb +158 -0
- data/src/com/zoho/crm/api/blueprint/next_transition.rb +120 -0
- data/src/com/zoho/crm/api/blueprint/process_info.rb +253 -0
- data/src/com/zoho/crm/api/blueprint/profile.rb +101 -0
- data/src/com/zoho/crm/api/blueprint/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/blueprint/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/blueprint/success_response.rb +123 -0
- data/src/com/zoho/crm/api/blueprint/tool_tip.rb +82 -0
- data/src/com/zoho/crm/api/blueprint/transition.rb +330 -0
- data/src/com/zoho/crm/api/blueprint/view_type.rb +120 -0
- data/src/com/zoho/crm/api/bulk_read/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/bulk_read/action_response.rb +12 -0
- data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/bulk_read/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/bulk_read/body_wrapper.rb +102 -0
- data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +76 -0
- data/src/com/zoho/crm/api/bulk_read/call_back.rb +83 -0
- data/src/com/zoho/crm/api/bulk_read/criteria.rb +176 -0
- data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/bulk_read/job_detail.rb +198 -0
- data/src/com/zoho/crm/api/bulk_read/module_details.rb +82 -0
- data/src/com/zoho/crm/api/bulk_read/query.rb +160 -0
- data/src/com/zoho/crm/api/bulk_read/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/bulk_read/result.rb +139 -0
- data/src/com/zoho/crm/api/bulk_read/success_response.rb +123 -0
- data/src/com/zoho/crm/api/bulk_write/action_response.rb +12 -0
- data/src/com/zoho/crm/api/bulk_write/api_exception.rb +241 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +114 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +218 -0
- data/src/com/zoho/crm/api/bulk_write/call_back.rb +83 -0
- data/src/com/zoho/crm/api/bulk_write/default_value.rb +98 -0
- data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +177 -0
- data/src/com/zoho/crm/api/bulk_write/file.rb +159 -0
- data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +140 -0
- data/src/com/zoho/crm/api/bulk_write/resource.rb +236 -0
- data/src/com/zoho/crm/api/bulk_write/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +12 -0
- data/src/com/zoho/crm/api/bulk_write/result.rb +63 -0
- data/src/com/zoho/crm/api/bulk_write/success_response.rb +123 -0
- data/src/com/zoho/crm/api/business_hours/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/business_hours/action_response.rb +12 -0
- data/src/com/zoho/crm/api/business_hours/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/business_hours/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/business_hours/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/business_hours/break_hours_custom_timing.rb +83 -0
- data/src/com/zoho/crm/api/business_hours/business_hours.rb +178 -0
- data/src/com/zoho/crm/api/business_hours/business_hours_operations.rb +90 -0
- data/src/com/zoho/crm/api/business_hours/features.rb +82 -0
- data/src/com/zoho/crm/api/business_hours/resources.rb +82 -0
- data/src/com/zoho/crm/api/business_hours/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/business_hours/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/business_hours/success_response.rb +123 -0
- data/src/com/zoho/crm/api/cancel_meetings/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/cancel_meetings/action_response.rb +12 -0
- data/src/com/zoho/crm/api/cancel_meetings/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/cancel_meetings/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/cancel_meetings/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/cancel_meetings/cancel_meetings_operations.rb +43 -0
- data/src/com/zoho/crm/api/cancel_meetings/notify.rb +63 -0
- data/src/com/zoho/crm/api/cancel_meetings/success_response.rb +123 -0
- data/src/com/zoho/crm/api/change_owner/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/change_owner/action_response.rb +12 -0
- data/src/com/zoho/crm/api/change_owner/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/change_owner/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/change_owner/body_wrapper.rb +101 -0
- data/src/com/zoho/crm/api/change_owner/change_owner_operations.rb +71 -0
- data/src/com/zoho/crm/api/change_owner/error_details.rb +82 -0
- data/src/com/zoho/crm/api/change_owner/mass_wrapper.rb +122 -0
- data/src/com/zoho/crm/api/change_owner/owner.rb +63 -0
- data/src/com/zoho/crm/api/change_owner/related_modules.rb +82 -0
- data/src/com/zoho/crm/api/change_owner/success_response.rb +123 -0
- data/src/com/zoho/crm/api/contact_roles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/contact_roles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/contact_role.rb +101 -0
- data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +163 -0
- data/src/com/zoho/crm/api/contact_roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/contact_roles/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/contact_roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/conversion_option/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/conversion_option/conversion_option_operations.rb +40 -0
- data/src/com/zoho/crm/api/conversion_option/conversion_options.rb +160 -0
- data/src/com/zoho/crm/api/conversion_option/field.rb +82 -0
- data/src/com/zoho/crm/api/conversion_option/preference_field_match.rb +82 -0
- data/src/com/zoho/crm/api/conversion_option/preference_field_matched_value.rb +101 -0
- data/src/com/zoho/crm/api/conversion_option/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/conversion_option/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/convert_lead/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/convert_lead/action_response.rb +12 -0
- data/src/com/zoho/crm/api/convert_lead/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/convert_lead/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/convert_lead/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/convert_lead/carry_over_tags.rb +101 -0
- data/src/com/zoho/crm/api/convert_lead/convert_lead_operations.rb +47 -0
- data/src/com/zoho/crm/api/convert_lead/lead_converter.rb +218 -0
- data/src/com/zoho/crm/api/convert_lead/success_response.rb +123 -0
- data/src/com/zoho/crm/api/coql/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/coql/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/coql/clause_details.rb +65 -0
- data/src/com/zoho/crm/api/coql/coql_operations.rb +36 -0
- data/src/com/zoho/crm/api/coql/details_wrapper.rb +12 -0
- data/src/com/zoho/crm/api/coql/parse_error_details.rb +103 -0
- data/src/com/zoho/crm/api/coql/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/coql/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/currencies/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/currencies/action_response.rb +12 -0
- data/src/com/zoho/crm/api/currencies/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/currencies/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/currencies/base_currency.rb +292 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_response.rb +12 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/currencies_operations.rb +158 -0
- data/src/com/zoho/crm/api/currencies/currency.rb +292 -0
- data/src/com/zoho/crm/api/currencies/error_details.rb +82 -0
- data/src/com/zoho/crm/api/currencies/format.rb +102 -0
- data/src/com/zoho/crm/api/currencies/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/currencies/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/currencies/success_response.rb +125 -0
- data/src/com/zoho/crm/api/custom_views/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/action_response.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/custom_views/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/custom_views/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
- data/src/com/zoho/crm/api/custom_views/custom_views.rb +463 -0
- data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
- data/src/com/zoho/crm/api/custom_views/field.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/fields.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/info.rb +158 -0
- data/src/com/zoho/crm/api/custom_views/owner.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/pin_fields.rb +101 -0
- data/src/com/zoho/crm/api/custom_views/pin_unpin_fields.rb +63 -0
- data/src/com/zoho/crm/api/custom_views/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/custom_views/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/custom_views/shared_to.rb +121 -0
- data/src/com/zoho/crm/api/custom_views/sort_by.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/success_response.rb +123 -0
- data/src/com/zoho/crm/api/custom_views/translation.rb +120 -0
- data/src/com/zoho/crm/api/dc/au_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/ca_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/cn_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/datacenter.rb +76 -0
- data/src/com/zoho/crm/api/dc/eu_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/in_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/jp_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/us_datacenter.rb +21 -0
- data/src/com/zoho/crm/api/deal_contact_roles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/deal_contact_roles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/deal_contact_roles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/deal_contact_roles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/deal_contact_roles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/deal_contact_roles/contact_role.rb +82 -0
- data/src/com/zoho/crm/api/deal_contact_roles/data.rb +154 -0
- data/src/com/zoho/crm/api/deal_contact_roles/deal_contact_roles_operations.rb +141 -0
- data/src/com/zoho/crm/api/deal_contact_roles/error_details.rb +82 -0
- data/src/com/zoho/crm/api/deal_contact_roles/info.rb +177 -0
- data/src/com/zoho/crm/api/deal_contact_roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/deal_contact_roles/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/deal_contact_roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/definition/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/definition/definition.rb +101 -0
- data/src/com/zoho/crm/api/definition/minified_property.rb +158 -0
- data/src/com/zoho/crm/api/definition/minified_property1.rb +139 -0
- data/src/com/zoho/crm/api/definition/property.rb +272 -0
- data/src/com/zoho/crm/api/definition/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/digest/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/digest/action_response.rb +12 -0
- data/src/com/zoho/crm/api/digest/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/digest/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/digest/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/digest/dependee.rb +82 -0
- data/src/com/zoho/crm/api/digest/digest.rb +101 -0
- data/src/com/zoho/crm/api/digest/digest_operations.rb +37 -0
- data/src/com/zoho/crm/api/digest/success_response.rb +123 -0
- data/src/com/zoho/crm/api/download_attachments/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/download_attachments/download_attachments_operations.rb +60 -0
- data/src/com/zoho/crm/api/download_attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/download_attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/download_inline_images/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/download_inline_images/download_inline_images_operations.rb +64 -0
- data/src/com/zoho/crm/api/download_inline_images/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/download_inline_images/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_compose_meta/data.rb +63 -0
- data/src/com/zoho/crm/api/email_compose_meta/data_map.rb +139 -0
- data/src/com/zoho/crm/api/email_compose_meta/features_available.rb +349 -0
- data/src/com/zoho/crm/api/email_compose_meta/from_address.rb +140 -0
- data/src/com/zoho/crm/api/email_compose_meta/signature.rb +82 -0
- data/src/com/zoho/crm/api/email_compose_meta/user.rb +139 -0
- data/src/com/zoho/crm/api/email_drafts/action_response.rb +12 -0
- data/src/com/zoho/crm/api/email_drafts/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/email_drafts/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_drafts/attachments.rb +120 -0
- data/src/com/zoho/crm/api/email_drafts/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/email_drafts/email_drafts.rb +367 -0
- data/src/com/zoho/crm/api/email_drafts/inventory_details.rb +121 -0
- data/src/com/zoho/crm/api/email_drafts/inventory_template.rb +82 -0
- data/src/com/zoho/crm/api/email_drafts/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/email_drafts/schedule_details.rb +101 -0
- data/src/com/zoho/crm/api/email_drafts/success_response.rb +123 -0
- data/src/com/zoho/crm/api/email_drafts/template.rb +82 -0
- data/src/com/zoho/crm/api/email_drafts/to.rb +82 -0
- data/src/com/zoho/crm/api/email_related_records/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_related_records/attachments.rb +101 -0
- data/src/com/zoho/crm/api/email_related_records/criteria.rb +102 -0
- data/src/com/zoho/crm/api/email_related_records/email.rb +537 -0
- data/src/com/zoho/crm/api/email_related_records/email_related_records_operations.rb +94 -0
- data/src/com/zoho/crm/api/email_related_records/field.rb +63 -0
- data/src/com/zoho/crm/api/email_related_records/info.rb +139 -0
- data/src/com/zoho/crm/api/email_related_records/linked_record.rb +101 -0
- data/src/com/zoho/crm/api/email_related_records/module.rb +82 -0
- data/src/com/zoho/crm/api/email_related_records/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_related_records/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/email_related_records/status.rb +177 -0
- data/src/com/zoho/crm/api/email_related_records/user_details.rb +82 -0
- data/src/com/zoho/crm/api/email_sharing_details/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_sharing_details/email_sharing_details_operations.rb +44 -0
- data/src/com/zoho/crm/api/email_sharing_details/email_sharings.rb +82 -0
- data/src/com/zoho/crm/api/email_sharing_details/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_sharing_details/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/email_sharing_details/share_from_user.rb +101 -0
- data/src/com/zoho/crm/api/email_templates/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/email_templates/attachment.rb +120 -0
- data/src/com/zoho/crm/api/email_templates/email_template.rb +452 -0
- data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +63 -0
- data/src/com/zoho/crm/api/email_templates/info.rb +120 -0
- data/src/com/zoho/crm/api/email_templates/last_version_statistics.rb +158 -0
- data/src/com/zoho/crm/api/email_templates/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/entity_scores/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/entity_scores/entity.rb +101 -0
- data/src/com/zoho/crm/api/entity_scores/entity_scores.rb +253 -0
- data/src/com/zoho/crm/api/entity_scores/entity_scores_operations.rb +114 -0
- data/src/com/zoho/crm/api/entity_scores/info.rb +215 -0
- data/src/com/zoho/crm/api/entity_scores/module.rb +82 -0
- data/src/com/zoho/crm/api/entity_scores/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/entity_scores/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/entity_scores/scoring_rule.rb +82 -0
- data/src/com/zoho/crm/api/exception/sdk_exception.rb +49 -0
- data/src/com/zoho/crm/api/features/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/features/component.rb +120 -0
- data/src/com/zoho/crm/api/features/detail.rb +82 -0
- data/src/com/zoho/crm/api/features/feature.rb +158 -0
- data/src/com/zoho/crm/api/features/features_operations.rb +93 -0
- data/src/com/zoho/crm/api/features/info.rb +120 -0
- data/src/com/zoho/crm/api/features/limit.rb +82 -0
- data/src/com/zoho/crm/api/features/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/features/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/field_attachments/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +54 -0
- data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/field_attachments/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/action_response.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/field_map_dependency/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/field_map_dependency/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/field_map_dependency/child.rb +82 -0
- data/src/com/zoho/crm/api/field_map_dependency/field_map_dependency_operations.rb +181 -0
- data/src/com/zoho/crm/api/field_map_dependency/info.rb +120 -0
- data/src/com/zoho/crm/api/field_map_dependency/map_dependency.rb +215 -0
- data/src/com/zoho/crm/api/field_map_dependency/parent.rb +82 -0
- data/src/com/zoho/crm/api/field_map_dependency/pick_list_mapping.rb +120 -0
- data/src/com/zoho/crm/api/field_map_dependency/picklist_map.rb +120 -0
- data/src/com/zoho/crm/api/field_map_dependency/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/field_map_dependency/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/field_map_dependency/sub_module.rb +82 -0
- data/src/com/zoho/crm/api/field_map_dependency/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fields/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/fields/action_response.rb +12 -0
- data/src/com/zoho/crm/api/fields/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fields/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/fields/association_details.rb +83 -0
- data/src/com/zoho/crm/api/fields/auto_number.rb +120 -0
- data/src/com/zoho/crm/api/fields/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/fields/convert_mapping.rb +101 -0
- data/src/com/zoho/crm/api/fields/criteria.rb +136 -0
- data/src/com/zoho/crm/api/fields/crypt.rb +158 -0
- data/src/com/zoho/crm/api/fields/currency.rb +83 -0
- data/src/com/zoho/crm/api/fields/email_parser.rb +82 -0
- data/src/com/zoho/crm/api/fields/expression.rb +101 -0
- data/src/com/zoho/crm/api/fields/external.rb +101 -0
- data/src/com/zoho/crm/api/fields/fields.rb +1506 -0
- data/src/com/zoho/crm/api/fields/fields_operations.rb +212 -0
- data/src/com/zoho/crm/api/fields/file_upolad_option.rb +82 -0
- data/src/com/zoho/crm/api/fields/forecast_category.rb +82 -0
- data/src/com/zoho/crm/api/fields/formula.rb +82 -0
- data/src/com/zoho/crm/api/fields/function_parameter.rb +63 -0
- data/src/com/zoho/crm/api/fields/hipaa_compliance.rb +82 -0
- data/src/com/zoho/crm/api/fields/history_tracking.rb +83 -0
- data/src/com/zoho/crm/api/fields/history_tracking_module.rb +159 -0
- data/src/com/zoho/crm/api/fields/lookup.rb +178 -0
- data/src/com/zoho/crm/api/fields/maps.rb +82 -0
- data/src/com/zoho/crm/api/fields/minified_field.rb +82 -0
- data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +102 -0
- data/src/com/zoho/crm/api/fields/multiselectlookup.rb +216 -0
- data/src/com/zoho/crm/api/fields/operation_type.rb +120 -0
- data/src/com/zoho/crm/api/fields/pick_list_value.rb +273 -0
- data/src/com/zoho/crm/api/fields/private.rb +101 -0
- data/src/com/zoho/crm/api/fields/profile.rb +101 -0
- data/src/com/zoho/crm/api/fields/query_details.rb +82 -0
- data/src/com/zoho/crm/api/fields/refer_from_field.rb +82 -0
- data/src/com/zoho/crm/api/fields/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/fields/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fields/rollup_criteria.rb +98 -0
- data/src/com/zoho/crm/api/fields/rollup_summary.rb +139 -0
- data/src/com/zoho/crm/api/fields/sharing_properties.rb +102 -0
- data/src/com/zoho/crm/api/fields/show_fields.rb +82 -0
- data/src/com/zoho/crm/api/fields/subform.rb +82 -0
- data/src/com/zoho/crm/api/fields/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fields/textarea.rb +63 -0
- data/src/com/zoho/crm/api/fields/tooltip.rb +82 -0
- data/src/com/zoho/crm/api/fields/unique.rb +63 -0
- data/src/com/zoho/crm/api/fields/view_type.rb +120 -0
- data/src/com/zoho/crm/api/files/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/files/action_response.rb +12 -0
- data/src/com/zoho/crm/api/files/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/files/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/files/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/files/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/files/files_operations.rb +80 -0
- data/src/com/zoho/crm/api/files/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/files/success_response.rb +123 -0
- data/src/com/zoho/crm/api/find_and_merge/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/find_and_merge/action_response.rb +12 -0
- data/src/com/zoho/crm/api/find_and_merge/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/find_and_merge/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/find_and_merge/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/find_and_merge/data_fields.rb +82 -0
- data/src/com/zoho/crm/api/find_and_merge/find_and_merge_operations.rb +83 -0
- data/src/com/zoho/crm/api/find_and_merge/image_data.rb +63 -0
- data/src/com/zoho/crm/api/find_and_merge/master_record_fields.rb +82 -0
- data/src/com/zoho/crm/api/find_and_merge/merge.rb +120 -0
- data/src/com/zoho/crm/api/find_and_merge/merge_data.rb +82 -0
- data/src/com/zoho/crm/api/find_and_merge/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/find_and_merge/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/find_and_merge/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fiscal_year/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/fiscal_year/action_response.rb +12 -0
- data/src/com/zoho/crm/api/fiscal_year/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fiscal_year/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/fiscal_year/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/fiscal_year/fiscal_year_operations.rb +51 -0
- data/src/com/zoho/crm/api/fiscal_year/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/fiscal_year/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/fiscal_year/success_response.rb +123 -0
- data/src/com/zoho/crm/api/fiscal_year/year.rb +102 -0
- data/src/com/zoho/crm/api/from_addresses/address.rb +139 -0
- data/src/com/zoho/crm/api/from_addresses/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/from_addresses/from_addresses_operations.rb +30 -0
- data/src/com/zoho/crm/api/from_addresses/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/from_addresses/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/action_response.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/api_exception.rb +137 -0
- data/src/com/zoho/crm/api/global_picklists/association.rb +101 -0
- data/src/com/zoho/crm/api/global_picklists/associations_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/associations_response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/global_picklists/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/global_picklists/field.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/global_picklists_operations.rb +313 -0
- data/src/com/zoho/crm/api/global_picklists/info.rb +120 -0
- data/src/com/zoho/crm/api/global_picklists/layout.rb +101 -0
- data/src/com/zoho/crm/api/global_picklists/module.rb +101 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values.rb +140 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values_association.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/pick_list_values_associations_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/picklist.rb +273 -0
- data/src/com/zoho/crm/api/global_picklists/replace_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/replace_action_response.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/replace_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/replace_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/global_picklists/replace_picklist_value.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/replace_picklist_values.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/replace_success_response.rb +123 -0
- data/src/com/zoho/crm/api/global_picklists/replaced_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/replaced_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/replaced_value.rb +82 -0
- data/src/com/zoho/crm/api/global_picklists/resource.rb +102 -0
- data/src/com/zoho/crm/api/global_picklists/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/global_picklists/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/global_picklists/success_response.rb +123 -0
- data/src/com/zoho/crm/api/header.rb +12 -0
- data/src/com/zoho/crm/api/header_map.rb +63 -0
- data/src/com/zoho/crm/api/hipaa_compliance/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/hipaa_compliance/action_response.rb +12 -0
- data/src/com/zoho/crm/api/hipaa_compliance/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/hipaa_compliance/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/hipaa_compliance/hipaa_compliance.rb +158 -0
- data/src/com/zoho/crm/api/hipaa_compliance/modules.rb +82 -0
- data/src/com/zoho/crm/api/hipaa_compliance/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/hipaa_compliance/success_response.rb +123 -0
- data/src/com/zoho/crm/api/holidays/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/holidays/action_response.rb +12 -0
- data/src/com/zoho/crm/api/holidays/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/holidays/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/holidays/body_wrapper.rb +12 -0
- data/src/com/zoho/crm/api/holidays/business_holiday.rb +101 -0
- data/src/com/zoho/crm/api/holidays/create_business_holiday.rb +65 -0
- data/src/com/zoho/crm/api/holidays/create_shift_holiday.rb +65 -0
- data/src/com/zoho/crm/api/holidays/holiday.rb +158 -0
- data/src/com/zoho/crm/api/holidays/holidays.rb +63 -0
- data/src/com/zoho/crm/api/holidays/holidays_operations.rb +189 -0
- data/src/com/zoho/crm/api/holidays/info.rb +120 -0
- data/src/com/zoho/crm/api/holidays/resonse_handler.rb +12 -0
- data/src/com/zoho/crm/api/holidays/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/holidays/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/holidays/shift_holiday.rb +121 -0
- data/src/com/zoho/crm/api/holidays/shift_hour.rb +82 -0
- data/src/com/zoho/crm/api/holidays/success_response.rb +123 -0
- data/src/com/zoho/crm/api/initializer.rb +232 -0
- data/src/com/zoho/crm/api/inventory_convert/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/inventory_convert/convert_to.rb +82 -0
- data/src/com/zoho/crm/api/inventory_convert/inventory_converter.rb +63 -0
- data/src/com/zoho/crm/api/inventory_convert/module.rb +82 -0
- data/src/com/zoho/crm/api/inventory_convert/record.rb +82 -0
- data/src/com/zoho/crm/api/inventory_convert/success_response.rb +121 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/body_wrapper.rb +120 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/convert_to.rb +82 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/module.rb +82 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/related_modules.rb +82 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/success_response.rb +121 -0
- data/src/com/zoho/crm/api/inventory_mass_convert/user.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/inventory_templates/folder.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/info.rb +120 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_templates.rb +333 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +75 -0
- data/src/com/zoho/crm/api/inventory_templates/module_map.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/inventory_templates/user.rb +82 -0
- data/src/com/zoho/crm/api/isc_signature/signature.rb +60 -0
- data/src/com/zoho/crm/api/layouts/action_response.rb +12 -0
- data/src/com/zoho/crm/api/layouts/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/layouts/actions_allowed.rb +177 -0
- data/src/com/zoho/crm/api/layouts/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/layouts/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/layouts/convert_mapping.rb +139 -0
- data/src/com/zoho/crm/api/layouts/deal_field.rb +120 -0
- data/src/com/zoho/crm/api/layouts/deal_layout_mapping.rb +103 -0
- data/src/com/zoho/crm/api/layouts/default_assignment_view.rb +101 -0
- data/src/com/zoho/crm/api/layouts/default_view.rb +101 -0
- data/src/com/zoho/crm/api/layouts/layouts.rb +425 -0
- data/src/com/zoho/crm/api/layouts/layouts_operations.rb +81 -0
- data/src/com/zoho/crm/api/layouts/minified_layout.rb +82 -0
- data/src/com/zoho/crm/api/layouts/profiles.rb +139 -0
- data/src/com/zoho/crm/api/layouts/properties.rb +101 -0
- data/src/com/zoho/crm/api/layouts/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/layouts/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/layouts/section_field.rb +1609 -0
- data/src/com/zoho/crm/api/layouts/section_subform_field.rb +101 -0
- data/src/com/zoho/crm/api/layouts/sections.rb +272 -0
- data/src/com/zoho/crm/api/layouts/static_values.rb +101 -0
- data/src/com/zoho/crm/api/layouts/success_response.rb +123 -0
- data/src/com/zoho/crm/api/layouts/tooltip.rb +83 -0
- data/src/com/zoho/crm/api/mail_merge/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mail_merge/address.rb +82 -0
- data/src/com/zoho/crm/api/mail_merge/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/mail_merge/download_mail_merge.rb +121 -0
- data/src/com/zoho/crm/api/mail_merge/download_mail_merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/download_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge.rb +215 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge_operations.rb +101 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge_template.rb +82 -0
- data/src/com/zoho/crm/api/mail_merge/mail_merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/sign_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/sign_action_response.rb +12 -0
- data/src/com/zoho/crm/api/mail_merge/sign_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mail_merge/sign_mail_merge.rb +120 -0
- data/src/com/zoho/crm/api/mail_merge/sign_mail_merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/mail_merge/signers.rb +102 -0
- data/src/com/zoho/crm/api/mail_merge/success_response.rb +125 -0
- data/src/com/zoho/crm/api/mass_change_owner/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_change_owner/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_change_owner/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_change_owner/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/mass_change_owner/body_wrapper.rb +120 -0
- data/src/com/zoho/crm/api/mass_change_owner/criteria.rb +136 -0
- data/src/com/zoho/crm/api/mass_change_owner/field.rb +82 -0
- data/src/com/zoho/crm/api/mass_change_owner/mass_change_owner_operations.rb +73 -0
- data/src/com/zoho/crm/api/mass_change_owner/owner.rb +82 -0
- data/src/com/zoho/crm/api/mass_change_owner/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_change_owner/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_change_owner/status.rb +140 -0
- data/src/com/zoho/crm/api/mass_change_owner/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_change_owner/territory.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_convert/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/mass_convert/assign_to.rb +63 -0
- data/src/com/zoho/crm/api/mass_convert/body_wrapper.rb +197 -0
- data/src/com/zoho/crm/api/mass_convert/error_details.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/mass_convert_operations.rb +68 -0
- data/src/com/zoho/crm/api/mass_convert/move_attachments_to.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/portal_user_type.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/related_module.rb +82 -0
- data/src/com/zoho/crm/api/mass_convert/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_convert/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_convert/status.rb +139 -0
- data/src/com/zoho/crm/api/mass_convert/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/action_response.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/cvid_body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/mass_delete_cvid_operations.rb +95 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/record_id_body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/status.rb +121 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/success_response.rb +123 -0
- data/src/com/zoho/crm/api/mass_delete_cvid/territory.rb +82 -0
- data/src/com/zoho/crm/api/modules/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/modules/action_response.rb +12 -0
- data/src/com/zoho/crm/api/modules/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/modules/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/modules/argument.rb +82 -0
- data/src/com/zoho/crm/api/modules/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/modules/lookup_field.rb +103 -0
- data/src/com/zoho/crm/api/modules/lookup_field_properties.rb +63 -0
- data/src/com/zoho/crm/api/modules/minified_module.rb +120 -0
- data/src/com/zoho/crm/api/modules/module_field_lookup.rb +181 -0
- data/src/com/zoho/crm/api/modules/module_fields.rb +1531 -0
- data/src/com/zoho/crm/api/modules/modules.rb +1285 -0
- data/src/com/zoho/crm/api/modules/modules_operations.rb +133 -0
- data/src/com/zoho/crm/api/modules/related_list_properties.rb +102 -0
- data/src/com/zoho/crm/api/modules/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/modules/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/modules/sharing_properties.rb +102 -0
- data/src/com/zoho/crm/api/modules/static_subform_field.rb +82 -0
- data/src/com/zoho/crm/api/modules/static_subform_properties.rb +63 -0
- data/src/com/zoho/crm/api/modules/success_response.rb +123 -0
- data/src/com/zoho/crm/api/modules/territory.rb +101 -0
- data/src/com/zoho/crm/api/notes/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/notes/action_response.rb +12 -0
- data/src/com/zoho/crm/api/notes/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/notes/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/notes/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notes/info.rb +215 -0
- data/src/com/zoho/crm/api/notes/note.rb +351 -0
- data/src/com/zoho/crm/api/notes/notes_operations.rb +233 -0
- data/src/com/zoho/crm/api/notes/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/notes/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/notes/success_response.rb +123 -0
- data/src/com/zoho/crm/api/notifications/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/notifications/action_response.rb +12 -0
- data/src/com/zoho/crm/api/notifications/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/notifications/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/notifications/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notifications/criteria.rb +136 -0
- data/src/com/zoho/crm/api/notifications/event.rb +158 -0
- data/src/com/zoho/crm/api/notifications/field.rb +82 -0
- data/src/com/zoho/crm/api/notifications/info.rb +120 -0
- data/src/com/zoho/crm/api/notifications/module.rb +82 -0
- data/src/com/zoho/crm/api/notifications/notification.rb +294 -0
- data/src/com/zoho/crm/api/notifications/notification_condition.rb +101 -0
- data/src/com/zoho/crm/api/notifications/notifications_operations.rb +165 -0
- data/src/com/zoho/crm/api/notifications/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/notifications/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/notifications/success_response.rb +123 -0
- data/src/com/zoho/crm/api/org/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/org/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/org/api_exception.rb +182 -0
- data/src/com/zoho/crm/api/org/checkin_preferences.rb +63 -0
- data/src/com/zoho/crm/api/org/feature.rb +82 -0
- data/src/com/zoho/crm/api/org/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/org/hierarchy_preferences.rb +83 -0
- data/src/com/zoho/crm/api/org/license_details.rb +177 -0
- data/src/com/zoho/crm/api/org/org.rb +862 -0
- data/src/com/zoho/crm/api/org/org_operations.rb +82 -0
- data/src/com/zoho/crm/api/org/resource.rb +82 -0
- data/src/com/zoho/crm/api/org/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/org/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/org/success_response.rb +123 -0
- data/src/com/zoho/crm/api/param.rb +12 -0
- data/src/com/zoho/crm/api/parameter_map.rb +62 -0
- data/src/com/zoho/crm/api/pipeline/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/action_response.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/pipeline/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/d_pipeline.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/d_pipeline_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/delete.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/forecast_category.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/json_details.rb +101 -0
- data/src/com/zoho/crm/api/pipeline/maps.rb +196 -0
- data/src/com/zoho/crm/api/pipeline/pipeline.rb +177 -0
- data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +195 -0
- data/src/com/zoho/crm/api/pipeline/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/pipeline/stages.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
- data/src/com/zoho/crm/api/pipeline/t_pipeline.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline.rb +82 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_response.rb +12 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_success_response.rb +123 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipeline_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/portal_invite/action_response.rb +12 -0
- data/src/com/zoho/crm/api/portal_invite/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portal_invite/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/portal_invite/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/data.rb +12 -0
- data/src/com/zoho/crm/api/portal_invite/job_response.rb +101 -0
- data/src/com/zoho/crm/api/portal_invite/portal.rb +121 -0
- data/src/com/zoho/crm/api/portal_invite/portal_invite.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/portal_invite_operations.rb +66 -0
- data/src/com/zoho/crm/api/portal_invite/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_invite/success_response.rb +125 -0
- data/src/com/zoho/crm/api/portal_user_type/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/portal_user_type/action_response.rb +12 -0
- data/src/com/zoho/crm/api/portal_user_type/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portal_user_type/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/portal_user_type/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portal_user_type/fields.rb +101 -0
- data/src/com/zoho/crm/api/portal_user_type/filters.rb +101 -0
- data/src/com/zoho/crm/api/portal_user_type/layouts.rb +120 -0
- data/src/com/zoho/crm/api/portal_user_type/modules.rb +215 -0
- data/src/com/zoho/crm/api/portal_user_type/owner.rb +82 -0
- data/src/com/zoho/crm/api/portal_user_type/permissions.rb +177 -0
- data/src/com/zoho/crm/api/portal_user_type/personality_module.rb +101 -0
- data/src/com/zoho/crm/api/portal_user_type/portal_user_type_operations.rb +144 -0
- data/src/com/zoho/crm/api/portal_user_type/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/portal_user_type/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portal_user_type/success_response.rb +123 -0
- data/src/com/zoho/crm/api/portal_user_type/user_type.rb +253 -0
- data/src/com/zoho/crm/api/portal_user_type/views.rb +120 -0
- data/src/com/zoho/crm/api/portals/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/portals/action_response.rb +12 -0
- data/src/com/zoho/crm/api/portals/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portals/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/portals/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/portals/owner.rb +82 -0
- data/src/com/zoho/crm/api/portals/portals.rb +177 -0
- data/src/com/zoho/crm/api/portals/portals_operations.rb +96 -0
- data/src/com/zoho/crm/api/portals/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/portals/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/portals/success_response.rb +123 -0
- data/src/com/zoho/crm/api/portals_meta/filters.rb +101 -0
- data/src/com/zoho/crm/api/portals_meta/layouts.rb +101 -0
- data/src/com/zoho/crm/api/portals_meta/modules.rb +177 -0
- data/src/com/zoho/crm/api/portals_meta/related_lists.rb +63 -0
- data/src/com/zoho/crm/api/portals_meta/views.rb +120 -0
- data/src/com/zoho/crm/api/portals_meta/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/privacy_configurable_apps/apps.rb +63 -0
- data/src/com/zoho/crm/api/privacy_configurable_apps/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/privacy_preference/config.rb +101 -0
- data/src/com/zoho/crm/api/privacy_preference/option.rb +120 -0
- data/src/com/zoho/crm/api/privacy_preference/preference.rb +462 -0
- data/src/com/zoho/crm/api/privacy_preference/privacy_preference.rb +82 -0
- data/src/com/zoho/crm/api/privacy_preference/section.rb +139 -0
- data/src/com/zoho/crm/api/privacy_preference/tpt.rb +101 -0
- data/src/com/zoho/crm/api/privacy_preference/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/profiles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/profiles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/profiles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/profiles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/profiles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/profiles/category.rb +12 -0
- data/src/com/zoho/crm/api/profiles/category_module.rb +122 -0
- data/src/com/zoho/crm/api/profiles/category_others.rb +103 -0
- data/src/com/zoho/crm/api/profiles/default_view.rb +101 -0
- data/src/com/zoho/crm/api/profiles/info.rb +63 -0
- data/src/com/zoho/crm/api/profiles/minified_profile.rb +101 -0
- data/src/com/zoho/crm/api/profiles/permission_detail.rb +177 -0
- data/src/com/zoho/crm/api/profiles/profile.rb +369 -0
- data/src/com/zoho/crm/api/profiles/profiles_operations.rb +152 -0
- data/src/com/zoho/crm/api/profiles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/profiles/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/profiles/section.rb +82 -0
- data/src/com/zoho/crm/api/profiles/success_response.rb +125 -0
- data/src/com/zoho/crm/api/record/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/action_response.rb +12 -0
- data/src/com/zoho/crm/api/record/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/api_exception.rb +143 -0
- data/src/com/zoho/crm/api/record/body_wrapper.rb +158 -0
- data/src/com/zoho/crm/api/record/comment.rb +120 -0
- data/src/com/zoho/crm/api/record/consent.rb +307 -0
- data/src/com/zoho/crm/api/record/count_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/count_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/criteria.rb +137 -0
- data/src/com/zoho/crm/api/record/deleted_record.rb +159 -0
- data/src/com/zoho/crm/api/record/deleted_records_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record/download_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/duplicate_record.rb +103 -0
- data/src/com/zoho/crm/api/record/field.rb +2870 -0
- data/src/com/zoho/crm/api/record/file_body_wrapper.rb +68 -0
- data/src/com/zoho/crm/api/record/file_details.rb +139 -0
- data/src/com/zoho/crm/api/record/file_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/image_upload.rb +311 -0
- data/src/com/zoho/crm/api/record/info.rb +253 -0
- data/src/com/zoho/crm/api/record/line_item_product.rb +171 -0
- data/src/com/zoho/crm/api/record/line_tax.rb +139 -0
- data/src/com/zoho/crm/api/record/mass_update.rb +142 -0
- data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_action_response.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +158 -0
- data/src/com/zoho/crm/api/record/mass_update_response.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record/mass_update_success_response.rb +123 -0
- data/src/com/zoho/crm/api/record/mass_update_territory.rb +82 -0
- data/src/com/zoho/crm/api/record/multi_select_lookup.rb +101 -0
- data/src/com/zoho/crm/api/record/multi_select_picklist.rb +82 -0
- data/src/com/zoho/crm/api/record/options.rb +32 -0
- data/src/com/zoho/crm/api/record/participants.rb +222 -0
- data/src/com/zoho/crm/api/record/price_book.rb +137 -0
- data/src/com/zoho/crm/api/record/pricing_details.rb +188 -0
- data/src/com/zoho/crm/api/record/record.rb +211 -0
- data/src/com/zoho/crm/api/record/record_operations.rb +1045 -0
- data/src/com/zoho/crm/api/record/recurring_activity.rb +82 -0
- data/src/com/zoho/crm/api/record/remind_at.rb +63 -0
- data/src/com/zoho/crm/api/record/reminder.rb +101 -0
- data/src/com/zoho/crm/api/record/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/record/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record/success_response.rb +163 -0
- data/src/com/zoho/crm/api/record/tax.rb +82 -0
- data/src/com/zoho/crm/api/record/territory.rb +140 -0
- data/src/com/zoho/crm/api/record/time_range.rb +82 -0
- data/src/com/zoho/crm/api/record/widget.rb +82 -0
- data/src/com/zoho/crm/api/record/wizard.rb +82 -0
- data/src/com/zoho/crm/api/record_locking/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/record_locking/action_response.rb +12 -0
- data/src/com/zoho/crm/api/record_locking/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/record_locking/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/record_locking/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking/info.rb +253 -0
- data/src/com/zoho/crm/api/record_locking/lock_record.rb +63 -0
- data/src/com/zoho/crm/api/record_locking/locked_for_s.rb +101 -0
- data/src/com/zoho/crm/api/record_locking/record_lock.rb +257 -0
- data/src/com/zoho/crm/api/record_locking/record_locking_operations.rb +186 -0
- data/src/com/zoho/crm/api/record_locking/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/record_locking/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record_locking/success_response.rb +161 -0
- data/src/com/zoho/crm/api/record_locking_configuration/action_response.rb +12 -0
- data/src/com/zoho/crm/api/record_locking_configuration/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking_configuration/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/record_locking_configuration/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking_configuration/criteria.rb +136 -0
- data/src/com/zoho/crm/api/record_locking_configuration/dependee.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/field.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/lock_excluded_profile.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/locking_rules.rb +120 -0
- data/src/com/zoho/crm/api/record_locking_configuration/record_lock.rb +351 -0
- data/src/com/zoho/crm/api/record_locking_configuration/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record_locking_configuration/restricted_custom_button.rb +82 -0
- data/src/com/zoho/crm/api/record_locking_configuration/success_response.rb +123 -0
- data/src/com/zoho/crm/api/related_lists/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/related_lists/field.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/module_map.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/related_list.rb +386 -0
- data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +82 -0
- data/src/com/zoho/crm/api/related_lists/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/related_records/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_records/action_response.rb +12 -0
- data/src/com/zoho/crm/api/related_records/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/related_records/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/related_records/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/related_records/related_records_operations.rb +677 -0
- data/src/com/zoho/crm/api/related_records/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/related_records/response_wrapper.rb +86 -0
- data/src/com/zoho/crm/api/related_records/success_response.rb +123 -0
- data/src/com/zoho/crm/api/request_proxy.rb +17 -0
- data/src/com/zoho/crm/api/reschedule_history/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/action_response.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/reschedule_history/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/reschedule_history/appointment_name.rb +82 -0
- data/src/com/zoho/crm/api/reschedule_history/approval.rb +120 -0
- data/src/com/zoho/crm/api/reschedule_history/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/reschedule_history/info.rb +177 -0
- data/src/com/zoho/crm/api/reschedule_history/reschedule_history.rb +557 -0
- data/src/com/zoho/crm/api/reschedule_history/reschedule_history_operations.rb +177 -0
- data/src/com/zoho/crm/api/reschedule_history/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/reschedule_history/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/reschedule_history/success_response.rb +123 -0
- data/src/com/zoho/crm/api/reschedule_history/user.rb +101 -0
- data/src/com/zoho/crm/api/roles/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/roles/action_response.rb +12 -0
- data/src/com/zoho/crm/api/roles/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/roles/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/roles/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/roles/reporting_to.rb +82 -0
- data/src/com/zoho/crm/api/roles/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/roles/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/roles/role.rb +273 -0
- data/src/com/zoho/crm/api/roles/roles_operations.rb +150 -0
- data/src/com/zoho/crm/api/roles/success_response.rb +123 -0
- data/src/com/zoho/crm/api/scoring_rules/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/action_response.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/scoring_rules/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/scoring_rules/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/scoring_rules/criteria.rb +136 -0
- data/src/com/zoho/crm/api/scoring_rules/expected_field.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/field.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/field_rule.rb +101 -0
- data/src/com/zoho/crm/api/scoring_rules/info.rb +215 -0
- data/src/com/zoho/crm/api/scoring_rules/layout.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/layout_request_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/scoring_rules/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/scoring_rules/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/scoring_rules/role_request_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/scoring_rules/scoring_rule.rb +274 -0
- data/src/com/zoho/crm/api/scoring_rules/scoring_rules_operations.rb +332 -0
- data/src/com/zoho/crm/api/scoring_rules/signal.rb +82 -0
- data/src/com/zoho/crm/api/scoring_rules/signal_rule.rb +101 -0
- data/src/com/zoho/crm/api/scoring_rules/success_response.rb +125 -0
- data/src/com/zoho/crm/api/sdk_config.rb +15 -0
- data/src/com/zoho/crm/api/send_mail/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/action_response.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/send_mail/attachment.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/blocked_email_address.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/cc.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/data.rb +368 -0
- data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/from.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/in_reply_to.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/inventory_details.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/inventory_template.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/linked_module.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/linked_record.rb +101 -0
- data/src/com/zoho/crm/api/send_mail/owner.rb +82 -0
- data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +51 -0
- data/src/com/zoho/crm/api/send_mail/success_response.rb +123 -0
- data/src/com/zoho/crm/api/send_mail/template.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/to.rb +82 -0
- data/src/com/zoho/crm/api/service_preference/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/service_preference/action_response.rb +12 -0
- data/src/com/zoho/crm/api/service_preference/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/service_preference/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/service_preference/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/service_preference/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/service_preference/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/service_preference/service_preference.rb +63 -0
- data/src/com/zoho/crm/api/service_preference/service_preference_operations.rb +51 -0
- data/src/com/zoho/crm/api/service_preference/success_response.rb +123 -0
- data/src/com/zoho/crm/api/share_records/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/share_records/action_response.rb +12 -0
- data/src/com/zoho/crm/api/share_records/action_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/share_records/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/share_records/body_wrapper.rb +101 -0
- data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/share_records/delete_action_response.rb +12 -0
- data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/share_records/dependee.rb +82 -0
- data/src/com/zoho/crm/api/share_records/module.rb +101 -0
- data/src/com/zoho/crm/api/share_records/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/share_records/response_wrapper.rb +85 -0
- data/src/com/zoho/crm/api/share_records/share_record.rb +198 -0
- data/src/com/zoho/crm/api/share_records/share_records_operations.rb +130 -0
- data/src/com/zoho/crm/api/share_records/shared_through.rb +120 -0
- data/src/com/zoho/crm/api/share_records/success_response.rb +125 -0
- data/src/com/zoho/crm/api/shift_hours/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/shift_hours/action_response.rb +12 -0
- data/src/com/zoho/crm/api/shift_hours/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/shift_hours/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/shift_hours/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/shift_hours/break_custom_timing.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/break_hours.rb +139 -0
- data/src/com/zoho/crm/api/shift_hours/holidays.rb +120 -0
- data/src/com/zoho/crm/api/shift_hours/mandatory_details.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/shift_hours/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/shift_hours/role.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/shift_count.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/shift_custom_timing.rb +82 -0
- data/src/com/zoho/crm/api/shift_hours/shift_hours.rb +253 -0
- data/src/com/zoho/crm/api/shift_hours/shift_hours_operations.rb +166 -0
- data/src/com/zoho/crm/api/shift_hours/success_response.rb +123 -0
- data/src/com/zoho/crm/api/shift_hours/users.rb +158 -0
- data/src/com/zoho/crm/api/tags/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/tags/action_response.rb +12 -0
- data/src/com/zoho/crm/api/tags/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/tags/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/tags/associated_places.rb +82 -0
- data/src/com/zoho/crm/api/tags/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/count_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/tags/error_details.rb +82 -0
- data/src/com/zoho/crm/api/tags/existing_tag.rb +82 -0
- data/src/com/zoho/crm/api/tags/existing_tag_request_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/tags/info.rb +82 -0
- data/src/com/zoho/crm/api/tags/merge_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/new_tag_request_wrapper.rb +101 -0
- data/src/com/zoho/crm/api/tags/record_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/tags/record_action_response.rb +12 -0
- data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +122 -0
- data/src/com/zoho/crm/api/tags/record_detail_tag.rb +101 -0
- data/src/com/zoho/crm/api/tags/record_success_response.rb +123 -0
- data/src/com/zoho/crm/api/tags/resources.rb +101 -0
- data/src/com/zoho/crm/api/tags/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/tags/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/tags/success_response.rb +123 -0
- data/src/com/zoho/crm/api/tags/success_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/tags/tag.rb +179 -0
- data/src/com/zoho/crm/api/tags/tags_operations.rb +385 -0
- data/src/com/zoho/crm/api/taxes/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/taxes/action_response.rb +12 -0
- data/src/com/zoho/crm/api/taxes/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/taxes/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/taxes/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/taxes/expected_field.rb +82 -0
- data/src/com/zoho/crm/api/taxes/org_tax.rb +82 -0
- data/src/com/zoho/crm/api/taxes/preference.rb +82 -0
- data/src/com/zoho/crm/api/taxes/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/taxes/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/taxes/success_response.rb +123 -0
- data/src/com/zoho/crm/api/taxes/tax.rb +158 -0
- data/src/com/zoho/crm/api/taxes/taxes_operations.rb +70 -0
- data/src/com/zoho/crm/api/templates/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/templates/folder.rb +82 -0
- data/src/com/zoho/crm/api/templates/templates.rb +234 -0
- data/src/com/zoho/crm/api/templates/wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/territories/action_response.rb +12 -0
- data/src/com/zoho/crm/api/territories/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/territories/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/territories/associated_users_count.rb +82 -0
- data/src/com/zoho/crm/api/territories/associated_users_count_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/territories/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/criteria.rb +136 -0
- data/src/com/zoho/crm/api/territories/deleted_associated_territories.rb +121 -0
- data/src/com/zoho/crm/api/territories/deleted_associated_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/territories/field.rb +82 -0
- data/src/com/zoho/crm/api/territories/info.rb +120 -0
- data/src/com/zoho/crm/api/territories/manager.rb +82 -0
- data/src/com/zoho/crm/api/territories/minified_territory.rb +101 -0
- data/src/com/zoho/crm/api/territories/reporting_to.rb +82 -0
- data/src/com/zoho/crm/api/territories/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/territories/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/territories/success_response.rb +123 -0
- data/src/com/zoho/crm/api/territories/territories.rb +293 -0
- data/src/com/zoho/crm/api/territories/territories_operations.rb +283 -0
- data/src/com/zoho/crm/api/territories/transfer_body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/territories/transfer_territory.rb +101 -0
- data/src/com/zoho/crm/api/territory_users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/territory_users/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/territory_users/body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/territory_users/info.rb +120 -0
- data/src/com/zoho/crm/api/territory_users/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/territory_users/response_wrapper.rb +85 -0
- data/src/com/zoho/crm/api/territory_users/success_response.rb +123 -0
- data/src/com/zoho/crm/api/territory_users/territory_users_operations.rb +172 -0
- data/src/com/zoho/crm/api/timelines/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/timelines/automation_detail.rb +101 -0
- data/src/com/zoho/crm/api/timelines/field_history.rb +177 -0
- data/src/com/zoho/crm/api/timelines/field_history_value.rb +82 -0
- data/src/com/zoho/crm/api/timelines/info.rb +158 -0
- data/src/com/zoho/crm/api/timelines/module.rb +82 -0
- data/src/com/zoho/crm/api/timelines/name_id_structure.rb +82 -0
- data/src/com/zoho/crm/api/timelines/path_finder.rb +101 -0
- data/src/com/zoho/crm/api/timelines/picklist_detail.rb +158 -0
- data/src/com/zoho/crm/api/timelines/record.rb +101 -0
- data/src/com/zoho/crm/api/timelines/related_record.rb +101 -0
- data/src/com/zoho/crm/api/timelines/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/timelines/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/timelines/state.rb +120 -0
- data/src/com/zoho/crm/api/timelines/timeline.rb +253 -0
- data/src/com/zoho/crm/api/timelines/timelines_operations.rb +89 -0
- data/src/com/zoho/crm/api/unblock_email/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/unblock_email/action_response.rb +12 -0
- data/src/com/zoho/crm/api/unblock_email/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unblock_email/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/unblock_email/body_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/unblock_email/success_response.rb +122 -0
- data/src/com/zoho/crm/api/unblock_email/unblock_email_operations.rb +71 -0
- data/src/com/zoho/crm/api/unsubscribe_links/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/action_response.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unsubscribe_links/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/unsubscribe_links/associated_places.rb +101 -0
- data/src/com/zoho/crm/api/unsubscribe_links/association_details.rb +82 -0
- data/src/com/zoho/crm/api/unsubscribe_links/associations_response_handler.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/associations_response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unsubscribe_links/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/unsubscribe_links/detail.rb +63 -0
- data/src/com/zoho/crm/api/unsubscribe_links/module.rb +82 -0
- data/src/com/zoho/crm/api/unsubscribe_links/resource.rb +82 -0
- data/src/com/zoho/crm/api/unsubscribe_links/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/unsubscribe_links/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/unsubscribe_links/success_response.rb +123 -0
- data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links.rb +330 -0
- data/src/com/zoho/crm/api/unsubscribe_links/unsubscribe_links_operations.rb +149 -0
- data/src/com/zoho/crm/api/unsubscribe_links/user.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/user_groups/associated_user.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/associated_user_count.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/association_module.rb +64 -0
- data/src/com/zoho/crm/api/user_groups/association_response.rb +101 -0
- data/src/com/zoho/crm/api/user_groups/association_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/groups.rb +196 -0
- data/src/com/zoho/crm/api/user_groups/info.rb +120 -0
- data/src/com/zoho/crm/api/user_groups/jobs.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/jobs_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_groups/owner.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/resource.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_groups/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/source.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/sources.rb +121 -0
- data/src/com/zoho/crm/api/user_groups/sources_count.rb +120 -0
- data/src/com/zoho/crm/api/user_groups/sources_count_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_groups/sources_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_groups/success_response.rb +123 -0
- data/src/com/zoho/crm/api/user_groups/user_group.rb +82 -0
- data/src/com/zoho/crm/api/user_groups/user_groups_operations.rb +260 -0
- data/src/com/zoho/crm/api/user_groups/users.rb +101 -0
- data/src/com/zoho/crm/api/user_signature.rb +15 -0
- data/src/com/zoho/crm/api/user_type_users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_type_users/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/user_type_users/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/user_type_users/info.rb +139 -0
- data/src/com/zoho/crm/api/user_type_users/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/user_type_users/status_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/status_action_response.rb +12 -0
- data/src/com/zoho/crm/api/user_type_users/status_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/user_type_users/success_response.rb +125 -0
- data/src/com/zoho/crm/api/user_type_users/user_type_users_operations.rb +164 -0
- data/src/com/zoho/crm/api/user_type_users/users.rb +196 -0
- data/src/com/zoho/crm/api/users/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/users/associated_group.rb +177 -0
- data/src/com/zoho/crm/api/users/associated_groups_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users/customize_info.rb +146 -0
- data/src/com/zoho/crm/api/users/info.rb +120 -0
- data/src/com/zoho/crm/api/users/minified_user.rb +101 -0
- data/src/com/zoho/crm/api/users/owner.rb +120 -0
- data/src/com/zoho/crm/api/users/profile.rb +82 -0
- data/src/com/zoho/crm/api/users/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users/role.rb +82 -0
- data/src/com/zoho/crm/api/users/shift.rb +82 -0
- data/src/com/zoho/crm/api/users/success_response.rb +123 -0
- data/src/com/zoho/crm/api/users/tab.rb +83 -0
- data/src/com/zoho/crm/api/users/theme.rb +159 -0
- data/src/com/zoho/crm/api/users/users.rb +1086 -0
- data/src/com/zoho/crm/api/users/users_operations.rb +209 -0
- data/src/com/zoho/crm/api/users_territories/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/action_wrappe.rb +65 -0
- data/src/com/zoho/crm/api/users_territories/action_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users_territories/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/users_territories/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_territories/bulk_validation.rb +141 -0
- data/src/com/zoho/crm/api/users_territories/info.rb +120 -0
- data/src/com/zoho/crm/api/users_territories/manager.rb +82 -0
- data/src/com/zoho/crm/api/users_territories/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users_territories/success_response.rb +125 -0
- data/src/com/zoho/crm/api/users_territories/territory.rb +120 -0
- data/src/com/zoho/crm/api/users_territories/transfer_action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/transfer_action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/transfer_action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_territories/transfer_and_delink.rb +82 -0
- data/src/com/zoho/crm/api/users_territories/transfer_to_user.rb +63 -0
- data/src/com/zoho/crm/api/users_territories/transfer_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_territories/users_territories_operations.rb +169 -0
- data/src/com/zoho/crm/api/users_territories/validation.rb +103 -0
- data/src/com/zoho/crm/api/users_territories/validation_group.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/validation_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_territories/validation_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_transfer_delete/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_transfer_delete/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_transfer_delete/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_transfer_delete/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/users_transfer_delete/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_transfer_delete/move_subordinate.rb +63 -0
- data/src/com/zoho/crm/api/users_transfer_delete/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_transfer_delete/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_transfer_delete/status.rb +63 -0
- data/src/com/zoho/crm/api/users_transfer_delete/success_response.rb +123 -0
- data/src/com/zoho/crm/api/users_transfer_delete/transfer.rb +120 -0
- data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete.rb +101 -0
- data/src/com/zoho/crm/api/users_transfer_delete/transfer_and_delete_by_id.rb +82 -0
- data/src/com/zoho/crm/api/users_transfer_delete/users_transfer_delete_operations.rb +92 -0
- data/src/com/zoho/crm/api/users_unavailability/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_unavailability/action_response.rb +12 -0
- data/src/com/zoho/crm/api/users_unavailability/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/users_unavailability/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/users_unavailability/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users_unavailability/info.rb +120 -0
- data/src/com/zoho/crm/api/users_unavailability/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/users_unavailability/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/users_unavailability/success_response.rb +123 -0
- data/src/com/zoho/crm/api/users_unavailability/user.rb +101 -0
- data/src/com/zoho/crm/api/users_unavailability/users_unavailability.rb +234 -0
- data/src/com/zoho/crm/api/users_unavailability/users_unavailability_operations.rb +181 -0
- data/src/com/zoho/crm/api/util/api_http_connector.rb +125 -0
- data/src/com/zoho/crm/api/util/api_response.rb +18 -0
- data/src/com/zoho/crm/api/util/choice.rb +11 -0
- data/src/com/zoho/crm/api/util/common_api_handler.rb +240 -0
- data/src/com/zoho/crm/api/util/constants.rb +755 -0
- data/src/com/zoho/crm/api/util/converter.rb +297 -0
- data/src/com/zoho/crm/api/util/data_type_converter.rb +194 -0
- data/src/com/zoho/crm/api/util/downloader.rb +86 -0
- data/src/com/zoho/crm/api/util/form_data_converter.rb +159 -0
- data/src/com/zoho/crm/api/util/header_param_validator.rb +86 -0
- data/src/com/zoho/crm/api/util/json_converter.rb +772 -0
- data/src/com/zoho/crm/api/util/model.rb +7 -0
- data/src/com/zoho/crm/api/util/module_fields_handler.rb +91 -0
- data/src/com/zoho/crm/api/util/stream_wrapper.rb +39 -0
- data/src/com/zoho/crm/api/util/utility.rb +1000 -0
- data/src/com/zoho/crm/api/variable_groups/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/variable_groups/minified_variable_group.rb +82 -0
- data/src/com/zoho/crm/api/variable_groups/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/variable_groups/variable_group.rb +158 -0
- data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +68 -0
- data/src/com/zoho/crm/api/variables/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/variables/action_response.rb +12 -0
- data/src/com/zoho/crm/api/variables/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/variables/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/variables/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variables/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/variables/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/variables/success_response.rb +123 -0
- data/src/com/zoho/crm/api/variables/variable.rb +213 -0
- data/src/com/zoho/crm/api/variables/variable_group.rb +101 -0
- data/src/com/zoho/crm/api/variables/variables_operations.rb +267 -0
- data/src/com/zoho/crm/api/webforms/abtesting.rb +120 -0
- data/src/com/zoho/crm/api/webforms/acknowledge_visitor.rb +82 -0
- data/src/com/zoho/crm/api/webforms/acknowledge_visitors.rb +101 -0
- data/src/com/zoho/crm/api/webforms/action_handler.rb +12 -0
- data/src/com/zoho/crm/api/webforms/action_response.rb +12 -0
- data/src/com/zoho/crm/api/webforms/action_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/webforms/analytics_data.rb +139 -0
- data/src/com/zoho/crm/api/webforms/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/webforms/assignment_rule.rb +82 -0
- data/src/com/zoho/crm/api/webforms/auto_response_rule.rb +63 -0
- data/src/com/zoho/crm/api/webforms/body_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/webforms/button_attributes.rb +82 -0
- data/src/com/zoho/crm/api/webforms/fields.rb +348 -0
- data/src/com/zoho/crm/api/webforms/font_attributes.rb +101 -0
- data/src/com/zoho/crm/api/webforms/form_attributes.rb +139 -0
- data/src/com/zoho/crm/api/webforms/from_address.rb +82 -0
- data/src/com/zoho/crm/api/webforms/layout.rb +82 -0
- data/src/com/zoho/crm/api/webforms/module.rb +101 -0
- data/src/com/zoho/crm/api/webforms/owner.rb +82 -0
- data/src/com/zoho/crm/api/webforms/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/webforms/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/webforms/spam_controll.rb +82 -0
- data/src/com/zoho/crm/api/webforms/success_response.rb +123 -0
- data/src/com/zoho/crm/api/webforms/suggestion.rb +82 -0
- data/src/com/zoho/crm/api/webforms/tags.rb +82 -0
- data/src/com/zoho/crm/api/webforms/user.rb +82 -0
- data/src/com/zoho/crm/api/webforms/web_form.rb +804 -0
- data/src/com/zoho/crm/api/webforms/webforms_operations.rb +190 -0
- data/src/com/zoho/crm/api/wizards/actions.rb +176 -0
- data/src/com/zoho/crm/api/wizards/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/wizards/button.rb +326 -0
- data/src/com/zoho/crm/api/wizards/button_background.rb +63 -0
- data/src/com/zoho/crm/api/wizards/chart_data.rb +139 -0
- data/src/com/zoho/crm/api/wizards/conditional_rules.rb +121 -0
- data/src/com/zoho/crm/api/wizards/connection.rb +101 -0
- data/src/com/zoho/crm/api/wizards/container.rb +121 -0
- data/src/com/zoho/crm/api/wizards/criteria.rb +136 -0
- data/src/com/zoho/crm/api/wizards/element.rb +82 -0
- data/src/com/zoho/crm/api/wizards/exempted_portal_user_type.rb +63 -0
- data/src/com/zoho/crm/api/wizards/field.rb +82 -0
- data/src/com/zoho/crm/api/wizards/message.rb +82 -0
- data/src/com/zoho/crm/api/wizards/node.rb +120 -0
- data/src/com/zoho/crm/api/wizards/portal_user_type.rb +121 -0
- data/src/com/zoho/crm/api/wizards/resource.rb +82 -0
- data/src/com/zoho/crm/api/wizards/response_handler.rb +12 -0
- data/src/com/zoho/crm/api/wizards/response_wrapper.rb +65 -0
- data/src/com/zoho/crm/api/wizards/screen.rb +158 -0
- data/src/com/zoho/crm/api/wizards/segment.rb +197 -0
- data/src/com/zoho/crm/api/wizards/transition.rb +82 -0
- data/src/com/zoho/crm/api/wizards/wizard.rb +313 -0
- data/src/com/zoho/crm/api/wizards/wizards_operations.rb +63 -0
- data/src/resources/json_details.json +1 -0
- data/src/version.rb +3 -0
- metadata +1461 -0
@@ -0,0 +1,804 @@
|
|
1
|
+
require_relative '../util/model'
|
2
|
+
|
3
|
+
module ZOHOCRMSDK
|
4
|
+
module Webforms
|
5
|
+
class WebForm
|
6
|
+
include Util::Model
|
7
|
+
|
8
|
+
# Creates an instance of WebForm
|
9
|
+
def initialize
|
10
|
+
@google_site = nil
|
11
|
+
@encrypted_form_id = nil
|
12
|
+
@owner = nil
|
13
|
+
@user_type = nil
|
14
|
+
@acknowledge_visitor = nil
|
15
|
+
@button_attributes = nil
|
16
|
+
@encrypted_zgid = nil
|
17
|
+
@created_time = nil
|
18
|
+
@analytics_data = nil
|
19
|
+
@module_1 = nil
|
20
|
+
@encrypted_module = nil
|
21
|
+
@active = nil
|
22
|
+
@adword_enabled = nil
|
23
|
+
@notify_owner = nil
|
24
|
+
@created_by = nil
|
25
|
+
@form_attributes = nil
|
26
|
+
@location_url = nil
|
27
|
+
@landing_url = nil
|
28
|
+
@double_optin_enabled = nil
|
29
|
+
@layout = nil
|
30
|
+
@tags = nil
|
31
|
+
@approval_request = nil
|
32
|
+
@type = nil
|
33
|
+
@create_contact = nil
|
34
|
+
@assignment_rule = nil
|
35
|
+
@name = nil
|
36
|
+
@id = nil
|
37
|
+
@spam_control = nil
|
38
|
+
@fields = nil
|
39
|
+
@form_fields = nil
|
40
|
+
@abtesting = nil
|
41
|
+
@visitor_tracking = nil
|
42
|
+
@last_submitted_time = nil
|
43
|
+
@action_on_submit = nil
|
44
|
+
@action_value = nil
|
45
|
+
@suggestion = nil
|
46
|
+
@embed_code = nil
|
47
|
+
@code_formats = nil
|
48
|
+
@source_code = nil
|
49
|
+
@iframe_code = nil
|
50
|
+
@key_modified = Hash.new
|
51
|
+
end
|
52
|
+
|
53
|
+
# The method to get the google_site
|
54
|
+
# @return A String value
|
55
|
+
|
56
|
+
def google_site
|
57
|
+
@google_site
|
58
|
+
end
|
59
|
+
|
60
|
+
# The method to set the value to google_site
|
61
|
+
# @param google_site [String] A String
|
62
|
+
|
63
|
+
def google_site=(google_site)
|
64
|
+
if google_site!=nil and !google_site.is_a? String
|
65
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: google_site EXPECTED TYPE: String', nil, nil)
|
66
|
+
end
|
67
|
+
@google_site = google_site
|
68
|
+
@key_modified['google_site'] = 1
|
69
|
+
end
|
70
|
+
|
71
|
+
# The method to get the encrypted_form_id
|
72
|
+
# @return A String value
|
73
|
+
|
74
|
+
def encrypted_form_id
|
75
|
+
@encrypted_form_id
|
76
|
+
end
|
77
|
+
|
78
|
+
# The method to set the value to encrypted_form_id
|
79
|
+
# @param encrypted_form_id [String] A String
|
80
|
+
|
81
|
+
def encrypted_form_id=(encrypted_form_id)
|
82
|
+
if encrypted_form_id!=nil and !encrypted_form_id.is_a? String
|
83
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: encrypted_form_id EXPECTED TYPE: String', nil, nil)
|
84
|
+
end
|
85
|
+
@encrypted_form_id = encrypted_form_id
|
86
|
+
@key_modified['encrypted_form_id'] = 1
|
87
|
+
end
|
88
|
+
|
89
|
+
# The method to get the owner
|
90
|
+
# @return An instance of Owner
|
91
|
+
|
92
|
+
def owner
|
93
|
+
@owner
|
94
|
+
end
|
95
|
+
|
96
|
+
# The method to set the value to owner
|
97
|
+
# @param owner [Owner] An instance of Owner
|
98
|
+
|
99
|
+
def owner=(owner)
|
100
|
+
if owner!=nil and !owner.is_a? Owner
|
101
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: owner EXPECTED TYPE: Owner', nil, nil)
|
102
|
+
end
|
103
|
+
@owner = owner
|
104
|
+
@key_modified['owner'] = 1
|
105
|
+
end
|
106
|
+
|
107
|
+
# The method to get the user_type
|
108
|
+
# @return An instance of User
|
109
|
+
|
110
|
+
def user_type
|
111
|
+
@user_type
|
112
|
+
end
|
113
|
+
|
114
|
+
# The method to set the value to user_type
|
115
|
+
# @param user_type [User] An instance of User
|
116
|
+
|
117
|
+
def user_type=(user_type)
|
118
|
+
if user_type!=nil and !user_type.is_a? User
|
119
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: user_type EXPECTED TYPE: User', nil, nil)
|
120
|
+
end
|
121
|
+
@user_type = user_type
|
122
|
+
@key_modified['user_type'] = 1
|
123
|
+
end
|
124
|
+
|
125
|
+
# The method to get the acknowledge_visitor
|
126
|
+
# @return An instance of AcknowledgeVisitors
|
127
|
+
|
128
|
+
def acknowledge_visitor
|
129
|
+
@acknowledge_visitor
|
130
|
+
end
|
131
|
+
|
132
|
+
# The method to set the value to acknowledge_visitor
|
133
|
+
# @param acknowledge_visitor [AcknowledgeVisitors] An instance of AcknowledgeVisitors
|
134
|
+
|
135
|
+
def acknowledge_visitor=(acknowledge_visitor)
|
136
|
+
if acknowledge_visitor!=nil and !acknowledge_visitor.is_a? AcknowledgeVisitors
|
137
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: acknowledge_visitor EXPECTED TYPE: AcknowledgeVisitors', nil, nil)
|
138
|
+
end
|
139
|
+
@acknowledge_visitor = acknowledge_visitor
|
140
|
+
@key_modified['acknowledge_visitor'] = 1
|
141
|
+
end
|
142
|
+
|
143
|
+
# The method to get the button_attributes
|
144
|
+
# @return An instance of Array
|
145
|
+
|
146
|
+
def button_attributes
|
147
|
+
@button_attributes
|
148
|
+
end
|
149
|
+
|
150
|
+
# The method to set the value to button_attributes
|
151
|
+
# @param button_attributes [Array] An instance of Array
|
152
|
+
|
153
|
+
def button_attributes=(button_attributes)
|
154
|
+
if button_attributes!=nil and !button_attributes.is_a? Array
|
155
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: button_attributes EXPECTED TYPE: Array', nil, nil)
|
156
|
+
end
|
157
|
+
@button_attributes = button_attributes
|
158
|
+
@key_modified['button_attributes'] = 1
|
159
|
+
end
|
160
|
+
|
161
|
+
# The method to get the encrypted_zgid
|
162
|
+
# @return A String value
|
163
|
+
|
164
|
+
def encrypted_zgid
|
165
|
+
@encrypted_zgid
|
166
|
+
end
|
167
|
+
|
168
|
+
# The method to set the value to encrypted_zgid
|
169
|
+
# @param encrypted_zgid [String] A String
|
170
|
+
|
171
|
+
def encrypted_zgid=(encrypted_zgid)
|
172
|
+
if encrypted_zgid!=nil and !encrypted_zgid.is_a? String
|
173
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: encrypted_zgid EXPECTED TYPE: String', nil, nil)
|
174
|
+
end
|
175
|
+
@encrypted_zgid = encrypted_zgid
|
176
|
+
@key_modified['encrypted_zgid'] = 1
|
177
|
+
end
|
178
|
+
|
179
|
+
# The method to get the created_time
|
180
|
+
# @return An instance of DateTime
|
181
|
+
|
182
|
+
def created_time
|
183
|
+
@created_time
|
184
|
+
end
|
185
|
+
|
186
|
+
# The method to set the value to created_time
|
187
|
+
# @param created_time [DateTime] An instance of DateTime
|
188
|
+
|
189
|
+
def created_time=(created_time)
|
190
|
+
if created_time!=nil and !created_time.is_a? DateTime
|
191
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_time EXPECTED TYPE: DateTime', nil, nil)
|
192
|
+
end
|
193
|
+
@created_time = created_time
|
194
|
+
@key_modified['created_time'] = 1
|
195
|
+
end
|
196
|
+
|
197
|
+
# The method to get the analytics_data
|
198
|
+
# @return An instance of AnalyticsData
|
199
|
+
|
200
|
+
def analytics_data
|
201
|
+
@analytics_data
|
202
|
+
end
|
203
|
+
|
204
|
+
# The method to set the value to analytics_data
|
205
|
+
# @param analytics_data [AnalyticsData] An instance of AnalyticsData
|
206
|
+
|
207
|
+
def analytics_data=(analytics_data)
|
208
|
+
if analytics_data!=nil and !analytics_data.is_a? AnalyticsData
|
209
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: analytics_data EXPECTED TYPE: AnalyticsData', nil, nil)
|
210
|
+
end
|
211
|
+
@analytics_data = analytics_data
|
212
|
+
@key_modified['analytics_data'] = 1
|
213
|
+
end
|
214
|
+
|
215
|
+
# The method to get the module
|
216
|
+
# @return An instance of Module
|
217
|
+
|
218
|
+
def module
|
219
|
+
@module_1
|
220
|
+
end
|
221
|
+
|
222
|
+
# The method to set the value to module
|
223
|
+
# @param module_1 [Module] An instance of Module
|
224
|
+
|
225
|
+
def module=(module_1)
|
226
|
+
if module_1!=nil and !module_1.is_a? Module
|
227
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: module_1 EXPECTED TYPE: Module', nil, nil)
|
228
|
+
end
|
229
|
+
@module_1 = module_1
|
230
|
+
@key_modified['module'] = 1
|
231
|
+
end
|
232
|
+
|
233
|
+
# The method to get the encrypted_module
|
234
|
+
# @return A String value
|
235
|
+
|
236
|
+
def encrypted_module
|
237
|
+
@encrypted_module
|
238
|
+
end
|
239
|
+
|
240
|
+
# The method to set the value to encrypted_module
|
241
|
+
# @param encrypted_module [String] A String
|
242
|
+
|
243
|
+
def encrypted_module=(encrypted_module)
|
244
|
+
if encrypted_module!=nil and !encrypted_module.is_a? String
|
245
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: encrypted_module EXPECTED TYPE: String', nil, nil)
|
246
|
+
end
|
247
|
+
@encrypted_module = encrypted_module
|
248
|
+
@key_modified['encrypted_module'] = 1
|
249
|
+
end
|
250
|
+
|
251
|
+
# The method to get the active
|
252
|
+
# @return A Boolean value
|
253
|
+
|
254
|
+
def active
|
255
|
+
@active
|
256
|
+
end
|
257
|
+
|
258
|
+
# The method to set the value to active
|
259
|
+
# @param active [Boolean] A Boolean
|
260
|
+
|
261
|
+
def active=(active)
|
262
|
+
if active!=nil and ! [true, false].include?active
|
263
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: active EXPECTED TYPE: Boolean', nil, nil)
|
264
|
+
end
|
265
|
+
@active = active
|
266
|
+
@key_modified['active'] = 1
|
267
|
+
end
|
268
|
+
|
269
|
+
# The method to get the adword_enabled
|
270
|
+
# @return A Boolean value
|
271
|
+
|
272
|
+
def adword_enabled
|
273
|
+
@adword_enabled
|
274
|
+
end
|
275
|
+
|
276
|
+
# The method to set the value to adword_enabled
|
277
|
+
# @param adword_enabled [Boolean] A Boolean
|
278
|
+
|
279
|
+
def adword_enabled=(adword_enabled)
|
280
|
+
if adword_enabled!=nil and ! [true, false].include?adword_enabled
|
281
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: adword_enabled EXPECTED TYPE: Boolean', nil, nil)
|
282
|
+
end
|
283
|
+
@adword_enabled = adword_enabled
|
284
|
+
@key_modified['adword_enabled'] = 1
|
285
|
+
end
|
286
|
+
|
287
|
+
# The method to get the notify_owner
|
288
|
+
# @return An instance of Owner
|
289
|
+
|
290
|
+
def notify_owner
|
291
|
+
@notify_owner
|
292
|
+
end
|
293
|
+
|
294
|
+
# The method to set the value to notify_owner
|
295
|
+
# @param notify_owner [Owner] An instance of Owner
|
296
|
+
|
297
|
+
def notify_owner=(notify_owner)
|
298
|
+
if notify_owner!=nil and !notify_owner.is_a? Owner
|
299
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: notify_owner EXPECTED TYPE: Owner', nil, nil)
|
300
|
+
end
|
301
|
+
@notify_owner = notify_owner
|
302
|
+
@key_modified['notify_owner'] = 1
|
303
|
+
end
|
304
|
+
|
305
|
+
# The method to get the created_by
|
306
|
+
# @return An instance of User
|
307
|
+
|
308
|
+
def created_by
|
309
|
+
@created_by
|
310
|
+
end
|
311
|
+
|
312
|
+
# The method to set the value to created_by
|
313
|
+
# @param created_by [User] An instance of User
|
314
|
+
|
315
|
+
def created_by=(created_by)
|
316
|
+
if created_by!=nil and !created_by.is_a? User
|
317
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_by EXPECTED TYPE: User', nil, nil)
|
318
|
+
end
|
319
|
+
@created_by = created_by
|
320
|
+
@key_modified['created_by'] = 1
|
321
|
+
end
|
322
|
+
|
323
|
+
# The method to get the form_attributes
|
324
|
+
# @return An instance of FormAttributes
|
325
|
+
|
326
|
+
def form_attributes
|
327
|
+
@form_attributes
|
328
|
+
end
|
329
|
+
|
330
|
+
# The method to set the value to form_attributes
|
331
|
+
# @param form_attributes [FormAttributes] An instance of FormAttributes
|
332
|
+
|
333
|
+
def form_attributes=(form_attributes)
|
334
|
+
if form_attributes!=nil and !form_attributes.is_a? FormAttributes
|
335
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: form_attributes EXPECTED TYPE: FormAttributes', nil, nil)
|
336
|
+
end
|
337
|
+
@form_attributes = form_attributes
|
338
|
+
@key_modified['form_attributes'] = 1
|
339
|
+
end
|
340
|
+
|
341
|
+
# The method to get the location_url
|
342
|
+
# @return An instance of Array
|
343
|
+
|
344
|
+
def location_url
|
345
|
+
@location_url
|
346
|
+
end
|
347
|
+
|
348
|
+
# The method to set the value to location_url
|
349
|
+
# @param location_url [Array] An instance of Array
|
350
|
+
|
351
|
+
def location_url=(location_url)
|
352
|
+
if location_url!=nil and !location_url.is_a? Array
|
353
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: location_url EXPECTED TYPE: Array', nil, nil)
|
354
|
+
end
|
355
|
+
@location_url = location_url
|
356
|
+
@key_modified['location_url'] = 1
|
357
|
+
end
|
358
|
+
|
359
|
+
# The method to get the landing_url
|
360
|
+
# @return A String value
|
361
|
+
|
362
|
+
def landing_url
|
363
|
+
@landing_url
|
364
|
+
end
|
365
|
+
|
366
|
+
# The method to set the value to landing_url
|
367
|
+
# @param landing_url [String] A String
|
368
|
+
|
369
|
+
def landing_url=(landing_url)
|
370
|
+
if landing_url!=nil and !landing_url.is_a? String
|
371
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: landing_url EXPECTED TYPE: String', nil, nil)
|
372
|
+
end
|
373
|
+
@landing_url = landing_url
|
374
|
+
@key_modified['landing_url'] = 1
|
375
|
+
end
|
376
|
+
|
377
|
+
# The method to get the double_optin_enabled
|
378
|
+
# @return A Boolean value
|
379
|
+
|
380
|
+
def double_optin_enabled
|
381
|
+
@double_optin_enabled
|
382
|
+
end
|
383
|
+
|
384
|
+
# The method to set the value to double_optin_enabled
|
385
|
+
# @param double_optin_enabled [Boolean] A Boolean
|
386
|
+
|
387
|
+
def double_optin_enabled=(double_optin_enabled)
|
388
|
+
if double_optin_enabled!=nil and ! [true, false].include?double_optin_enabled
|
389
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: double_optin_enabled EXPECTED TYPE: Boolean', nil, nil)
|
390
|
+
end
|
391
|
+
@double_optin_enabled = double_optin_enabled
|
392
|
+
@key_modified['double_optin_enabled'] = 1
|
393
|
+
end
|
394
|
+
|
395
|
+
# The method to get the layout
|
396
|
+
# @return An instance of Layout
|
397
|
+
|
398
|
+
def layout
|
399
|
+
@layout
|
400
|
+
end
|
401
|
+
|
402
|
+
# The method to set the value to layout
|
403
|
+
# @param layout [Layout] An instance of Layout
|
404
|
+
|
405
|
+
def layout=(layout)
|
406
|
+
if layout!=nil and !layout.is_a? Layout
|
407
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: layout EXPECTED TYPE: Layout', nil, nil)
|
408
|
+
end
|
409
|
+
@layout = layout
|
410
|
+
@key_modified['layout'] = 1
|
411
|
+
end
|
412
|
+
|
413
|
+
# The method to get the tags
|
414
|
+
# @return An instance of Array
|
415
|
+
|
416
|
+
def tags
|
417
|
+
@tags
|
418
|
+
end
|
419
|
+
|
420
|
+
# The method to set the value to tags
|
421
|
+
# @param tags [Array] An instance of Array
|
422
|
+
|
423
|
+
def tags=(tags)
|
424
|
+
if tags!=nil and !tags.is_a? Array
|
425
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: tags EXPECTED TYPE: Array', nil, nil)
|
426
|
+
end
|
427
|
+
@tags = tags
|
428
|
+
@key_modified['tags'] = 1
|
429
|
+
end
|
430
|
+
|
431
|
+
# The method to get the approval_request
|
432
|
+
# @return A Boolean value
|
433
|
+
|
434
|
+
def approval_request
|
435
|
+
@approval_request
|
436
|
+
end
|
437
|
+
|
438
|
+
# The method to set the value to approval_request
|
439
|
+
# @param approval_request [Boolean] A Boolean
|
440
|
+
|
441
|
+
def approval_request=(approval_request)
|
442
|
+
if approval_request!=nil and ! [true, false].include?approval_request
|
443
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: approval_request EXPECTED TYPE: Boolean', nil, nil)
|
444
|
+
end
|
445
|
+
@approval_request = approval_request
|
446
|
+
@key_modified['approval_request'] = 1
|
447
|
+
end
|
448
|
+
|
449
|
+
# The method to get the type
|
450
|
+
# @return A String value
|
451
|
+
|
452
|
+
def type
|
453
|
+
@type
|
454
|
+
end
|
455
|
+
|
456
|
+
# The method to set the value to type
|
457
|
+
# @param type [String] A String
|
458
|
+
|
459
|
+
def type=(type)
|
460
|
+
if type!=nil and !type.is_a? String
|
461
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: type EXPECTED TYPE: String', nil, nil)
|
462
|
+
end
|
463
|
+
@type = type
|
464
|
+
@key_modified['type'] = 1
|
465
|
+
end
|
466
|
+
|
467
|
+
# The method to get the create_contact
|
468
|
+
# @return A Boolean value
|
469
|
+
|
470
|
+
def create_contact
|
471
|
+
@create_contact
|
472
|
+
end
|
473
|
+
|
474
|
+
# The method to set the value to create_contact
|
475
|
+
# @param create_contact [Boolean] A Boolean
|
476
|
+
|
477
|
+
def create_contact=(create_contact)
|
478
|
+
if create_contact!=nil and ! [true, false].include?create_contact
|
479
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: create_contact EXPECTED TYPE: Boolean', nil, nil)
|
480
|
+
end
|
481
|
+
@create_contact = create_contact
|
482
|
+
@key_modified['create_contact'] = 1
|
483
|
+
end
|
484
|
+
|
485
|
+
# The method to get the assignment_rule
|
486
|
+
# @return An instance of AssignmentRule
|
487
|
+
|
488
|
+
def assignment_rule
|
489
|
+
@assignment_rule
|
490
|
+
end
|
491
|
+
|
492
|
+
# The method to set the value to assignment_rule
|
493
|
+
# @param assignment_rule [AssignmentRule] An instance of AssignmentRule
|
494
|
+
|
495
|
+
def assignment_rule=(assignment_rule)
|
496
|
+
if assignment_rule!=nil and !assignment_rule.is_a? AssignmentRule
|
497
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: assignment_rule EXPECTED TYPE: AssignmentRule', nil, nil)
|
498
|
+
end
|
499
|
+
@assignment_rule = assignment_rule
|
500
|
+
@key_modified['assignment_rule'] = 1
|
501
|
+
end
|
502
|
+
|
503
|
+
# The method to get the name
|
504
|
+
# @return A String value
|
505
|
+
|
506
|
+
def name
|
507
|
+
@name
|
508
|
+
end
|
509
|
+
|
510
|
+
# The method to set the value to name
|
511
|
+
# @param name [String] A String
|
512
|
+
|
513
|
+
def name=(name)
|
514
|
+
if name!=nil and !name.is_a? String
|
515
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: name EXPECTED TYPE: String', nil, nil)
|
516
|
+
end
|
517
|
+
@name = name
|
518
|
+
@key_modified['name'] = 1
|
519
|
+
end
|
520
|
+
|
521
|
+
# The method to get the id
|
522
|
+
# @return A Integer value
|
523
|
+
|
524
|
+
def id
|
525
|
+
@id
|
526
|
+
end
|
527
|
+
|
528
|
+
# The method to set the value to id
|
529
|
+
# @param id [Integer] A Integer
|
530
|
+
|
531
|
+
def id=(id)
|
532
|
+
if id!=nil and !id.is_a? Integer
|
533
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
|
534
|
+
end
|
535
|
+
@id = id
|
536
|
+
@key_modified['id'] = 1
|
537
|
+
end
|
538
|
+
|
539
|
+
# The method to get the spam_control
|
540
|
+
# @return An instance of SpamControll
|
541
|
+
|
542
|
+
def spam_control
|
543
|
+
@spam_control
|
544
|
+
end
|
545
|
+
|
546
|
+
# The method to set the value to spam_control
|
547
|
+
# @param spam_control [SpamControll] An instance of SpamControll
|
548
|
+
|
549
|
+
def spam_control=(spam_control)
|
550
|
+
if spam_control!=nil and !spam_control.is_a? SpamControll
|
551
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: spam_control EXPECTED TYPE: SpamControll', nil, nil)
|
552
|
+
end
|
553
|
+
@spam_control = spam_control
|
554
|
+
@key_modified['spam_control'] = 1
|
555
|
+
end
|
556
|
+
|
557
|
+
# The method to get the fields
|
558
|
+
# @return An instance of Array
|
559
|
+
|
560
|
+
def fields
|
561
|
+
@fields
|
562
|
+
end
|
563
|
+
|
564
|
+
# The method to set the value to fields
|
565
|
+
# @param fields [Array] An instance of Array
|
566
|
+
|
567
|
+
def fields=(fields)
|
568
|
+
if fields!=nil and !fields.is_a? Array
|
569
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: fields EXPECTED TYPE: Array', nil, nil)
|
570
|
+
end
|
571
|
+
@fields = fields
|
572
|
+
@key_modified['fields'] = 1
|
573
|
+
end
|
574
|
+
|
575
|
+
# The method to get the form_fields
|
576
|
+
# @return An instance of Array
|
577
|
+
|
578
|
+
def form_fields
|
579
|
+
@form_fields
|
580
|
+
end
|
581
|
+
|
582
|
+
# The method to set the value to form_fields
|
583
|
+
# @param form_fields [Array] An instance of Array
|
584
|
+
|
585
|
+
def form_fields=(form_fields)
|
586
|
+
if form_fields!=nil and !form_fields.is_a? Array
|
587
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: form_fields EXPECTED TYPE: Array', nil, nil)
|
588
|
+
end
|
589
|
+
@form_fields = form_fields
|
590
|
+
@key_modified['form_fields'] = 1
|
591
|
+
end
|
592
|
+
|
593
|
+
# The method to get the abtesting
|
594
|
+
# @return An instance of Array
|
595
|
+
|
596
|
+
def abtesting
|
597
|
+
@abtesting
|
598
|
+
end
|
599
|
+
|
600
|
+
# The method to set the value to abtesting
|
601
|
+
# @param abtesting [Array] An instance of Array
|
602
|
+
|
603
|
+
def abtesting=(abtesting)
|
604
|
+
if abtesting!=nil and !abtesting.is_a? Array
|
605
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: abtesting EXPECTED TYPE: Array', nil, nil)
|
606
|
+
end
|
607
|
+
@abtesting = abtesting
|
608
|
+
@key_modified['abtesting'] = 1
|
609
|
+
end
|
610
|
+
|
611
|
+
# The method to get the visitor_tracking
|
612
|
+
# @return A String value
|
613
|
+
|
614
|
+
def visitor_tracking
|
615
|
+
@visitor_tracking
|
616
|
+
end
|
617
|
+
|
618
|
+
# The method to set the value to visitor_tracking
|
619
|
+
# @param visitor_tracking [String] A String
|
620
|
+
|
621
|
+
def visitor_tracking=(visitor_tracking)
|
622
|
+
if visitor_tracking!=nil and !visitor_tracking.is_a? String
|
623
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visitor_tracking EXPECTED TYPE: String', nil, nil)
|
624
|
+
end
|
625
|
+
@visitor_tracking = visitor_tracking
|
626
|
+
@key_modified['visitor_tracking'] = 1
|
627
|
+
end
|
628
|
+
|
629
|
+
# The method to get the last_submitted_time
|
630
|
+
# @return An instance of DateTime
|
631
|
+
|
632
|
+
def last_submitted_time
|
633
|
+
@last_submitted_time
|
634
|
+
end
|
635
|
+
|
636
|
+
# The method to set the value to last_submitted_time
|
637
|
+
# @param last_submitted_time [DateTime] An instance of DateTime
|
638
|
+
|
639
|
+
def last_submitted_time=(last_submitted_time)
|
640
|
+
if last_submitted_time!=nil and !last_submitted_time.is_a? DateTime
|
641
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: last_submitted_time EXPECTED TYPE: DateTime', nil, nil)
|
642
|
+
end
|
643
|
+
@last_submitted_time = last_submitted_time
|
644
|
+
@key_modified['last_submitted_time'] = 1
|
645
|
+
end
|
646
|
+
|
647
|
+
# The method to get the action_on_submit
|
648
|
+
# @return A String value
|
649
|
+
|
650
|
+
def action_on_submit
|
651
|
+
@action_on_submit
|
652
|
+
end
|
653
|
+
|
654
|
+
# The method to set the value to action_on_submit
|
655
|
+
# @param action_on_submit [String] A String
|
656
|
+
|
657
|
+
def action_on_submit=(action_on_submit)
|
658
|
+
if action_on_submit!=nil and !action_on_submit.is_a? String
|
659
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: action_on_submit EXPECTED TYPE: String', nil, nil)
|
660
|
+
end
|
661
|
+
@action_on_submit = action_on_submit
|
662
|
+
@key_modified['action_on_submit'] = 1
|
663
|
+
end
|
664
|
+
|
665
|
+
# The method to get the action_value
|
666
|
+
# @return A String value
|
667
|
+
|
668
|
+
def action_value
|
669
|
+
@action_value
|
670
|
+
end
|
671
|
+
|
672
|
+
# The method to set the value to action_value
|
673
|
+
# @param action_value [String] A String
|
674
|
+
|
675
|
+
def action_value=(action_value)
|
676
|
+
if action_value!=nil and !action_value.is_a? String
|
677
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: action_value EXPECTED TYPE: String', nil, nil)
|
678
|
+
end
|
679
|
+
@action_value = action_value
|
680
|
+
@key_modified['action_value'] = 1
|
681
|
+
end
|
682
|
+
|
683
|
+
# The method to get the suggestion
|
684
|
+
# @return An instance of Suggestion
|
685
|
+
|
686
|
+
def suggestion
|
687
|
+
@suggestion
|
688
|
+
end
|
689
|
+
|
690
|
+
# The method to set the value to suggestion
|
691
|
+
# @param suggestion [Suggestion] An instance of Suggestion
|
692
|
+
|
693
|
+
def suggestion=(suggestion)
|
694
|
+
if suggestion!=nil and !suggestion.is_a? Suggestion
|
695
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: suggestion EXPECTED TYPE: Suggestion', nil, nil)
|
696
|
+
end
|
697
|
+
@suggestion = suggestion
|
698
|
+
@key_modified['suggestion'] = 1
|
699
|
+
end
|
700
|
+
|
701
|
+
# The method to get the embed_code
|
702
|
+
# @return A String value
|
703
|
+
|
704
|
+
def embed_code
|
705
|
+
@embed_code
|
706
|
+
end
|
707
|
+
|
708
|
+
# The method to set the value to embed_code
|
709
|
+
# @param embed_code [String] A String
|
710
|
+
|
711
|
+
def embed_code=(embed_code)
|
712
|
+
if embed_code!=nil and !embed_code.is_a? String
|
713
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: embed_code EXPECTED TYPE: String', nil, nil)
|
714
|
+
end
|
715
|
+
@embed_code = embed_code
|
716
|
+
@key_modified['embed_code'] = 1
|
717
|
+
end
|
718
|
+
|
719
|
+
# The method to get the code_formats
|
720
|
+
# @return An instance of Array
|
721
|
+
|
722
|
+
def code_formats
|
723
|
+
@code_formats
|
724
|
+
end
|
725
|
+
|
726
|
+
# The method to set the value to code_formats
|
727
|
+
# @param code_formats [Array] An instance of Array
|
728
|
+
|
729
|
+
def code_formats=(code_formats)
|
730
|
+
if code_formats!=nil and !code_formats.is_a? Array
|
731
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: code_formats EXPECTED TYPE: Array', nil, nil)
|
732
|
+
end
|
733
|
+
@code_formats = code_formats
|
734
|
+
@key_modified['code_formats'] = 1
|
735
|
+
end
|
736
|
+
|
737
|
+
# The method to get the source_code
|
738
|
+
# @return A String value
|
739
|
+
|
740
|
+
def source_code
|
741
|
+
@source_code
|
742
|
+
end
|
743
|
+
|
744
|
+
# The method to set the value to source_code
|
745
|
+
# @param source_code [String] A String
|
746
|
+
|
747
|
+
def source_code=(source_code)
|
748
|
+
if source_code!=nil and !source_code.is_a? String
|
749
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: source_code EXPECTED TYPE: String', nil, nil)
|
750
|
+
end
|
751
|
+
@source_code = source_code
|
752
|
+
@key_modified['source_code'] = 1
|
753
|
+
end
|
754
|
+
|
755
|
+
# The method to get the iframe_code
|
756
|
+
# @return A String value
|
757
|
+
|
758
|
+
def iframe_code
|
759
|
+
@iframe_code
|
760
|
+
end
|
761
|
+
|
762
|
+
# The method to set the value to iframe_code
|
763
|
+
# @param iframe_code [String] A String
|
764
|
+
|
765
|
+
def iframe_code=(iframe_code)
|
766
|
+
if iframe_code!=nil and !iframe_code.is_a? String
|
767
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: iframe_code EXPECTED TYPE: String', nil, nil)
|
768
|
+
end
|
769
|
+
@iframe_code = iframe_code
|
770
|
+
@key_modified['iframe_code'] = 1
|
771
|
+
end
|
772
|
+
|
773
|
+
# The method to check if the user has modified the given key
|
774
|
+
# @param key [String] A String
|
775
|
+
# @return A Integer value
|
776
|
+
|
777
|
+
def is_key_modified(key)
|
778
|
+
if key!=nil and !key.is_a? String
|
779
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
780
|
+
end
|
781
|
+
if @key_modified.key?(key)
|
782
|
+
return @key_modified[key]
|
783
|
+
end
|
784
|
+
|
785
|
+
nil
|
786
|
+
end
|
787
|
+
|
788
|
+
# The method to mark the given key as modified
|
789
|
+
# @param key [String] A String
|
790
|
+
# @param modification [Integer] A Integer
|
791
|
+
|
792
|
+
def set_key_modified(key, modification)
|
793
|
+
if key!=nil and !key.is_a? String
|
794
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
795
|
+
end
|
796
|
+
if modification!=nil and !modification.is_a? Integer
|
797
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
798
|
+
end
|
799
|
+
@key_modified[key] = modification
|
800
|
+
end
|
801
|
+
|
802
|
+
end
|
803
|
+
end
|
804
|
+
end
|