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,1609 @@
|
|
1
|
+
require_relative '../fields/association_details'
|
2
|
+
require_relative '../fields/auto_number'
|
3
|
+
require_relative '../fields/convert_mapping'
|
4
|
+
require_relative '../fields/crypt'
|
5
|
+
require_relative '../fields/currency'
|
6
|
+
require_relative '../fields/email_parser'
|
7
|
+
require_relative '../fields/external'
|
8
|
+
require_relative '../fields/file_upolad_option'
|
9
|
+
require_relative '../fields/formula'
|
10
|
+
require_relative '../fields/hipaa_compliance'
|
11
|
+
require_relative '../fields/history_tracking'
|
12
|
+
require_relative '../fields/lookup'
|
13
|
+
require_relative '../fields/multi_module_lookup'
|
14
|
+
require_relative '../fields/multiselectlookup'
|
15
|
+
require_relative '../fields/operation_type'
|
16
|
+
require_relative '../fields/pick_list_value'
|
17
|
+
require_relative '../fields/private'
|
18
|
+
require_relative '../fields/profile'
|
19
|
+
require_relative '../fields/refer_from_field'
|
20
|
+
require_relative '../fields/rollup_summary'
|
21
|
+
require_relative '../fields/subform'
|
22
|
+
require_relative '../fields/textarea'
|
23
|
+
require_relative '../fields/tooltip'
|
24
|
+
require_relative '../fields/unique'
|
25
|
+
require_relative '../fields/view_type'
|
26
|
+
require_relative '../modules/minified_module'
|
27
|
+
require_relative '../modules/sharing_properties'
|
28
|
+
require_relative '../fields/fields'
|
29
|
+
require_relative '../util/model'
|
30
|
+
|
31
|
+
module ZOHOCRMSDK
|
32
|
+
module Layouts
|
33
|
+
class SectionField < Fields::Fields
|
34
|
+
include Util::Model
|
35
|
+
|
36
|
+
# Creates an instance of SectionField
|
37
|
+
def initialize
|
38
|
+
super
|
39
|
+
@required = nil
|
40
|
+
@validation_rule = nil
|
41
|
+
@default_value = nil
|
42
|
+
@sequence_number = nil
|
43
|
+
@section_id = nil
|
44
|
+
@blueprint_supported = nil
|
45
|
+
@json_type = nil
|
46
|
+
@length = nil
|
47
|
+
@decimal_place = nil
|
48
|
+
@multi_module_lookup = nil
|
49
|
+
@sharing_properties = nil
|
50
|
+
@currency = nil
|
51
|
+
@file_upolad_optionlist = nil
|
52
|
+
@lookup = nil
|
53
|
+
@subform = nil
|
54
|
+
@formula = nil
|
55
|
+
@multiselectlookup = nil
|
56
|
+
@multiuserlookup = nil
|
57
|
+
@pick_list_values = nil
|
58
|
+
@allowed_modules = nil
|
59
|
+
@hipaa_compliance_enabled = nil
|
60
|
+
@hipaa_compliance = nil
|
61
|
+
@static_values = nil
|
62
|
+
@static_field = nil
|
63
|
+
@associated_module = nil
|
64
|
+
@data_type = nil
|
65
|
+
@operation_type = nil
|
66
|
+
@system_mandatory = nil
|
67
|
+
@webhook = nil
|
68
|
+
@virtual_field = nil
|
69
|
+
@field_read_only = nil
|
70
|
+
@customizable_properties = nil
|
71
|
+
@read_only = nil
|
72
|
+
@custom_field = nil
|
73
|
+
@businesscard_supported = nil
|
74
|
+
@filterable = nil
|
75
|
+
@visible = nil
|
76
|
+
@available_in_user_layout = nil
|
77
|
+
@display_field = nil
|
78
|
+
@pick_list_values_sorted_lexically = nil
|
79
|
+
@sortable = nil
|
80
|
+
@separator = nil
|
81
|
+
@searchable = nil
|
82
|
+
@enable_colour_code = nil
|
83
|
+
@mass_update = nil
|
84
|
+
@created_source = nil
|
85
|
+
@type = nil
|
86
|
+
@display_label = nil
|
87
|
+
@column_name = nil
|
88
|
+
@api_name = nil
|
89
|
+
@display_type = nil
|
90
|
+
@ui_type = nil
|
91
|
+
@colour_code_enabled_by_system = nil
|
92
|
+
@quick_sequence_number = nil
|
93
|
+
@email_parser = nil
|
94
|
+
@rollup_summary = nil
|
95
|
+
@refer_from_field = nil
|
96
|
+
@created_time = nil
|
97
|
+
@modified_time = nil
|
98
|
+
@show_type = nil
|
99
|
+
@category = nil
|
100
|
+
@id = nil
|
101
|
+
@profiles = nil
|
102
|
+
@view_type = nil
|
103
|
+
@unique = nil
|
104
|
+
@sub_module = nil
|
105
|
+
@external = nil
|
106
|
+
@private = nil
|
107
|
+
@convert_mapping = nil
|
108
|
+
@autonumber = nil
|
109
|
+
@auto_number_69 = nil
|
110
|
+
@crypt = nil
|
111
|
+
@tooltip = nil
|
112
|
+
@history_tracking = nil
|
113
|
+
@association_details = nil
|
114
|
+
@additional_column = nil
|
115
|
+
@field_label = nil
|
116
|
+
@global_picklist = nil
|
117
|
+
@updateexistingrecords = nil
|
118
|
+
@number_separator = nil
|
119
|
+
@textarea = nil
|
120
|
+
@key_modified = Hash.new
|
121
|
+
end
|
122
|
+
|
123
|
+
# The method to get the required
|
124
|
+
# @return A Boolean value
|
125
|
+
|
126
|
+
def required
|
127
|
+
@required
|
128
|
+
end
|
129
|
+
|
130
|
+
# The method to set the value to required
|
131
|
+
# @param required [Boolean] A Boolean
|
132
|
+
|
133
|
+
def required=(required)
|
134
|
+
if required!=nil and ! [true, false].include?required
|
135
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: required EXPECTED TYPE: Boolean', nil, nil)
|
136
|
+
end
|
137
|
+
@required = required
|
138
|
+
@key_modified['required'] = 1
|
139
|
+
end
|
140
|
+
|
141
|
+
# The method to get the validation_rule
|
142
|
+
# @return An instance of Hash
|
143
|
+
|
144
|
+
def validation_rule
|
145
|
+
@validation_rule
|
146
|
+
end
|
147
|
+
|
148
|
+
# The method to set the value to validation_rule
|
149
|
+
# @param validation_rule [Hash] An instance of Hash
|
150
|
+
|
151
|
+
def validation_rule=(validation_rule)
|
152
|
+
if validation_rule!=nil and !validation_rule.is_a? Hash
|
153
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: validation_rule EXPECTED TYPE: Hash', nil, nil)
|
154
|
+
end
|
155
|
+
@validation_rule = validation_rule
|
156
|
+
@key_modified['validation_rule'] = 1
|
157
|
+
end
|
158
|
+
|
159
|
+
# The method to get the default_value
|
160
|
+
# @return A String value
|
161
|
+
|
162
|
+
def default_value
|
163
|
+
@default_value
|
164
|
+
end
|
165
|
+
|
166
|
+
# The method to set the value to default_value
|
167
|
+
# @param default_value [String] A String
|
168
|
+
|
169
|
+
def default_value=(default_value)
|
170
|
+
if default_value!=nil and !default_value.is_a? String
|
171
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: default_value EXPECTED TYPE: String', nil, nil)
|
172
|
+
end
|
173
|
+
@default_value = default_value
|
174
|
+
@key_modified['default_value'] = 1
|
175
|
+
end
|
176
|
+
|
177
|
+
# The method to get the sequence_number
|
178
|
+
# @return A Integer value
|
179
|
+
|
180
|
+
def sequence_number
|
181
|
+
@sequence_number
|
182
|
+
end
|
183
|
+
|
184
|
+
# The method to set the value to sequence_number
|
185
|
+
# @param sequence_number [Integer] A Integer
|
186
|
+
|
187
|
+
def sequence_number=(sequence_number)
|
188
|
+
if sequence_number!=nil and !sequence_number.is_a? Integer
|
189
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sequence_number EXPECTED TYPE: Integer', nil, nil)
|
190
|
+
end
|
191
|
+
@sequence_number = sequence_number
|
192
|
+
@key_modified['sequence_number'] = 1
|
193
|
+
end
|
194
|
+
|
195
|
+
# The method to get the section_id
|
196
|
+
# @return A Integer value
|
197
|
+
|
198
|
+
def section_id
|
199
|
+
@section_id
|
200
|
+
end
|
201
|
+
|
202
|
+
# The method to set the value to section_id
|
203
|
+
# @param section_id [Integer] A Integer
|
204
|
+
|
205
|
+
def section_id=(section_id)
|
206
|
+
if section_id!=nil and !section_id.is_a? Integer
|
207
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: section_id EXPECTED TYPE: Integer', nil, nil)
|
208
|
+
end
|
209
|
+
@section_id = section_id
|
210
|
+
@key_modified['section_id'] = 1
|
211
|
+
end
|
212
|
+
|
213
|
+
# The method to get the blueprint_supported
|
214
|
+
# @return A Boolean value
|
215
|
+
|
216
|
+
def blueprint_supported
|
217
|
+
@blueprint_supported
|
218
|
+
end
|
219
|
+
|
220
|
+
# The method to set the value to blueprint_supported
|
221
|
+
# @param blueprint_supported [Boolean] A Boolean
|
222
|
+
|
223
|
+
def blueprint_supported=(blueprint_supported)
|
224
|
+
if blueprint_supported!=nil and ! [true, false].include?blueprint_supported
|
225
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: blueprint_supported EXPECTED TYPE: Boolean', nil, nil)
|
226
|
+
end
|
227
|
+
@blueprint_supported = blueprint_supported
|
228
|
+
@key_modified['blueprint_supported'] = 1
|
229
|
+
end
|
230
|
+
|
231
|
+
# The method to get the json_type
|
232
|
+
# @return A String value
|
233
|
+
|
234
|
+
def json_type
|
235
|
+
@json_type
|
236
|
+
end
|
237
|
+
|
238
|
+
# The method to set the value to json_type
|
239
|
+
# @param json_type [String] A String
|
240
|
+
|
241
|
+
def json_type=(json_type)
|
242
|
+
if json_type!=nil and !json_type.is_a? String
|
243
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: json_type EXPECTED TYPE: String', nil, nil)
|
244
|
+
end
|
245
|
+
@json_type = json_type
|
246
|
+
@key_modified['json_type'] = 1
|
247
|
+
end
|
248
|
+
|
249
|
+
# The method to get the length
|
250
|
+
# @return A Integer value
|
251
|
+
|
252
|
+
def length
|
253
|
+
@length
|
254
|
+
end
|
255
|
+
|
256
|
+
# The method to set the value to length
|
257
|
+
# @param length [Integer] A Integer
|
258
|
+
|
259
|
+
def length=(length)
|
260
|
+
if length!=nil and !length.is_a? Integer
|
261
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: length EXPECTED TYPE: Integer', nil, nil)
|
262
|
+
end
|
263
|
+
@length = length
|
264
|
+
@key_modified['length'] = 1
|
265
|
+
end
|
266
|
+
|
267
|
+
# The method to get the decimal_place
|
268
|
+
# @return A Integer value
|
269
|
+
|
270
|
+
def decimal_place
|
271
|
+
@decimal_place
|
272
|
+
end
|
273
|
+
|
274
|
+
# The method to set the value to decimal_place
|
275
|
+
# @param decimal_place [Integer] A Integer
|
276
|
+
|
277
|
+
def decimal_place=(decimal_place)
|
278
|
+
if decimal_place!=nil and !decimal_place.is_a? Integer
|
279
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: decimal_place EXPECTED TYPE: Integer', nil, nil)
|
280
|
+
end
|
281
|
+
@decimal_place = decimal_place
|
282
|
+
@key_modified['decimal_place'] = 1
|
283
|
+
end
|
284
|
+
|
285
|
+
# The method to get the multi_module_lookup
|
286
|
+
# @return An instance of Fields::MultiModuleLookup
|
287
|
+
|
288
|
+
def multi_module_lookup
|
289
|
+
@multi_module_lookup
|
290
|
+
end
|
291
|
+
|
292
|
+
# The method to set the value to multi_module_lookup
|
293
|
+
# @param multi_module_lookup [Fields::MultiModuleLookup] An instance of Fields::MultiModuleLookup
|
294
|
+
|
295
|
+
def multi_module_lookup=(multi_module_lookup)
|
296
|
+
if multi_module_lookup!=nil and !multi_module_lookup.is_a? Fields::MultiModuleLookup
|
297
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multi_module_lookup EXPECTED TYPE: MultiModuleLookup', nil, nil)
|
298
|
+
end
|
299
|
+
@multi_module_lookup = multi_module_lookup
|
300
|
+
@key_modified['multi_module_lookup'] = 1
|
301
|
+
end
|
302
|
+
|
303
|
+
# The method to get the sharing_properties
|
304
|
+
# @return An instance of Modules::SharingProperties
|
305
|
+
|
306
|
+
def sharing_properties
|
307
|
+
@sharing_properties
|
308
|
+
end
|
309
|
+
|
310
|
+
# The method to set the value to sharing_properties
|
311
|
+
# @param sharing_properties [Modules::SharingProperties] An instance of Modules::SharingProperties
|
312
|
+
|
313
|
+
def sharing_properties=(sharing_properties)
|
314
|
+
if sharing_properties!=nil and !sharing_properties.is_a? Modules::SharingProperties
|
315
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sharing_properties EXPECTED TYPE: SharingProperties', nil, nil)
|
316
|
+
end
|
317
|
+
@sharing_properties = sharing_properties
|
318
|
+
@key_modified['sharing_properties'] = 1
|
319
|
+
end
|
320
|
+
|
321
|
+
# The method to get the currency
|
322
|
+
# @return An instance of Fields::Currency
|
323
|
+
|
324
|
+
def currency
|
325
|
+
@currency
|
326
|
+
end
|
327
|
+
|
328
|
+
# The method to set the value to currency
|
329
|
+
# @param currency [Fields::Currency] An instance of Fields::Currency
|
330
|
+
|
331
|
+
def currency=(currency)
|
332
|
+
if currency!=nil and !currency.is_a? Fields::Currency
|
333
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: currency EXPECTED TYPE: Currency', nil, nil)
|
334
|
+
end
|
335
|
+
@currency = currency
|
336
|
+
@key_modified['currency'] = 1
|
337
|
+
end
|
338
|
+
|
339
|
+
# The method to get the file_upolad_optionlist
|
340
|
+
# @return An instance of Array
|
341
|
+
|
342
|
+
def file_upolad_optionlist
|
343
|
+
@file_upolad_optionlist
|
344
|
+
end
|
345
|
+
|
346
|
+
# The method to set the value to file_upolad_optionlist
|
347
|
+
# @param file_upolad_optionlist [Array] An instance of Array
|
348
|
+
|
349
|
+
def file_upolad_optionlist=(file_upolad_optionlist)
|
350
|
+
if file_upolad_optionlist!=nil and !file_upolad_optionlist.is_a? Array
|
351
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: file_upolad_optionlist EXPECTED TYPE: Array', nil, nil)
|
352
|
+
end
|
353
|
+
@file_upolad_optionlist = file_upolad_optionlist
|
354
|
+
@key_modified['file_upolad_optionlist'] = 1
|
355
|
+
end
|
356
|
+
|
357
|
+
# The method to get the lookup
|
358
|
+
# @return An instance of Fields::Lookup
|
359
|
+
|
360
|
+
def lookup
|
361
|
+
@lookup
|
362
|
+
end
|
363
|
+
|
364
|
+
# The method to set the value to lookup
|
365
|
+
# @param lookup [Fields::Lookup] An instance of Fields::Lookup
|
366
|
+
|
367
|
+
def lookup=(lookup)
|
368
|
+
if lookup!=nil and !lookup.is_a? Fields::Lookup
|
369
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: lookup EXPECTED TYPE: Lookup', nil, nil)
|
370
|
+
end
|
371
|
+
@lookup = lookup
|
372
|
+
@key_modified['lookup'] = 1
|
373
|
+
end
|
374
|
+
|
375
|
+
# The method to get the subform
|
376
|
+
# @return An instance of Fields::Subform
|
377
|
+
|
378
|
+
def subform
|
379
|
+
@subform
|
380
|
+
end
|
381
|
+
|
382
|
+
# The method to set the value to subform
|
383
|
+
# @param subform [Fields::Subform] An instance of Fields::Subform
|
384
|
+
|
385
|
+
def subform=(subform)
|
386
|
+
if subform!=nil and !subform.is_a? Fields::Subform
|
387
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: subform EXPECTED TYPE: Subform', nil, nil)
|
388
|
+
end
|
389
|
+
@subform = subform
|
390
|
+
@key_modified['subform'] = 1
|
391
|
+
end
|
392
|
+
|
393
|
+
# The method to get the formula
|
394
|
+
# @return An instance of Fields::Formula
|
395
|
+
|
396
|
+
def formula
|
397
|
+
@formula
|
398
|
+
end
|
399
|
+
|
400
|
+
# The method to set the value to formula
|
401
|
+
# @param formula [Fields::Formula] An instance of Fields::Formula
|
402
|
+
|
403
|
+
def formula=(formula)
|
404
|
+
if formula!=nil and !formula.is_a? Fields::Formula
|
405
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: formula EXPECTED TYPE: Formula', nil, nil)
|
406
|
+
end
|
407
|
+
@formula = formula
|
408
|
+
@key_modified['formula'] = 1
|
409
|
+
end
|
410
|
+
|
411
|
+
# The method to get the multiselectlookup
|
412
|
+
# @return An instance of Fields::Multiselectlookup
|
413
|
+
|
414
|
+
def multiselectlookup
|
415
|
+
@multiselectlookup
|
416
|
+
end
|
417
|
+
|
418
|
+
# The method to set the value to multiselectlookup
|
419
|
+
# @param multiselectlookup [Fields::Multiselectlookup] An instance of Fields::Multiselectlookup
|
420
|
+
|
421
|
+
def multiselectlookup=(multiselectlookup)
|
422
|
+
if multiselectlookup!=nil and !multiselectlookup.is_a? Fields::Multiselectlookup
|
423
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multiselectlookup EXPECTED TYPE: Multiselectlookup', nil, nil)
|
424
|
+
end
|
425
|
+
@multiselectlookup = multiselectlookup
|
426
|
+
@key_modified['multiselectlookup'] = 1
|
427
|
+
end
|
428
|
+
|
429
|
+
# The method to get the multiuserlookup
|
430
|
+
# @return An instance of Fields::Multiselectlookup
|
431
|
+
|
432
|
+
def multiuserlookup
|
433
|
+
@multiuserlookup
|
434
|
+
end
|
435
|
+
|
436
|
+
# The method to set the value to multiuserlookup
|
437
|
+
# @param multiuserlookup [Fields::Multiselectlookup] An instance of Fields::Multiselectlookup
|
438
|
+
|
439
|
+
def multiuserlookup=(multiuserlookup)
|
440
|
+
if multiuserlookup!=nil and !multiuserlookup.is_a? Fields::Multiselectlookup
|
441
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: multiuserlookup EXPECTED TYPE: Multiselectlookup', nil, nil)
|
442
|
+
end
|
443
|
+
@multiuserlookup = multiuserlookup
|
444
|
+
@key_modified['multiuserlookup'] = 1
|
445
|
+
end
|
446
|
+
|
447
|
+
# The method to get the pick_list_values
|
448
|
+
# @return An instance of Array
|
449
|
+
|
450
|
+
def pick_list_values
|
451
|
+
@pick_list_values
|
452
|
+
end
|
453
|
+
|
454
|
+
# The method to set the value to pick_list_values
|
455
|
+
# @param pick_list_values [Array] An instance of Array
|
456
|
+
|
457
|
+
def pick_list_values=(pick_list_values)
|
458
|
+
if pick_list_values!=nil and !pick_list_values.is_a? Array
|
459
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: pick_list_values EXPECTED TYPE: Array', nil, nil)
|
460
|
+
end
|
461
|
+
@pick_list_values = pick_list_values
|
462
|
+
@key_modified['pick_list_values'] = 1
|
463
|
+
end
|
464
|
+
|
465
|
+
# The method to get the allowed_modules
|
466
|
+
# @return An instance of Array
|
467
|
+
|
468
|
+
def allowed_modules
|
469
|
+
@allowed_modules
|
470
|
+
end
|
471
|
+
|
472
|
+
# The method to set the value to allowed_modules
|
473
|
+
# @param allowed_modules [Array] An instance of Array
|
474
|
+
|
475
|
+
def allowed_modules=(allowed_modules)
|
476
|
+
if allowed_modules!=nil and !allowed_modules.is_a? Array
|
477
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: allowed_modules EXPECTED TYPE: Array', nil, nil)
|
478
|
+
end
|
479
|
+
@allowed_modules = allowed_modules
|
480
|
+
@key_modified['allowed_modules'] = 1
|
481
|
+
end
|
482
|
+
|
483
|
+
# The method to get the hipaa_compliance_enabled
|
484
|
+
# @return A Boolean value
|
485
|
+
|
486
|
+
def hipaa_compliance_enabled
|
487
|
+
@hipaa_compliance_enabled
|
488
|
+
end
|
489
|
+
|
490
|
+
# The method to set the value to hipaa_compliance_enabled
|
491
|
+
# @param hipaa_compliance_enabled [Boolean] A Boolean
|
492
|
+
|
493
|
+
def hipaa_compliance_enabled=(hipaa_compliance_enabled)
|
494
|
+
if hipaa_compliance_enabled!=nil and ! [true, false].include?hipaa_compliance_enabled
|
495
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: hipaa_compliance_enabled EXPECTED TYPE: Boolean', nil, nil)
|
496
|
+
end
|
497
|
+
@hipaa_compliance_enabled = hipaa_compliance_enabled
|
498
|
+
@key_modified['hipaa_compliance_enabled'] = 1
|
499
|
+
end
|
500
|
+
|
501
|
+
# The method to get the hipaa_compliance
|
502
|
+
# @return An instance of Fields::HipaaCompliance
|
503
|
+
|
504
|
+
def hipaa_compliance
|
505
|
+
@hipaa_compliance
|
506
|
+
end
|
507
|
+
|
508
|
+
# The method to set the value to hipaa_compliance
|
509
|
+
# @param hipaa_compliance [Fields::HipaaCompliance] An instance of Fields::HipaaCompliance
|
510
|
+
|
511
|
+
def hipaa_compliance=(hipaa_compliance)
|
512
|
+
if hipaa_compliance!=nil and !hipaa_compliance.is_a? Fields::HipaaCompliance
|
513
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: hipaa_compliance EXPECTED TYPE: HipaaCompliance', nil, nil)
|
514
|
+
end
|
515
|
+
@hipaa_compliance = hipaa_compliance
|
516
|
+
@key_modified['hipaa_compliance'] = 1
|
517
|
+
end
|
518
|
+
|
519
|
+
# The method to get the static_values
|
520
|
+
# @return An instance of Array
|
521
|
+
|
522
|
+
def static_values
|
523
|
+
@static_values
|
524
|
+
end
|
525
|
+
|
526
|
+
# The method to set the value to static_values
|
527
|
+
# @param static_values [Array] An instance of Array
|
528
|
+
|
529
|
+
def static_values=(static_values)
|
530
|
+
if static_values!=nil and !static_values.is_a? Array
|
531
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: static_values EXPECTED TYPE: Array', nil, nil)
|
532
|
+
end
|
533
|
+
@static_values = static_values
|
534
|
+
@key_modified['static_values'] = 1
|
535
|
+
end
|
536
|
+
|
537
|
+
# The method to get the static_field
|
538
|
+
# @return A Boolean value
|
539
|
+
|
540
|
+
def static_field
|
541
|
+
@static_field
|
542
|
+
end
|
543
|
+
|
544
|
+
# The method to set the value to static_field
|
545
|
+
# @param static_field [Boolean] A Boolean
|
546
|
+
|
547
|
+
def static_field=(static_field)
|
548
|
+
if static_field!=nil and ! [true, false].include?static_field
|
549
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: static_field EXPECTED TYPE: Boolean', nil, nil)
|
550
|
+
end
|
551
|
+
@static_field = static_field
|
552
|
+
@key_modified['static_field'] = 1
|
553
|
+
end
|
554
|
+
|
555
|
+
# The method to get the associated_module
|
556
|
+
# @return An instance of Modules::MinifiedModule
|
557
|
+
|
558
|
+
def associated_module
|
559
|
+
@associated_module
|
560
|
+
end
|
561
|
+
|
562
|
+
# The method to set the value to associated_module
|
563
|
+
# @param associated_module [Modules::MinifiedModule] An instance of Modules::MinifiedModule
|
564
|
+
|
565
|
+
def associated_module=(associated_module)
|
566
|
+
if associated_module!=nil and !associated_module.is_a? Modules::MinifiedModule
|
567
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: associated_module EXPECTED TYPE: MinifiedModule', nil, nil)
|
568
|
+
end
|
569
|
+
@associated_module = associated_module
|
570
|
+
@key_modified['associated_module'] = 1
|
571
|
+
end
|
572
|
+
|
573
|
+
# The method to get the data_type
|
574
|
+
# @return A String value
|
575
|
+
|
576
|
+
def data_type
|
577
|
+
@data_type
|
578
|
+
end
|
579
|
+
|
580
|
+
# The method to set the value to data_type
|
581
|
+
# @param data_type [String] A String
|
582
|
+
|
583
|
+
def data_type=(data_type)
|
584
|
+
if data_type!=nil and !data_type.is_a? String
|
585
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: data_type EXPECTED TYPE: String', nil, nil)
|
586
|
+
end
|
587
|
+
@data_type = data_type
|
588
|
+
@key_modified['data_type'] = 1
|
589
|
+
end
|
590
|
+
|
591
|
+
# The method to get the operation_type
|
592
|
+
# @return An instance of Fields::OperationType
|
593
|
+
|
594
|
+
def operation_type
|
595
|
+
@operation_type
|
596
|
+
end
|
597
|
+
|
598
|
+
# The method to set the value to operation_type
|
599
|
+
# @param operation_type [Fields::OperationType] An instance of Fields::OperationType
|
600
|
+
|
601
|
+
def operation_type=(operation_type)
|
602
|
+
if operation_type!=nil and !operation_type.is_a? Fields::OperationType
|
603
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: operation_type EXPECTED TYPE: OperationType', nil, nil)
|
604
|
+
end
|
605
|
+
@operation_type = operation_type
|
606
|
+
@key_modified['operation_type'] = 1
|
607
|
+
end
|
608
|
+
|
609
|
+
# The method to get the system_mandatory
|
610
|
+
# @return A Boolean value
|
611
|
+
|
612
|
+
def system_mandatory
|
613
|
+
@system_mandatory
|
614
|
+
end
|
615
|
+
|
616
|
+
# The method to set the value to system_mandatory
|
617
|
+
# @param system_mandatory [Boolean] A Boolean
|
618
|
+
|
619
|
+
def system_mandatory=(system_mandatory)
|
620
|
+
if system_mandatory!=nil and ! [true, false].include?system_mandatory
|
621
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: system_mandatory EXPECTED TYPE: Boolean', nil, nil)
|
622
|
+
end
|
623
|
+
@system_mandatory = system_mandatory
|
624
|
+
@key_modified['system_mandatory'] = 1
|
625
|
+
end
|
626
|
+
|
627
|
+
# The method to get the webhook
|
628
|
+
# @return A Boolean value
|
629
|
+
|
630
|
+
def webhook
|
631
|
+
@webhook
|
632
|
+
end
|
633
|
+
|
634
|
+
# The method to set the value to webhook
|
635
|
+
# @param webhook [Boolean] A Boolean
|
636
|
+
|
637
|
+
def webhook=(webhook)
|
638
|
+
if webhook!=nil and ! [true, false].include?webhook
|
639
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: webhook EXPECTED TYPE: Boolean', nil, nil)
|
640
|
+
end
|
641
|
+
@webhook = webhook
|
642
|
+
@key_modified['webhook'] = 1
|
643
|
+
end
|
644
|
+
|
645
|
+
# The method to get the virtual_field
|
646
|
+
# @return A Boolean value
|
647
|
+
|
648
|
+
def virtual_field
|
649
|
+
@virtual_field
|
650
|
+
end
|
651
|
+
|
652
|
+
# The method to set the value to virtual_field
|
653
|
+
# @param virtual_field [Boolean] A Boolean
|
654
|
+
|
655
|
+
def virtual_field=(virtual_field)
|
656
|
+
if virtual_field!=nil and ! [true, false].include?virtual_field
|
657
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: virtual_field EXPECTED TYPE: Boolean', nil, nil)
|
658
|
+
end
|
659
|
+
@virtual_field = virtual_field
|
660
|
+
@key_modified['virtual_field'] = 1
|
661
|
+
end
|
662
|
+
|
663
|
+
# The method to get the field_read_only
|
664
|
+
# @return A Boolean value
|
665
|
+
|
666
|
+
def field_read_only
|
667
|
+
@field_read_only
|
668
|
+
end
|
669
|
+
|
670
|
+
# The method to set the value to field_read_only
|
671
|
+
# @param field_read_only [Boolean] A Boolean
|
672
|
+
|
673
|
+
def field_read_only=(field_read_only)
|
674
|
+
if field_read_only!=nil and ! [true, false].include?field_read_only
|
675
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_read_only EXPECTED TYPE: Boolean', nil, nil)
|
676
|
+
end
|
677
|
+
@field_read_only = field_read_only
|
678
|
+
@key_modified['field_read_only'] = 1
|
679
|
+
end
|
680
|
+
|
681
|
+
# The method to get the customizable_properties
|
682
|
+
# @return An instance of Array
|
683
|
+
|
684
|
+
def customizable_properties
|
685
|
+
@customizable_properties
|
686
|
+
end
|
687
|
+
|
688
|
+
# The method to set the value to customizable_properties
|
689
|
+
# @param customizable_properties [Array] An instance of Array
|
690
|
+
|
691
|
+
def customizable_properties=(customizable_properties)
|
692
|
+
if customizable_properties!=nil and !customizable_properties.is_a? Array
|
693
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: customizable_properties EXPECTED TYPE: Array', nil, nil)
|
694
|
+
end
|
695
|
+
@customizable_properties = customizable_properties
|
696
|
+
@key_modified['customizable_properties'] = 1
|
697
|
+
end
|
698
|
+
|
699
|
+
# The method to get the read_only
|
700
|
+
# @return A Boolean value
|
701
|
+
|
702
|
+
def read_only
|
703
|
+
@read_only
|
704
|
+
end
|
705
|
+
|
706
|
+
# The method to set the value to read_only
|
707
|
+
# @param read_only [Boolean] A Boolean
|
708
|
+
|
709
|
+
def read_only=(read_only)
|
710
|
+
if read_only!=nil and ! [true, false].include?read_only
|
711
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: read_only EXPECTED TYPE: Boolean', nil, nil)
|
712
|
+
end
|
713
|
+
@read_only = read_only
|
714
|
+
@key_modified['read_only'] = 1
|
715
|
+
end
|
716
|
+
|
717
|
+
# The method to get the custom_field
|
718
|
+
# @return A Boolean value
|
719
|
+
|
720
|
+
def custom_field
|
721
|
+
@custom_field
|
722
|
+
end
|
723
|
+
|
724
|
+
# The method to set the value to custom_field
|
725
|
+
# @param custom_field [Boolean] A Boolean
|
726
|
+
|
727
|
+
def custom_field=(custom_field)
|
728
|
+
if custom_field!=nil and ! [true, false].include?custom_field
|
729
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: custom_field EXPECTED TYPE: Boolean', nil, nil)
|
730
|
+
end
|
731
|
+
@custom_field = custom_field
|
732
|
+
@key_modified['custom_field'] = 1
|
733
|
+
end
|
734
|
+
|
735
|
+
# The method to get the businesscard_supported
|
736
|
+
# @return A Boolean value
|
737
|
+
|
738
|
+
def businesscard_supported
|
739
|
+
@businesscard_supported
|
740
|
+
end
|
741
|
+
|
742
|
+
# The method to set the value to businesscard_supported
|
743
|
+
# @param businesscard_supported [Boolean] A Boolean
|
744
|
+
|
745
|
+
def businesscard_supported=(businesscard_supported)
|
746
|
+
if businesscard_supported!=nil and ! [true, false].include?businesscard_supported
|
747
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: businesscard_supported EXPECTED TYPE: Boolean', nil, nil)
|
748
|
+
end
|
749
|
+
@businesscard_supported = businesscard_supported
|
750
|
+
@key_modified['businesscard_supported'] = 1
|
751
|
+
end
|
752
|
+
|
753
|
+
# The method to get the filterable
|
754
|
+
# @return A Boolean value
|
755
|
+
|
756
|
+
def filterable
|
757
|
+
@filterable
|
758
|
+
end
|
759
|
+
|
760
|
+
# The method to set the value to filterable
|
761
|
+
# @param filterable [Boolean] A Boolean
|
762
|
+
|
763
|
+
def filterable=(filterable)
|
764
|
+
if filterable!=nil and ! [true, false].include?filterable
|
765
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: filterable EXPECTED TYPE: Boolean', nil, nil)
|
766
|
+
end
|
767
|
+
@filterable = filterable
|
768
|
+
@key_modified['filterable'] = 1
|
769
|
+
end
|
770
|
+
|
771
|
+
# The method to get the visible
|
772
|
+
# @return A Boolean value
|
773
|
+
|
774
|
+
def visible
|
775
|
+
@visible
|
776
|
+
end
|
777
|
+
|
778
|
+
# The method to set the value to visible
|
779
|
+
# @param visible [Boolean] A Boolean
|
780
|
+
|
781
|
+
def visible=(visible)
|
782
|
+
if visible!=nil and ! [true, false].include?visible
|
783
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: visible EXPECTED TYPE: Boolean', nil, nil)
|
784
|
+
end
|
785
|
+
@visible = visible
|
786
|
+
@key_modified['visible'] = 1
|
787
|
+
end
|
788
|
+
|
789
|
+
# The method to get the available_in_user_layout
|
790
|
+
# @return A Boolean value
|
791
|
+
|
792
|
+
def available_in_user_layout
|
793
|
+
@available_in_user_layout
|
794
|
+
end
|
795
|
+
|
796
|
+
# The method to set the value to available_in_user_layout
|
797
|
+
# @param available_in_user_layout [Boolean] A Boolean
|
798
|
+
|
799
|
+
def available_in_user_layout=(available_in_user_layout)
|
800
|
+
if available_in_user_layout!=nil and ! [true, false].include?available_in_user_layout
|
801
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: available_in_user_layout EXPECTED TYPE: Boolean', nil, nil)
|
802
|
+
end
|
803
|
+
@available_in_user_layout = available_in_user_layout
|
804
|
+
@key_modified['available_in_user_layout'] = 1
|
805
|
+
end
|
806
|
+
|
807
|
+
# The method to get the display_field
|
808
|
+
# @return A Boolean value
|
809
|
+
|
810
|
+
def display_field
|
811
|
+
@display_field
|
812
|
+
end
|
813
|
+
|
814
|
+
# The method to set the value to display_field
|
815
|
+
# @param display_field [Boolean] A Boolean
|
816
|
+
|
817
|
+
def display_field=(display_field)
|
818
|
+
if display_field!=nil and ! [true, false].include?display_field
|
819
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_field EXPECTED TYPE: Boolean', nil, nil)
|
820
|
+
end
|
821
|
+
@display_field = display_field
|
822
|
+
@key_modified['display_field'] = 1
|
823
|
+
end
|
824
|
+
|
825
|
+
# The method to get the pick_list_values_sorted_lexically
|
826
|
+
# @return A Boolean value
|
827
|
+
|
828
|
+
def pick_list_values_sorted_lexically
|
829
|
+
@pick_list_values_sorted_lexically
|
830
|
+
end
|
831
|
+
|
832
|
+
# The method to set the value to pick_list_values_sorted_lexically
|
833
|
+
# @param pick_list_values_sorted_lexically [Boolean] A Boolean
|
834
|
+
|
835
|
+
def pick_list_values_sorted_lexically=(pick_list_values_sorted_lexically)
|
836
|
+
if pick_list_values_sorted_lexically!=nil and ! [true, false].include?pick_list_values_sorted_lexically
|
837
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: pick_list_values_sorted_lexically EXPECTED TYPE: Boolean', nil, nil)
|
838
|
+
end
|
839
|
+
@pick_list_values_sorted_lexically = pick_list_values_sorted_lexically
|
840
|
+
@key_modified['pick_list_values_sorted_lexically'] = 1
|
841
|
+
end
|
842
|
+
|
843
|
+
# The method to get the sortable
|
844
|
+
# @return A Boolean value
|
845
|
+
|
846
|
+
def sortable
|
847
|
+
@sortable
|
848
|
+
end
|
849
|
+
|
850
|
+
# The method to set the value to sortable
|
851
|
+
# @param sortable [Boolean] A Boolean
|
852
|
+
|
853
|
+
def sortable=(sortable)
|
854
|
+
if sortable!=nil and ! [true, false].include?sortable
|
855
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sortable EXPECTED TYPE: Boolean', nil, nil)
|
856
|
+
end
|
857
|
+
@sortable = sortable
|
858
|
+
@key_modified['sortable'] = 1
|
859
|
+
end
|
860
|
+
|
861
|
+
# The method to get the separator
|
862
|
+
# @return A Boolean value
|
863
|
+
|
864
|
+
def separator
|
865
|
+
@separator
|
866
|
+
end
|
867
|
+
|
868
|
+
# The method to set the value to separator
|
869
|
+
# @param separator [Boolean] A Boolean
|
870
|
+
|
871
|
+
def separator=(separator)
|
872
|
+
if separator!=nil and ! [true, false].include?separator
|
873
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: separator EXPECTED TYPE: Boolean', nil, nil)
|
874
|
+
end
|
875
|
+
@separator = separator
|
876
|
+
@key_modified['separator'] = 1
|
877
|
+
end
|
878
|
+
|
879
|
+
# The method to get the searchable
|
880
|
+
# @return A Boolean value
|
881
|
+
|
882
|
+
def searchable
|
883
|
+
@searchable
|
884
|
+
end
|
885
|
+
|
886
|
+
# The method to set the value to searchable
|
887
|
+
# @param searchable [Boolean] A Boolean
|
888
|
+
|
889
|
+
def searchable=(searchable)
|
890
|
+
if searchable!=nil and ! [true, false].include?searchable
|
891
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: searchable EXPECTED TYPE: Boolean', nil, nil)
|
892
|
+
end
|
893
|
+
@searchable = searchable
|
894
|
+
@key_modified['searchable'] = 1
|
895
|
+
end
|
896
|
+
|
897
|
+
# The method to get the enable_colour_code
|
898
|
+
# @return A Boolean value
|
899
|
+
|
900
|
+
def enable_colour_code
|
901
|
+
@enable_colour_code
|
902
|
+
end
|
903
|
+
|
904
|
+
# The method to set the value to enable_colour_code
|
905
|
+
# @param enable_colour_code [Boolean] A Boolean
|
906
|
+
|
907
|
+
def enable_colour_code=(enable_colour_code)
|
908
|
+
if enable_colour_code!=nil and ! [true, false].include?enable_colour_code
|
909
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: enable_colour_code EXPECTED TYPE: Boolean', nil, nil)
|
910
|
+
end
|
911
|
+
@enable_colour_code = enable_colour_code
|
912
|
+
@key_modified['enable_colour_code'] = 1
|
913
|
+
end
|
914
|
+
|
915
|
+
# The method to get the mass_update
|
916
|
+
# @return A Boolean value
|
917
|
+
|
918
|
+
def mass_update
|
919
|
+
@mass_update
|
920
|
+
end
|
921
|
+
|
922
|
+
# The method to set the value to mass_update
|
923
|
+
# @param mass_update [Boolean] A Boolean
|
924
|
+
|
925
|
+
def mass_update=(mass_update)
|
926
|
+
if mass_update!=nil and ! [true, false].include?mass_update
|
927
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: mass_update EXPECTED TYPE: Boolean', nil, nil)
|
928
|
+
end
|
929
|
+
@mass_update = mass_update
|
930
|
+
@key_modified['mass_update'] = 1
|
931
|
+
end
|
932
|
+
|
933
|
+
# The method to get the created_source
|
934
|
+
# @return A String value
|
935
|
+
|
936
|
+
def created_source
|
937
|
+
@created_source
|
938
|
+
end
|
939
|
+
|
940
|
+
# The method to set the value to created_source
|
941
|
+
# @param created_source [String] A String
|
942
|
+
|
943
|
+
def created_source=(created_source)
|
944
|
+
if created_source!=nil and !created_source.is_a? String
|
945
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_source EXPECTED TYPE: String', nil, nil)
|
946
|
+
end
|
947
|
+
@created_source = created_source
|
948
|
+
@key_modified['created_source'] = 1
|
949
|
+
end
|
950
|
+
|
951
|
+
# The method to get the type
|
952
|
+
# @return A String value
|
953
|
+
|
954
|
+
def type
|
955
|
+
@type
|
956
|
+
end
|
957
|
+
|
958
|
+
# The method to set the value to type
|
959
|
+
# @param type [String] A String
|
960
|
+
|
961
|
+
def type=(type)
|
962
|
+
if type!=nil and !type.is_a? String
|
963
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: type EXPECTED TYPE: String', nil, nil)
|
964
|
+
end
|
965
|
+
@type = type
|
966
|
+
@key_modified['type'] = 1
|
967
|
+
end
|
968
|
+
|
969
|
+
# The method to get the display_label
|
970
|
+
# @return A String value
|
971
|
+
|
972
|
+
def display_label
|
973
|
+
@display_label
|
974
|
+
end
|
975
|
+
|
976
|
+
# The method to set the value to display_label
|
977
|
+
# @param display_label [String] A String
|
978
|
+
|
979
|
+
def display_label=(display_label)
|
980
|
+
if display_label!=nil and !display_label.is_a? String
|
981
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_label EXPECTED TYPE: String', nil, nil)
|
982
|
+
end
|
983
|
+
@display_label = display_label
|
984
|
+
@key_modified['display_label'] = 1
|
985
|
+
end
|
986
|
+
|
987
|
+
# The method to get the column_name
|
988
|
+
# @return A String value
|
989
|
+
|
990
|
+
def column_name
|
991
|
+
@column_name
|
992
|
+
end
|
993
|
+
|
994
|
+
# The method to set the value to column_name
|
995
|
+
# @param column_name [String] A String
|
996
|
+
|
997
|
+
def column_name=(column_name)
|
998
|
+
if column_name!=nil and !column_name.is_a? String
|
999
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: column_name EXPECTED TYPE: String', nil, nil)
|
1000
|
+
end
|
1001
|
+
@column_name = column_name
|
1002
|
+
@key_modified['column_name'] = 1
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
# The method to get the api_name
|
1006
|
+
# @return A String value
|
1007
|
+
|
1008
|
+
def api_name
|
1009
|
+
@api_name
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
# The method to set the value to api_name
|
1013
|
+
# @param api_name [String] A String
|
1014
|
+
|
1015
|
+
def api_name=(api_name)
|
1016
|
+
if api_name!=nil and !api_name.is_a? String
|
1017
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
|
1018
|
+
end
|
1019
|
+
@api_name = api_name
|
1020
|
+
@key_modified['api_name'] = 1
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
# The method to get the display_type
|
1024
|
+
# @return A Integer value
|
1025
|
+
|
1026
|
+
def display_type
|
1027
|
+
@display_type
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
# The method to set the value to display_type
|
1031
|
+
# @param display_type [Integer] A Integer
|
1032
|
+
|
1033
|
+
def display_type=(display_type)
|
1034
|
+
if display_type!=nil and !display_type.is_a? Integer
|
1035
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: display_type EXPECTED TYPE: Integer', nil, nil)
|
1036
|
+
end
|
1037
|
+
@display_type = display_type
|
1038
|
+
@key_modified['display_type'] = 1
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
# The method to get the ui_type
|
1042
|
+
# @return A Integer value
|
1043
|
+
|
1044
|
+
def ui_type
|
1045
|
+
@ui_type
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
# The method to set the value to ui_type
|
1049
|
+
# @param ui_type [Integer] A Integer
|
1050
|
+
|
1051
|
+
def ui_type=(ui_type)
|
1052
|
+
if ui_type!=nil and !ui_type.is_a? Integer
|
1053
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: ui_type EXPECTED TYPE: Integer', nil, nil)
|
1054
|
+
end
|
1055
|
+
@ui_type = ui_type
|
1056
|
+
@key_modified['ui_type'] = 1
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
# The method to get the colour_code_enabled_by_system
|
1060
|
+
# @return A Boolean value
|
1061
|
+
|
1062
|
+
def colour_code_enabled_by_system
|
1063
|
+
@colour_code_enabled_by_system
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
# The method to set the value to colour_code_enabled_by_system
|
1067
|
+
# @param colour_code_enabled_by_system [Boolean] A Boolean
|
1068
|
+
|
1069
|
+
def colour_code_enabled_by_system=(colour_code_enabled_by_system)
|
1070
|
+
if colour_code_enabled_by_system!=nil and ! [true, false].include?colour_code_enabled_by_system
|
1071
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: colour_code_enabled_by_system EXPECTED TYPE: Boolean', nil, nil)
|
1072
|
+
end
|
1073
|
+
@colour_code_enabled_by_system = colour_code_enabled_by_system
|
1074
|
+
@key_modified['colour_code_enabled_by_system'] = 1
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
# The method to get the quick_sequence_number
|
1078
|
+
# @return A String value
|
1079
|
+
|
1080
|
+
def quick_sequence_number
|
1081
|
+
@quick_sequence_number
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
# The method to set the value to quick_sequence_number
|
1085
|
+
# @param quick_sequence_number [String] A String
|
1086
|
+
|
1087
|
+
def quick_sequence_number=(quick_sequence_number)
|
1088
|
+
if quick_sequence_number!=nil and !quick_sequence_number.is_a? String
|
1089
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: quick_sequence_number EXPECTED TYPE: String', nil, nil)
|
1090
|
+
end
|
1091
|
+
@quick_sequence_number = quick_sequence_number
|
1092
|
+
@key_modified['quick_sequence_number'] = 1
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# The method to get the email_parser
|
1096
|
+
# @return An instance of Fields::EmailParser
|
1097
|
+
|
1098
|
+
def email_parser
|
1099
|
+
@email_parser
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
# The method to set the value to email_parser
|
1103
|
+
# @param email_parser [Fields::EmailParser] An instance of Fields::EmailParser
|
1104
|
+
|
1105
|
+
def email_parser=(email_parser)
|
1106
|
+
if email_parser!=nil and !email_parser.is_a? Fields::EmailParser
|
1107
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: email_parser EXPECTED TYPE: EmailParser', nil, nil)
|
1108
|
+
end
|
1109
|
+
@email_parser = email_parser
|
1110
|
+
@key_modified['email_parser'] = 1
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
# The method to get the rollup_summary
|
1114
|
+
# @return An instance of Fields::RollupSummary
|
1115
|
+
|
1116
|
+
def rollup_summary
|
1117
|
+
@rollup_summary
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
# The method to set the value to rollup_summary
|
1121
|
+
# @param rollup_summary [Fields::RollupSummary] An instance of Fields::RollupSummary
|
1122
|
+
|
1123
|
+
def rollup_summary=(rollup_summary)
|
1124
|
+
if rollup_summary!=nil and !rollup_summary.is_a? Fields::RollupSummary
|
1125
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: rollup_summary EXPECTED TYPE: RollupSummary', nil, nil)
|
1126
|
+
end
|
1127
|
+
@rollup_summary = rollup_summary
|
1128
|
+
@key_modified['rollup_summary'] = 1
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
# The method to get the refer_from_field
|
1132
|
+
# @return An instance of Fields::ReferFromField
|
1133
|
+
|
1134
|
+
def refer_from_field
|
1135
|
+
@refer_from_field
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
# The method to set the value to refer_from_field
|
1139
|
+
# @param refer_from_field [Fields::ReferFromField] An instance of Fields::ReferFromField
|
1140
|
+
|
1141
|
+
def refer_from_field=(refer_from_field)
|
1142
|
+
if refer_from_field!=nil and !refer_from_field.is_a? Fields::ReferFromField
|
1143
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: refer_from_field EXPECTED TYPE: ReferFromField', nil, nil)
|
1144
|
+
end
|
1145
|
+
@refer_from_field = refer_from_field
|
1146
|
+
@key_modified['refer_from_field'] = 1
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
# The method to get the created_time
|
1150
|
+
# @return An instance of DateTime
|
1151
|
+
|
1152
|
+
def created_time
|
1153
|
+
@created_time
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
# The method to set the value to created_time
|
1157
|
+
# @param created_time [DateTime] An instance of DateTime
|
1158
|
+
|
1159
|
+
def created_time=(created_time)
|
1160
|
+
if created_time!=nil and !created_time.is_a? DateTime
|
1161
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: created_time EXPECTED TYPE: DateTime', nil, nil)
|
1162
|
+
end
|
1163
|
+
@created_time = created_time
|
1164
|
+
@key_modified['created_time'] = 1
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
# The method to get the modified_time
|
1168
|
+
# @return An instance of DateTime
|
1169
|
+
|
1170
|
+
def modified_time
|
1171
|
+
@modified_time
|
1172
|
+
end
|
1173
|
+
|
1174
|
+
# The method to set the value to modified_time
|
1175
|
+
# @param modified_time [DateTime] An instance of DateTime
|
1176
|
+
|
1177
|
+
def modified_time=(modified_time)
|
1178
|
+
if modified_time!=nil and !modified_time.is_a? DateTime
|
1179
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modified_time EXPECTED TYPE: DateTime', nil, nil)
|
1180
|
+
end
|
1181
|
+
@modified_time = modified_time
|
1182
|
+
@key_modified['modified_time'] = 1
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
# The method to get the show_type
|
1186
|
+
# @return A Integer value
|
1187
|
+
|
1188
|
+
def show_type
|
1189
|
+
@show_type
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
# The method to set the value to show_type
|
1193
|
+
# @param show_type [Integer] A Integer
|
1194
|
+
|
1195
|
+
def show_type=(show_type)
|
1196
|
+
if show_type!=nil and !show_type.is_a? Integer
|
1197
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: show_type EXPECTED TYPE: Integer', nil, nil)
|
1198
|
+
end
|
1199
|
+
@show_type = show_type
|
1200
|
+
@key_modified['show_type'] = 1
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
# The method to get the category
|
1204
|
+
# @return A Integer value
|
1205
|
+
|
1206
|
+
def category
|
1207
|
+
@category
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
# The method to set the value to category
|
1211
|
+
# @param category [Integer] A Integer
|
1212
|
+
|
1213
|
+
def category=(category)
|
1214
|
+
if category!=nil and !category.is_a? Integer
|
1215
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: category EXPECTED TYPE: Integer', nil, nil)
|
1216
|
+
end
|
1217
|
+
@category = category
|
1218
|
+
@key_modified['category'] = 1
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
# The method to get the id
|
1222
|
+
# @return A Integer value
|
1223
|
+
|
1224
|
+
def id
|
1225
|
+
@id
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
# The method to set the value to id
|
1229
|
+
# @param id [Integer] A Integer
|
1230
|
+
|
1231
|
+
def id=(id)
|
1232
|
+
if id!=nil and !id.is_a? Integer
|
1233
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
|
1234
|
+
end
|
1235
|
+
@id = id
|
1236
|
+
@key_modified['id'] = 1
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
# The method to get the profiles
|
1240
|
+
# @return An instance of Array
|
1241
|
+
|
1242
|
+
def profiles
|
1243
|
+
@profiles
|
1244
|
+
end
|
1245
|
+
|
1246
|
+
# The method to set the value to profiles
|
1247
|
+
# @param profiles [Array] An instance of Array
|
1248
|
+
|
1249
|
+
def profiles=(profiles)
|
1250
|
+
if profiles!=nil and !profiles.is_a? Array
|
1251
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: profiles EXPECTED TYPE: Array', nil, nil)
|
1252
|
+
end
|
1253
|
+
@profiles = profiles
|
1254
|
+
@key_modified['profiles'] = 1
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
# The method to get the view_type
|
1258
|
+
# @return An instance of Fields::ViewType
|
1259
|
+
|
1260
|
+
def view_type
|
1261
|
+
@view_type
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
# The method to set the value to view_type
|
1265
|
+
# @param view_type [Fields::ViewType] An instance of Fields::ViewType
|
1266
|
+
|
1267
|
+
def view_type=(view_type)
|
1268
|
+
if view_type!=nil and !view_type.is_a? Fields::ViewType
|
1269
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: view_type EXPECTED TYPE: ViewType', nil, nil)
|
1270
|
+
end
|
1271
|
+
@view_type = view_type
|
1272
|
+
@key_modified['view_type'] = 1
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
# The method to get the unique
|
1276
|
+
# @return An instance of Fields::Unique
|
1277
|
+
|
1278
|
+
def unique
|
1279
|
+
@unique
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
# The method to set the value to unique
|
1283
|
+
# @param unique [Fields::Unique] An instance of Fields::Unique
|
1284
|
+
|
1285
|
+
def unique=(unique)
|
1286
|
+
if unique!=nil and !unique.is_a? Fields::Unique
|
1287
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: unique EXPECTED TYPE: Unique', nil, nil)
|
1288
|
+
end
|
1289
|
+
@unique = unique
|
1290
|
+
@key_modified['unique'] = 1
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
# The method to get the sub_module
|
1294
|
+
# @return An instance of Modules::MinifiedModule
|
1295
|
+
|
1296
|
+
def sub_module
|
1297
|
+
@sub_module
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
# The method to set the value to sub_module
|
1301
|
+
# @param sub_module [Modules::MinifiedModule] An instance of Modules::MinifiedModule
|
1302
|
+
|
1303
|
+
def sub_module=(sub_module)
|
1304
|
+
if sub_module!=nil and !sub_module.is_a? Modules::MinifiedModule
|
1305
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: sub_module EXPECTED TYPE: MinifiedModule', nil, nil)
|
1306
|
+
end
|
1307
|
+
@sub_module = sub_module
|
1308
|
+
@key_modified['sub_module'] = 1
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
# The method to get the external
|
1312
|
+
# @return An instance of Fields::External
|
1313
|
+
|
1314
|
+
def external
|
1315
|
+
@external
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
# The method to set the value to external
|
1319
|
+
# @param external [Fields::External] An instance of Fields::External
|
1320
|
+
|
1321
|
+
def external=(external)
|
1322
|
+
if external!=nil and !external.is_a? Fields::External
|
1323
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: external EXPECTED TYPE: External', nil, nil)
|
1324
|
+
end
|
1325
|
+
@external = external
|
1326
|
+
@key_modified['external'] = 1
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
# The method to get the private
|
1330
|
+
# @return An instance of Fields::Private
|
1331
|
+
|
1332
|
+
def private
|
1333
|
+
@private
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
# The method to set the value to private
|
1337
|
+
# @param private [Fields::Private] An instance of Fields::Private
|
1338
|
+
|
1339
|
+
def private=(private)
|
1340
|
+
if private!=nil and !private.is_a? Fields::Private
|
1341
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: private EXPECTED TYPE: Private', nil, nil)
|
1342
|
+
end
|
1343
|
+
@private = private
|
1344
|
+
@key_modified['private'] = 1
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
# The method to get the convert_mapping
|
1348
|
+
# @return An instance of Fields::ConvertMapping
|
1349
|
+
|
1350
|
+
def convert_mapping
|
1351
|
+
@convert_mapping
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
# The method to set the value to convert_mapping
|
1355
|
+
# @param convert_mapping [Fields::ConvertMapping] An instance of Fields::ConvertMapping
|
1356
|
+
|
1357
|
+
def convert_mapping=(convert_mapping)
|
1358
|
+
if convert_mapping!=nil and !convert_mapping.is_a? Fields::ConvertMapping
|
1359
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: convert_mapping EXPECTED TYPE: ConvertMapping', nil, nil)
|
1360
|
+
end
|
1361
|
+
@convert_mapping = convert_mapping
|
1362
|
+
@key_modified['convert_mapping'] = 1
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
# The method to get the autonumber
|
1366
|
+
# @return An instance of Fields::AutoNumber
|
1367
|
+
|
1368
|
+
def autonumber
|
1369
|
+
@autonumber
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
# The method to set the value to autonumber
|
1373
|
+
# @param autonumber [Fields::AutoNumber] An instance of Fields::AutoNumber
|
1374
|
+
|
1375
|
+
def autonumber=(autonumber)
|
1376
|
+
if autonumber!=nil and !autonumber.is_a? Fields::AutoNumber
|
1377
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: autonumber EXPECTED TYPE: AutoNumber', nil, nil)
|
1378
|
+
end
|
1379
|
+
@autonumber = autonumber
|
1380
|
+
@key_modified['autonumber'] = 1
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
# The method to get the auto_number_69
|
1384
|
+
# @return An instance of Fields::AutoNumber
|
1385
|
+
|
1386
|
+
def auto_number_69
|
1387
|
+
@auto_number_69
|
1388
|
+
end
|
1389
|
+
|
1390
|
+
# The method to set the value to auto_number_69
|
1391
|
+
# @param auto_number_69 [Fields::AutoNumber] An instance of Fields::AutoNumber
|
1392
|
+
|
1393
|
+
def auto_number_69=(auto_number_69)
|
1394
|
+
if auto_number_69!=nil and !auto_number_69.is_a? Fields::AutoNumber
|
1395
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: auto_number_69 EXPECTED TYPE: AutoNumber', nil, nil)
|
1396
|
+
end
|
1397
|
+
@auto_number_69 = auto_number_69
|
1398
|
+
@key_modified['auto_number'] = 1
|
1399
|
+
end
|
1400
|
+
|
1401
|
+
# The method to get the crypt
|
1402
|
+
# @return An instance of Fields::Crypt
|
1403
|
+
|
1404
|
+
def crypt
|
1405
|
+
@crypt
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
# The method to set the value to crypt
|
1409
|
+
# @param crypt [Fields::Crypt] An instance of Fields::Crypt
|
1410
|
+
|
1411
|
+
def crypt=(crypt)
|
1412
|
+
if crypt!=nil and !crypt.is_a? Fields::Crypt
|
1413
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: crypt EXPECTED TYPE: Crypt', nil, nil)
|
1414
|
+
end
|
1415
|
+
@crypt = crypt
|
1416
|
+
@key_modified['crypt'] = 1
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
# The method to get the tooltip
|
1420
|
+
# @return An instance of Fields::Tooltip
|
1421
|
+
|
1422
|
+
def tooltip
|
1423
|
+
@tooltip
|
1424
|
+
end
|
1425
|
+
|
1426
|
+
# The method to set the value to tooltip
|
1427
|
+
# @param tooltip [Fields::Tooltip] An instance of Fields::Tooltip
|
1428
|
+
|
1429
|
+
def tooltip=(tooltip)
|
1430
|
+
if tooltip!=nil and !tooltip.is_a? Fields::Tooltip
|
1431
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: tooltip EXPECTED TYPE: Tooltip', nil, nil)
|
1432
|
+
end
|
1433
|
+
@tooltip = tooltip
|
1434
|
+
@key_modified['tooltip'] = 1
|
1435
|
+
end
|
1436
|
+
|
1437
|
+
# The method to get the history_tracking
|
1438
|
+
# @return An instance of Fields::HistoryTracking
|
1439
|
+
|
1440
|
+
def history_tracking
|
1441
|
+
@history_tracking
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
# The method to set the value to history_tracking
|
1445
|
+
# @param history_tracking [Fields::HistoryTracking] An instance of Fields::HistoryTracking
|
1446
|
+
|
1447
|
+
def history_tracking=(history_tracking)
|
1448
|
+
if history_tracking!=nil and !history_tracking.is_a? Fields::HistoryTracking
|
1449
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: history_tracking EXPECTED TYPE: HistoryTracking', nil, nil)
|
1450
|
+
end
|
1451
|
+
@history_tracking = history_tracking
|
1452
|
+
@key_modified['history_tracking'] = 1
|
1453
|
+
end
|
1454
|
+
|
1455
|
+
# The method to get the association_details
|
1456
|
+
# @return An instance of Fields::AssociationDetails
|
1457
|
+
|
1458
|
+
def association_details
|
1459
|
+
@association_details
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
# The method to set the value to association_details
|
1463
|
+
# @param association_details [Fields::AssociationDetails] An instance of Fields::AssociationDetails
|
1464
|
+
|
1465
|
+
def association_details=(association_details)
|
1466
|
+
if association_details!=nil and !association_details.is_a? Fields::AssociationDetails
|
1467
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: association_details EXPECTED TYPE: AssociationDetails', nil, nil)
|
1468
|
+
end
|
1469
|
+
@association_details = association_details
|
1470
|
+
@key_modified['association_details'] = 1
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
# The method to get the additional_column
|
1474
|
+
# @return A String value
|
1475
|
+
|
1476
|
+
def additional_column
|
1477
|
+
@additional_column
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
# The method to set the value to additional_column
|
1481
|
+
# @param additional_column [String] A String
|
1482
|
+
|
1483
|
+
def additional_column=(additional_column)
|
1484
|
+
if additional_column!=nil and !additional_column.is_a? String
|
1485
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: additional_column EXPECTED TYPE: String', nil, nil)
|
1486
|
+
end
|
1487
|
+
@additional_column = additional_column
|
1488
|
+
@key_modified['additional_column'] = 1
|
1489
|
+
end
|
1490
|
+
|
1491
|
+
# The method to get the field_label
|
1492
|
+
# @return A String value
|
1493
|
+
|
1494
|
+
def field_label
|
1495
|
+
@field_label
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
# The method to set the value to field_label
|
1499
|
+
# @param field_label [String] A String
|
1500
|
+
|
1501
|
+
def field_label=(field_label)
|
1502
|
+
if field_label!=nil and !field_label.is_a? String
|
1503
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: field_label EXPECTED TYPE: String', nil, nil)
|
1504
|
+
end
|
1505
|
+
@field_label = field_label
|
1506
|
+
@key_modified['field_label'] = 1
|
1507
|
+
end
|
1508
|
+
|
1509
|
+
# The method to get the global_picklist
|
1510
|
+
# @return A lang::Object value
|
1511
|
+
|
1512
|
+
def global_picklist
|
1513
|
+
@global_picklist
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
# The method to set the value to global_picklist
|
1517
|
+
# @param global_picklist [lang::Object] A lang::Object
|
1518
|
+
|
1519
|
+
def global_picklist=(global_picklist)
|
1520
|
+
@global_picklist = global_picklist
|
1521
|
+
@key_modified['global_picklist'] = 1
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
# The method to get the updateexistingrecords
|
1525
|
+
# @return A Boolean value
|
1526
|
+
|
1527
|
+
def updateexistingrecords
|
1528
|
+
@updateexistingrecords
|
1529
|
+
end
|
1530
|
+
|
1531
|
+
# The method to set the value to updateexistingrecords
|
1532
|
+
# @param updateexistingrecords [Boolean] A Boolean
|
1533
|
+
|
1534
|
+
def updateexistingrecords=(updateexistingrecords)
|
1535
|
+
if updateexistingrecords!=nil and ! [true, false].include?updateexistingrecords
|
1536
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: updateexistingrecords EXPECTED TYPE: Boolean', nil, nil)
|
1537
|
+
end
|
1538
|
+
@updateexistingrecords = updateexistingrecords
|
1539
|
+
@key_modified['_update_existing_records'] = 1
|
1540
|
+
end
|
1541
|
+
|
1542
|
+
# The method to get the number_separator
|
1543
|
+
# @return A Boolean value
|
1544
|
+
|
1545
|
+
def number_separator
|
1546
|
+
@number_separator
|
1547
|
+
end
|
1548
|
+
|
1549
|
+
# The method to set the value to number_separator
|
1550
|
+
# @param number_separator [Boolean] A Boolean
|
1551
|
+
|
1552
|
+
def number_separator=(number_separator)
|
1553
|
+
if number_separator!=nil and ! [true, false].include?number_separator
|
1554
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: number_separator EXPECTED TYPE: Boolean', nil, nil)
|
1555
|
+
end
|
1556
|
+
@number_separator = number_separator
|
1557
|
+
@key_modified['number_separator'] = 1
|
1558
|
+
end
|
1559
|
+
|
1560
|
+
# The method to get the textarea
|
1561
|
+
# @return An instance of Fields::Textarea
|
1562
|
+
|
1563
|
+
def textarea
|
1564
|
+
@textarea
|
1565
|
+
end
|
1566
|
+
|
1567
|
+
# The method to set the value to textarea
|
1568
|
+
# @param textarea [Fields::Textarea] An instance of Fields::Textarea
|
1569
|
+
|
1570
|
+
def textarea=(textarea)
|
1571
|
+
if textarea!=nil and !textarea.is_a? Fields::Textarea
|
1572
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: textarea EXPECTED TYPE: Textarea', nil, nil)
|
1573
|
+
end
|
1574
|
+
@textarea = textarea
|
1575
|
+
@key_modified['textarea'] = 1
|
1576
|
+
end
|
1577
|
+
|
1578
|
+
# The method to check if the user has modified the given key
|
1579
|
+
# @param key [String] A String
|
1580
|
+
# @return A Integer value
|
1581
|
+
|
1582
|
+
def is_key_modified(key)
|
1583
|
+
if key!=nil and !key.is_a? String
|
1584
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
1585
|
+
end
|
1586
|
+
if @key_modified.key?(key)
|
1587
|
+
return @key_modified[key]
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
nil
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
# The method to mark the given key as modified
|
1594
|
+
# @param key [String] A String
|
1595
|
+
# @param modification [Integer] A Integer
|
1596
|
+
|
1597
|
+
def set_key_modified(key, modification)
|
1598
|
+
if key!=nil and !key.is_a? String
|
1599
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
|
1600
|
+
end
|
1601
|
+
if modification!=nil and !modification.is_a? Integer
|
1602
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
|
1603
|
+
end
|
1604
|
+
@key_modified[key] = modification
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
end
|
1608
|
+
end
|
1609
|
+
end
|