ZCRMSDK 1.0.4 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/src/ZCRMSDK.rb +447 -0
- data/src/com/zoho/api/authenticator/oauth_token.rb +272 -0
- data/src/com/zoho/api/authenticator/store/db_store.rb +191 -0
- data/src/com/zoho/api/authenticator/store/file_store.rb +235 -0
- data/src/com/zoho/api/authenticator/store/token_store.rb +33 -0
- data/src/com/zoho/api/authenticator/token.rb +10 -0
- data/src/com/zoho/api/logger/sdk_logger.rb +78 -0
- data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rule.rb +215 -0
- data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +61 -0
- data/src/com/zoho/crm/api/assignment_rules/default_user.rb +80 -0
- data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/attachments/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/attachments/action_response.rb +10 -0
- data/src/com/zoho/crm/api/attachments/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/attachments/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/attachments/attachment.rb +405 -0
- data/src/com/zoho/crm/api/attachments/attachments_operations.rb +196 -0
- data/src/com/zoho/crm/api/attachments/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/attachments/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/attachments/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/attachments/success_response.rb +121 -0
- data/src/com/zoho/crm/api/blue_print/action_response.rb +10 -0
- data/src/com/zoho/crm/api/blue_print/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/blue_print/blue_print.rb +119 -0
- data/src/com/zoho/crm/api/blue_print/blue_print_operations.rb +67 -0
- data/src/com/zoho/crm/api/blue_print/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/blue_print/escalation.rb +80 -0
- data/src/com/zoho/crm/api/blue_print/field.rb +1127 -0
- data/src/com/zoho/crm/api/blue_print/next_transition.rb +118 -0
- data/src/com/zoho/crm/api/blue_print/process_info.rb +251 -0
- data/src/com/zoho/crm/api/blue_print/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/blue_print/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/blue_print/success_response.rb +121 -0
- data/src/com/zoho/crm/api/blue_print/transition.rb +271 -0
- data/src/com/zoho/crm/api/blue_print/validation_error.rb +137 -0
- data/src/com/zoho/crm/api/bulk_read/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/bulk_read/action_response.rb +10 -0
- data/src/com/zoho/crm/api/bulk_read/action_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/bulk_read/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +74 -0
- data/src/com/zoho/crm/api/bulk_read/call_back.rb +81 -0
- data/src/com/zoho/crm/api/bulk_read/criteria.rb +155 -0
- data/src/com/zoho/crm/api/bulk_read/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/bulk_read/job_detail.rb +196 -0
- data/src/com/zoho/crm/api/bulk_read/query.rb +138 -0
- data/src/com/zoho/crm/api/bulk_read/request_wrapper.rb +100 -0
- data/src/com/zoho/crm/api/bulk_read/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/bulk_read/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/bulk_read/result.rb +137 -0
- data/src/com/zoho/crm/api/bulk_read/success_response.rb +121 -0
- data/src/com/zoho/crm/api/bulk_write/action_response.rb +10 -0
- data/src/com/zoho/crm/api/bulk_write/api_exception.rb +239 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +112 -0
- data/src/com/zoho/crm/api/bulk_write/bulk_write_response.rb +216 -0
- data/src/com/zoho/crm/api/bulk_write/call_back.rb +81 -0
- data/src/com/zoho/crm/api/bulk_write/field_mapping.rb +156 -0
- data/src/com/zoho/crm/api/bulk_write/file.rb +157 -0
- data/src/com/zoho/crm/api/bulk_write/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/bulk_write/request_wrapper.rb +119 -0
- data/src/com/zoho/crm/api/bulk_write/resource.rb +215 -0
- data/src/com/zoho/crm/api/bulk_write/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/bulk_write/response_wrapper.rb +10 -0
- data/src/com/zoho/crm/api/bulk_write/result.rb +61 -0
- data/src/com/zoho/crm/api/bulk_write/success_response.rb +121 -0
- data/src/com/zoho/crm/api/contact_roles/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/action_response.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/contact_roles/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/contact_roles/contact_role.rb +99 -0
- data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +161 -0
- data/src/com/zoho/crm/api/contact_roles/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/contact_roles/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/contact_roles/success_response.rb +121 -0
- data/src/com/zoho/crm/api/currencies/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/currencies/action_response.rb +10 -0
- data/src/com/zoho/crm/api/currencies/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/api_exception.rb +127 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/currencies/base_currency_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/base_currency_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/currencies/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/currencies/currencies_operations.rb +156 -0
- data/src/com/zoho/crm/api/currencies/currency.rb +290 -0
- data/src/com/zoho/crm/api/currencies/format.rb +100 -0
- data/src/com/zoho/crm/api/currencies/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/currencies/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/currencies/success_response.rb +121 -0
- data/src/com/zoho/crm/api/custom_views/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/custom_views/criteria.rb +136 -0
- data/src/com/zoho/crm/api/custom_views/custom_view.rb +386 -0
- data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +75 -0
- data/src/com/zoho/crm/api/custom_views/info.rb +156 -0
- data/src/com/zoho/crm/api/custom_views/range.rb +80 -0
- data/src/com/zoho/crm/api/custom_views/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/custom_views/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/custom_views/shared_to.rb +118 -0
- data/src/com/zoho/crm/api/custom_views/translation.rb +118 -0
- data/src/com/zoho/crm/api/dc/au_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/cn_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/datacenter.rb +21 -0
- data/src/com/zoho/crm/api/dc/eu_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/in_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/dc/us_datacenter.rb +18 -0
- data/src/com/zoho/crm/api/email_templates/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/email_templates/attachment.rb +118 -0
- data/src/com/zoho/crm/api/email_templates/email_template.rb +390 -0
- data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +61 -0
- data/src/com/zoho/crm/api/email_templates/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/exception/sdk_exception.rb +47 -0
- data/src/com/zoho/crm/api/field_attachments/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/field_attachments/body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +52 -0
- data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/field_attachments/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/fields/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/fields/association_details.rb +80 -0
- data/src/com/zoho/crm/api/fields/auto_number.rb +99 -0
- data/src/com/zoho/crm/api/fields/crypt.rb +156 -0
- data/src/com/zoho/crm/api/fields/currency.rb +80 -0
- data/src/com/zoho/crm/api/fields/external.rb +99 -0
- data/src/com/zoho/crm/api/fields/field.rb +1110 -0
- data/src/com/zoho/crm/api/fields/fields_operations.rb +71 -0
- data/src/com/zoho/crm/api/fields/formula.rb +80 -0
- data/src/com/zoho/crm/api/fields/history_tracking.rb +80 -0
- data/src/com/zoho/crm/api/fields/lookup_field.rb +80 -0
- data/src/com/zoho/crm/api/fields/maps.rb +80 -0
- data/src/com/zoho/crm/api/fields/module.rb +157 -0
- data/src/com/zoho/crm/api/fields/multi_module_lookup.rb +99 -0
- data/src/com/zoho/crm/api/fields/multi_select_lookup.rb +175 -0
- data/src/com/zoho/crm/api/fields/multi_user_lookup.rb +175 -0
- data/src/com/zoho/crm/api/fields/pick_list_value.rb +194 -0
- data/src/com/zoho/crm/api/fields/private.rb +99 -0
- data/src/com/zoho/crm/api/fields/related_details.rb +156 -0
- data/src/com/zoho/crm/api/fields/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/fields/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/fields/tool_tip.rb +80 -0
- data/src/com/zoho/crm/api/fields/unique.rb +61 -0
- data/src/com/zoho/crm/api/fields/view_type.rb +118 -0
- data/src/com/zoho/crm/api/files/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/files/action_response.rb +10 -0
- data/src/com/zoho/crm/api/files/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/files/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/files/body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/files/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/files/file_operations.rb +75 -0
- data/src/com/zoho/crm/api/files/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/files/success_response.rb +121 -0
- data/src/com/zoho/crm/api/header.rb +10 -0
- data/src/com/zoho/crm/api/header_map.rb +55 -0
- data/src/com/zoho/crm/api/initializer.rb +220 -0
- data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_template.rb +352 -0
- data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +82 -0
- data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/layouts/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/layouts/layout.rb +310 -0
- data/src/com/zoho/crm/api/layouts/layouts_operations.rb +61 -0
- data/src/com/zoho/crm/api/layouts/properties.rb +100 -0
- data/src/com/zoho/crm/api/layouts/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/layouts/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/layouts/section.rb +252 -0
- data/src/com/zoho/crm/api/modules/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/modules/action_response.rb +10 -0
- data/src/com/zoho/crm/api/modules/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/modules/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/modules/argument.rb +80 -0
- data/src/com/zoho/crm/api/modules/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/modules/module.rb +939 -0
- data/src/com/zoho/crm/api/modules/modules_operations.rb +111 -0
- data/src/com/zoho/crm/api/modules/related_list_properties.rb +99 -0
- data/src/com/zoho/crm/api/modules/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/modules/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/modules/success_response.rb +121 -0
- data/src/com/zoho/crm/api/modules/territory.rb +99 -0
- data/src/com/zoho/crm/api/notes/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/notes/action_response.rb +10 -0
- data/src/com/zoho/crm/api/notes/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notes/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/notes/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/notes/info.rb +118 -0
- data/src/com/zoho/crm/api/notes/note.rb +368 -0
- data/src/com/zoho/crm/api/notes/notes_operations.rb +219 -0
- data/src/com/zoho/crm/api/notes/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/notes/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/notes/success_response.rb +121 -0
- data/src/com/zoho/crm/api/notification/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/notification/action_response.rb +10 -0
- data/src/com/zoho/crm/api/notification/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/notification/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/notification/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/notification/info.rb +118 -0
- data/src/com/zoho/crm/api/notification/notification.rb +251 -0
- data/src/com/zoho/crm/api/notification/notification_operations.rb +164 -0
- data/src/com/zoho/crm/api/notification/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/notification/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/notification/success_response.rb +121 -0
- data/src/com/zoho/crm/api/org/action_response.rb +10 -0
- data/src/com/zoho/crm/api/org/api_exception.rb +123 -0
- data/src/com/zoho/crm/api/org/file_body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/org/hierarchy_preference.rb +61 -0
- data/src/com/zoho/crm/api/org/license_details.rb +156 -0
- data/src/com/zoho/crm/api/org/org.rb +669 -0
- data/src/com/zoho/crm/api/org/org_operations.rb +49 -0
- data/src/com/zoho/crm/api/org/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/org/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/org/success_response.rb +121 -0
- data/src/com/zoho/crm/api/param.rb +10 -0
- data/src/com/zoho/crm/api/parameter_map.rb +54 -0
- data/src/com/zoho/crm/api/pipeline/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/action_response.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/pipeline/forecast_category.rb +80 -0
- data/src/com/zoho/crm/api/pipeline/pick_list_value.rb +175 -0
- data/src/com/zoho/crm/api/pipeline/pipeline.rb +213 -0
- data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +165 -0
- data/src/com/zoho/crm/api/pipeline/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/stage.rb +80 -0
- data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
- data/src/com/zoho/crm/api/pipeline/transfer_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/transfer_action_response.rb +10 -0
- data/src/com/zoho/crm/api/pipeline/transfer_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/pipeline/transfer_and_delete_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/pipeline/transfer_pipe_line.rb +80 -0
- data/src/com/zoho/crm/api/profiles/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/profiles/category.rb +118 -0
- data/src/com/zoho/crm/api/profiles/default_view.rb +99 -0
- data/src/com/zoho/crm/api/profiles/permission_detail.rb +137 -0
- data/src/com/zoho/crm/api/profiles/profile.rb +328 -0
- data/src/com/zoho/crm/api/profiles/profiles_operations.rb +61 -0
- data/src/com/zoho/crm/api/profiles/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/profiles/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/profiles/section.rb +80 -0
- data/src/com/zoho/crm/api/query/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/query/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/query/query_operations.rb +35 -0
- data/src/com/zoho/crm/api/query/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/query/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/record/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/action_response.rb +10 -0
- data/src/com/zoho/crm/api/record/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/api_exception.rb +145 -0
- data/src/com/zoho/crm/api/record/body_wrapper.rb +137 -0
- data/src/com/zoho/crm/api/record/carry_over_tags.rb +99 -0
- data/src/com/zoho/crm/api/record/comment.rb +118 -0
- data/src/com/zoho/crm/api/record/consent.rb +185 -0
- data/src/com/zoho/crm/api/record/convert_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/convert_action_response.rb +10 -0
- data/src/com/zoho/crm/api/record/convert_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/convert_body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/record/count_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/count_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/criteria.rb +135 -0
- data/src/com/zoho/crm/api/record/deleted_record.rb +157 -0
- data/src/com/zoho/crm/api/record/deleted_records_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/deleted_records_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/record/download_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/field.rb +2109 -0
- data/src/com/zoho/crm/api/record/file_body_wrapper.rb +66 -0
- data/src/com/zoho/crm/api/record/file_details.rb +327 -0
- data/src/com/zoho/crm/api/record/file_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/image_upload.rb +213 -0
- data/src/com/zoho/crm/api/record/info.rb +118 -0
- data/src/com/zoho/crm/api/record/lead_converter.rb +194 -0
- data/src/com/zoho/crm/api/record/line_item_product.rb +65 -0
- data/src/com/zoho/crm/api/record/line_tax.rb +137 -0
- data/src/com/zoho/crm/api/record/mass_update.rb +140 -0
- data/src/com/zoho/crm/api/record/mass_update_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_action_response.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +156 -0
- data/src/com/zoho/crm/api/record/mass_update_response.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_response_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/mass_update_response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/record/mass_update_success_response.rb +121 -0
- data/src/com/zoho/crm/api/record/mass_update_territory.rb +80 -0
- data/src/com/zoho/crm/api/record/multi_select_lookup.rb +99 -0
- data/src/com/zoho/crm/api/record/multi_select_picklist.rb +80 -0
- data/src/com/zoho/crm/api/record/options.rb +10 -0
- data/src/com/zoho/crm/api/record/participants.rb +116 -0
- data/src/com/zoho/crm/api/record/price_book.rb +31 -0
- data/src/com/zoho/crm/api/record/pricing_details.rb +65 -0
- data/src/com/zoho/crm/api/record/record.rb +192 -0
- data/src/com/zoho/crm/api/record/record_operations.rb +847 -0
- data/src/com/zoho/crm/api/record/recurring_activity.rb +61 -0
- data/src/com/zoho/crm/api/record/remind_at.rb +61 -0
- data/src/com/zoho/crm/api/record/reminder.rb +80 -0
- data/src/com/zoho/crm/api/record/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/record/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/record/success_response.rb +161 -0
- data/src/com/zoho/crm/api/record/successful_convert.rb +101 -0
- data/src/com/zoho/crm/api/record/tax.rb +80 -0
- data/src/com/zoho/crm/api/record/territory.rb +138 -0
- data/src/com/zoho/crm/api/record/widget.rb +80 -0
- data/src/com/zoho/crm/api/record/wizard.rb +80 -0
- data/src/com/zoho/crm/api/related_lists/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/related_lists/related_list.rb +251 -0
- data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +61 -0
- data/src/com/zoho/crm/api/related_lists/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/related_lists/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/related_records/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/related_records/action_response.rb +10 -0
- data/src/com/zoho/crm/api/related_records/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/related_records/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/related_records/body_wrapper.rb +62 -0
- data/src/com/zoho/crm/api/related_records/file_body_wrapper.rb +64 -0
- data/src/com/zoho/crm/api/related_records/related_records_operations.rb +235 -0
- data/src/com/zoho/crm/api/related_records/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/related_records/response_wrapper.rb +84 -0
- data/src/com/zoho/crm/api/related_records/success_response.rb +121 -0
- data/src/com/zoho/crm/api/request_proxy.rb +15 -0
- data/src/com/zoho/crm/api/roles/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/roles/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/roles/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/roles/role.rb +195 -0
- data/src/com/zoho/crm/api/roles/roles_operations.rb +47 -0
- data/src/com/zoho/crm/api/sdk_config.rb +12 -0
- data/src/com/zoho/crm/api/send_mail/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/action_response.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +80 -0
- data/src/com/zoho/crm/api/send_mail/inventory_details.rb +100 -0
- data/src/com/zoho/crm/api/send_mail/mail.rb +423 -0
- data/src/com/zoho/crm/api/send_mail/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +61 -0
- data/src/com/zoho/crm/api/send_mail/success_response.rb +121 -0
- data/src/com/zoho/crm/api/send_mail/template.rb +10 -0
- data/src/com/zoho/crm/api/send_mail/user_address.rb +137 -0
- data/src/com/zoho/crm/api/share_records/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/share_records/action_response.rb +10 -0
- data/src/com/zoho/crm/api/share_records/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/share_records/api_exception.rb +129 -0
- data/src/com/zoho/crm/api/share_records/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/share_records/delete_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/share_records/delete_action_response.rb +10 -0
- data/src/com/zoho/crm/api/share_records/delete_action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/share_records/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/share_records/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/share_records/share_record.rb +157 -0
- data/src/com/zoho/crm/api/share_records/share_records_operations.rb +128 -0
- data/src/com/zoho/crm/api/share_records/shared_through.rb +100 -0
- data/src/com/zoho/crm/api/share_records/success_response.rb +123 -0
- data/src/com/zoho/crm/api/tags/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/action_response.rb +10 -0
- data/src/com/zoho/crm/api/tags/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/api_exception.rb +131 -0
- data/src/com/zoho/crm/api/tags/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/tags/conflict_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/tags/count_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/count_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/tags/info.rb +80 -0
- data/src/com/zoho/crm/api/tags/merge_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/tags/record_action_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/record_action_response.rb +10 -0
- data/src/com/zoho/crm/api/tags/record_action_wrapper.rb +120 -0
- data/src/com/zoho/crm/api/tags/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/tags/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/tags/success_response.rb +123 -0
- data/src/com/zoho/crm/api/tags/tag.rb +176 -0
- data/src/com/zoho/crm/api/tags/tags_operations.rb +387 -0
- data/src/com/zoho/crm/api/taxes/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/taxes/action_response.rb +10 -0
- data/src/com/zoho/crm/api/taxes/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/taxes/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/taxes/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/taxes/preference.rb +80 -0
- data/src/com/zoho/crm/api/taxes/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/taxes/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/taxes/success_response.rb +121 -0
- data/src/com/zoho/crm/api/taxes/tax.rb +137 -0
- data/src/com/zoho/crm/api/taxes/taxes_operations.rb +136 -0
- data/src/com/zoho/crm/api/territories/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/territories/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/territories/response_wrapper.rb +83 -0
- data/src/com/zoho/crm/api/territories/territories_operations.rb +47 -0
- data/src/com/zoho/crm/api/territories/territory.rb +272 -0
- data/src/com/zoho/crm/api/user_signature.rb +27 -0
- data/src/com/zoho/crm/api/users/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/users/action_response.rb +10 -0
- data/src/com/zoho/crm/api/users/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/users/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/users/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/users/customize_info.rb +156 -0
- data/src/com/zoho/crm/api/users/info.rb +118 -0
- data/src/com/zoho/crm/api/users/request_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/users/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/users/response_wrapper.rb +82 -0
- data/src/com/zoho/crm/api/users/shift.rb +80 -0
- data/src/com/zoho/crm/api/users/success_response.rb +121 -0
- data/src/com/zoho/crm/api/users/tab_theme.rb +80 -0
- data/src/com/zoho/crm/api/users/territory.rb +99 -0
- data/src/com/zoho/crm/api/users/theme.rb +156 -0
- data/src/com/zoho/crm/api/users/user.rb +730 -0
- data/src/com/zoho/crm/api/users/users_operations.rb +181 -0
- data/src/com/zoho/crm/api/util/api_http_connector.rb +112 -0
- data/src/com/zoho/crm/api/util/api_response.rb +16 -0
- data/src/com/zoho/crm/api/util/choice.rb +9 -0
- data/src/com/zoho/crm/api/util/common_api_handler.rb +237 -0
- data/src/com/zoho/crm/api/util/constants.rb +661 -0
- data/src/com/zoho/crm/api/util/converter.rb +236 -0
- data/src/com/zoho/crm/api/util/data_type_converter.rb +168 -0
- data/src/com/zoho/crm/api/util/downloader.rb +83 -0
- data/src/com/zoho/crm/api/util/form_data_converter.rb +156 -0
- data/src/com/zoho/crm/api/util/header_param_validator.rb +55 -0
- data/src/com/zoho/crm/api/util/json_converter.rb +724 -0
- data/src/com/zoho/crm/api/util/model.rb +5 -0
- data/src/com/zoho/crm/api/util/module_fields_handler.rb +78 -0
- data/src/com/zoho/crm/api/util/stream_wrapper.rb +37 -0
- data/src/com/zoho/crm/api/util/utility.rb +914 -0
- data/src/com/zoho/crm/api/variable_groups/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/variable_groups/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/variable_groups/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variable_groups/variable_group.rb +137 -0
- data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +66 -0
- data/src/com/zoho/crm/api/variables/action_handler.rb +10 -0
- data/src/com/zoho/crm/api/variables/action_response.rb +10 -0
- data/src/com/zoho/crm/api/variables/action_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variables/api_exception.rb +125 -0
- data/src/com/zoho/crm/api/variables/body_wrapper.rb +61 -0
- data/src/com/zoho/crm/api/variables/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/variables/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/variables/success_response.rb +121 -0
- data/src/com/zoho/crm/api/variables/variable.rb +173 -0
- data/src/com/zoho/crm/api/variables/variables_operations.rb +241 -0
- data/src/com/zoho/crm/api/wizards/api_exception.rb +121 -0
- data/src/com/zoho/crm/api/wizards/button.rb +252 -0
- data/src/com/zoho/crm/api/wizards/chart_data.rb +118 -0
- data/src/com/zoho/crm/api/wizards/connection.rb +80 -0
- data/src/com/zoho/crm/api/wizards/container.rb +119 -0
- data/src/com/zoho/crm/api/wizards/node.rb +118 -0
- data/src/com/zoho/crm/api/wizards/response_handler.rb +10 -0
- data/src/com/zoho/crm/api/wizards/response_wrapper.rb +63 -0
- data/src/com/zoho/crm/api/wizards/screen.rb +99 -0
- data/src/com/zoho/crm/api/wizards/segment.rb +176 -0
- data/src/com/zoho/crm/api/wizards/transition.rb +80 -0
- data/src/com/zoho/crm/api/wizards/wizard.rb +273 -0
- data/src/com/zoho/crm/api/wizards/wizards_operations.rb +61 -0
- data/src/resources/JSONDetails.json +1 -0
- data/src/version.rb +3 -0
- metadata +476 -41
- data/lib/ZCRMSDK.rb +0 -14
- data/lib/ZCRMSDK/handler.rb +0 -3290
- data/lib/ZCRMSDK/oauth_client.rb +0 -257
- data/lib/ZCRMSDK/oauth_utility.rb +0 -161
- data/lib/ZCRMSDK/operations.rb +0 -1091
- data/lib/ZCRMSDK/org.rb +0 -174
- data/lib/ZCRMSDK/persistence.rb +0 -129
- data/lib/ZCRMSDK/request.rb +0 -83
- data/lib/ZCRMSDK/response.rb +0 -216
- data/lib/ZCRMSDK/restclient.rb +0 -65
- data/lib/ZCRMSDK/test.rb +0 -5748
- data/lib/ZCRMSDK/utility.rb +0 -310
- data/lib/ZCRMSDK/version.rb +0 -5
@@ -0,0 +1,2109 @@
|
|
1
|
+
require_relative '../layouts/layout'
|
2
|
+
require_relative '../record/participants'
|
3
|
+
require_relative '../record/pricing_details'
|
4
|
+
require_relative '../record/record'
|
5
|
+
require_relative '../record/recurring_activity'
|
6
|
+
require_relative '../record/remind_at'
|
7
|
+
require_relative '../record/tax'
|
8
|
+
require_relative '../tags/tag'
|
9
|
+
require_relative '../users/user'
|
10
|
+
require_relative '../util/choice'
|
11
|
+
|
12
|
+
module Record
|
13
|
+
class Field
|
14
|
+
|
15
|
+
# Creates an instance of Field with the given parameters
|
16
|
+
# @param api_name [String] A String
|
17
|
+
def initialize(api_name)
|
18
|
+
if api_name!=nil and !api_name.is_a? String
|
19
|
+
raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: api_name EXPECTED TYPE: String', nil, nil)
|
20
|
+
end
|
21
|
+
@api_name = api_name
|
22
|
+
end
|
23
|
+
|
24
|
+
# The method to get the api_name
|
25
|
+
# @return A String value
|
26
|
+
|
27
|
+
def api_name
|
28
|
+
@api_name
|
29
|
+
end
|
30
|
+
|
31
|
+
class Products
|
32
|
+
@@Product_category = Field.new('Product_Category')
|
33
|
+
def self.Product_category
|
34
|
+
@@Product_category
|
35
|
+
end
|
36
|
+
@@Qty_in_demand = Field.new('Qty_in_Demand')
|
37
|
+
def self.Qty_in_demand
|
38
|
+
@@Qty_in_demand
|
39
|
+
end
|
40
|
+
@@Owner = Field.new('Owner')
|
41
|
+
def self.Owner
|
42
|
+
@@Owner
|
43
|
+
end
|
44
|
+
@@Description = Field.new('Description')
|
45
|
+
def self.Description
|
46
|
+
@@Description
|
47
|
+
end
|
48
|
+
@@Vendor_name = Field.new('Vendor_Name')
|
49
|
+
def self.Vendor_name
|
50
|
+
@@Vendor_name
|
51
|
+
end
|
52
|
+
@@Tax = Field.new('Tax')
|
53
|
+
def self.Tax
|
54
|
+
@@Tax
|
55
|
+
end
|
56
|
+
@@Sales_start_date = Field.new('Sales_Start_Date')
|
57
|
+
def self.Sales_start_date
|
58
|
+
@@Sales_start_date
|
59
|
+
end
|
60
|
+
@@Product_active = Field.new('Product_Active')
|
61
|
+
def self.Product_active
|
62
|
+
@@Product_active
|
63
|
+
end
|
64
|
+
@@Record_image = Field.new('Record_Image')
|
65
|
+
def self.Record_image
|
66
|
+
@@Record_image
|
67
|
+
end
|
68
|
+
@@Modified_by = Field.new('Modified_By')
|
69
|
+
def self.Modified_by
|
70
|
+
@@Modified_by
|
71
|
+
end
|
72
|
+
@@Product_code = Field.new('Product_Code')
|
73
|
+
def self.Product_code
|
74
|
+
@@Product_code
|
75
|
+
end
|
76
|
+
@@Manufacturer = Field.new('Manufacturer')
|
77
|
+
def self.Manufacturer
|
78
|
+
@@Manufacturer
|
79
|
+
end
|
80
|
+
@@id = Field.new('id')
|
81
|
+
def self.id
|
82
|
+
@@id
|
83
|
+
end
|
84
|
+
@@Support_expiry_date = Field.new('Support_Expiry_Date')
|
85
|
+
def self.Support_expiry_date
|
86
|
+
@@Support_expiry_date
|
87
|
+
end
|
88
|
+
@@Modified_time = Field.new('Modified_Time')
|
89
|
+
def self.Modified_time
|
90
|
+
@@Modified_time
|
91
|
+
end
|
92
|
+
@@Created_time = Field.new('Created_Time')
|
93
|
+
def self.Created_time
|
94
|
+
@@Created_time
|
95
|
+
end
|
96
|
+
@@Commission_rate = Field.new('Commission_Rate')
|
97
|
+
def self.Commission_rate
|
98
|
+
@@Commission_rate
|
99
|
+
end
|
100
|
+
@@Product_name = Field.new('Product_Name')
|
101
|
+
def self.Product_name
|
102
|
+
@@Product_name
|
103
|
+
end
|
104
|
+
@@Handler = Field.new('Handler')
|
105
|
+
def self.Handler
|
106
|
+
@@Handler
|
107
|
+
end
|
108
|
+
@@Support_start_date = Field.new('Support_Start_Date')
|
109
|
+
def self.Support_start_date
|
110
|
+
@@Support_start_date
|
111
|
+
end
|
112
|
+
@@Usage_unit = Field.new('Usage_Unit')
|
113
|
+
def self.Usage_unit
|
114
|
+
@@Usage_unit
|
115
|
+
end
|
116
|
+
@@Qty_ordered = Field.new('Qty_Ordered')
|
117
|
+
def self.Qty_ordered
|
118
|
+
@@Qty_ordered
|
119
|
+
end
|
120
|
+
@@Qty_in_stock = Field.new('Qty_in_Stock')
|
121
|
+
def self.Qty_in_stock
|
122
|
+
@@Qty_in_stock
|
123
|
+
end
|
124
|
+
@@Created_by = Field.new('Created_By')
|
125
|
+
def self.Created_by
|
126
|
+
@@Created_by
|
127
|
+
end
|
128
|
+
@@Tag = Field.new('Tag')
|
129
|
+
def self.Tag
|
130
|
+
@@Tag
|
131
|
+
end
|
132
|
+
@@Sales_end_date = Field.new('Sales_End_Date')
|
133
|
+
def self.Sales_end_date
|
134
|
+
@@Sales_end_date
|
135
|
+
end
|
136
|
+
@@Unit_price = Field.new('Unit_Price')
|
137
|
+
def self.Unit_price
|
138
|
+
@@Unit_price
|
139
|
+
end
|
140
|
+
@@Taxable = Field.new('Taxable')
|
141
|
+
def self.Taxable
|
142
|
+
@@Taxable
|
143
|
+
end
|
144
|
+
@@Reorder_level = Field.new('Reorder_Level')
|
145
|
+
def self.Reorder_level
|
146
|
+
@@Reorder_level
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
class Tasks
|
151
|
+
@@Status = Field.new('Status')
|
152
|
+
def self.Status
|
153
|
+
@@Status
|
154
|
+
end
|
155
|
+
@@Owner = Field.new('Owner')
|
156
|
+
def self.Owner
|
157
|
+
@@Owner
|
158
|
+
end
|
159
|
+
@@Modified_time = Field.new('Modified_Time')
|
160
|
+
def self.Modified_time
|
161
|
+
@@Modified_time
|
162
|
+
end
|
163
|
+
@@Description = Field.new('Description')
|
164
|
+
def self.Description
|
165
|
+
@@Description
|
166
|
+
end
|
167
|
+
@@Due_date = Field.new('Due_Date')
|
168
|
+
def self.Due_date
|
169
|
+
@@Due_date
|
170
|
+
end
|
171
|
+
@@Priority = Field.new('Priority')
|
172
|
+
def self.Priority
|
173
|
+
@@Priority
|
174
|
+
end
|
175
|
+
@@Created_time = Field.new('Created_Time')
|
176
|
+
def self.Created_time
|
177
|
+
@@Created_time
|
178
|
+
end
|
179
|
+
@@Closed_time = Field.new('Closed_Time')
|
180
|
+
def self.Closed_time
|
181
|
+
@@Closed_time
|
182
|
+
end
|
183
|
+
@@Subject = Field.new('Subject')
|
184
|
+
def self.Subject
|
185
|
+
@@Subject
|
186
|
+
end
|
187
|
+
@@Send_notification_email = Field.new('Send_Notification_Email')
|
188
|
+
def self.Send_notification_email
|
189
|
+
@@Send_notification_email
|
190
|
+
end
|
191
|
+
@@Modified_by = Field.new('Modified_By')
|
192
|
+
def self.Modified_by
|
193
|
+
@@Modified_by
|
194
|
+
end
|
195
|
+
@@Recurring_activity = Field.new('Recurring_Activity')
|
196
|
+
def self.Recurring_activity
|
197
|
+
@@Recurring_activity
|
198
|
+
end
|
199
|
+
@@What_id = Field.new('What_Id')
|
200
|
+
def self.What_id
|
201
|
+
@@What_id
|
202
|
+
end
|
203
|
+
@@id = Field.new('id')
|
204
|
+
def self.id
|
205
|
+
@@id
|
206
|
+
end
|
207
|
+
@@Created_by = Field.new('Created_By')
|
208
|
+
def self.Created_by
|
209
|
+
@@Created_by
|
210
|
+
end
|
211
|
+
@@Tag = Field.new('Tag')
|
212
|
+
def self.Tag
|
213
|
+
@@Tag
|
214
|
+
end
|
215
|
+
@@Remind_at = Field.new('Remind_At')
|
216
|
+
def self.Remind_at
|
217
|
+
@@Remind_at
|
218
|
+
end
|
219
|
+
@@Who_id = Field.new('Who_Id')
|
220
|
+
def self.Who_id
|
221
|
+
@@Who_id
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
class Vendors
|
226
|
+
@@Owner = Field.new('Owner')
|
227
|
+
def self.Owner
|
228
|
+
@@Owner
|
229
|
+
end
|
230
|
+
@@Modified_time = Field.new('Modified_Time')
|
231
|
+
def self.Modified_time
|
232
|
+
@@Modified_time
|
233
|
+
end
|
234
|
+
@@Email = Field.new('Email')
|
235
|
+
def self.Email
|
236
|
+
@@Email
|
237
|
+
end
|
238
|
+
@@Category = Field.new('Category')
|
239
|
+
def self.Category
|
240
|
+
@@Category
|
241
|
+
end
|
242
|
+
@@Description = Field.new('Description')
|
243
|
+
def self.Description
|
244
|
+
@@Description
|
245
|
+
end
|
246
|
+
@@Vendor_name = Field.new('Vendor_Name')
|
247
|
+
def self.Vendor_name
|
248
|
+
@@Vendor_name
|
249
|
+
end
|
250
|
+
@@Created_time = Field.new('Created_Time')
|
251
|
+
def self.Created_time
|
252
|
+
@@Created_time
|
253
|
+
end
|
254
|
+
@@Website = Field.new('Website')
|
255
|
+
def self.Website
|
256
|
+
@@Website
|
257
|
+
end
|
258
|
+
@@City = Field.new('City')
|
259
|
+
def self.City
|
260
|
+
@@City
|
261
|
+
end
|
262
|
+
@@Record_image = Field.new('Record_Image')
|
263
|
+
def self.Record_image
|
264
|
+
@@Record_image
|
265
|
+
end
|
266
|
+
@@Modified_by = Field.new('Modified_By')
|
267
|
+
def self.Modified_by
|
268
|
+
@@Modified_by
|
269
|
+
end
|
270
|
+
@@Phone = Field.new('Phone')
|
271
|
+
def self.Phone
|
272
|
+
@@Phone
|
273
|
+
end
|
274
|
+
@@State = Field.new('State')
|
275
|
+
def self.State
|
276
|
+
@@State
|
277
|
+
end
|
278
|
+
@@GL_account = Field.new('GL_Account')
|
279
|
+
def self.GL_account
|
280
|
+
@@GL_account
|
281
|
+
end
|
282
|
+
@@Street = Field.new('Street')
|
283
|
+
def self.Street
|
284
|
+
@@Street
|
285
|
+
end
|
286
|
+
@@Country = Field.new('Country')
|
287
|
+
def self.Country
|
288
|
+
@@Country
|
289
|
+
end
|
290
|
+
@@Zip_code = Field.new('Zip_Code')
|
291
|
+
def self.Zip_code
|
292
|
+
@@Zip_code
|
293
|
+
end
|
294
|
+
@@id = Field.new('id')
|
295
|
+
def self.id
|
296
|
+
@@id
|
297
|
+
end
|
298
|
+
@@Created_by = Field.new('Created_By')
|
299
|
+
def self.Created_by
|
300
|
+
@@Created_by
|
301
|
+
end
|
302
|
+
@@Tag = Field.new('Tag')
|
303
|
+
def self.Tag
|
304
|
+
@@Tag
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
class Calls
|
309
|
+
@@Call_duration = Field.new('Call_Duration')
|
310
|
+
def self.Call_duration
|
311
|
+
@@Call_duration
|
312
|
+
end
|
313
|
+
@@Owner = Field.new('Owner')
|
314
|
+
def self.Owner
|
315
|
+
@@Owner
|
316
|
+
end
|
317
|
+
@@Modified_time = Field.new('Modified_Time')
|
318
|
+
def self.Modified_time
|
319
|
+
@@Modified_time
|
320
|
+
end
|
321
|
+
@@Description = Field.new('Description')
|
322
|
+
def self.Description
|
323
|
+
@@Description
|
324
|
+
end
|
325
|
+
@@Reminder = Field.new('Reminder')
|
326
|
+
def self.Reminder
|
327
|
+
@@Reminder
|
328
|
+
end
|
329
|
+
@@Caller_id = Field.new('Caller_ID')
|
330
|
+
def self.Caller_id
|
331
|
+
@@Caller_id
|
332
|
+
end
|
333
|
+
@@CTI_entry = Field.new('CTI_Entry')
|
334
|
+
def self.CTI_entry
|
335
|
+
@@CTI_entry
|
336
|
+
end
|
337
|
+
@@Created_time = Field.new('Created_Time')
|
338
|
+
def self.Created_time
|
339
|
+
@@Created_time
|
340
|
+
end
|
341
|
+
@@Call_start_time = Field.new('Call_Start_Time')
|
342
|
+
def self.Call_start_time
|
343
|
+
@@Call_start_time
|
344
|
+
end
|
345
|
+
@@Subject = Field.new('Subject')
|
346
|
+
def self.Subject
|
347
|
+
@@Subject
|
348
|
+
end
|
349
|
+
@@Call_agenda = Field.new('Call_Agenda')
|
350
|
+
def self.Call_agenda
|
351
|
+
@@Call_agenda
|
352
|
+
end
|
353
|
+
@@Call_result = Field.new('Call_Result')
|
354
|
+
def self.Call_result
|
355
|
+
@@Call_result
|
356
|
+
end
|
357
|
+
@@Call_type = Field.new('Call_Type')
|
358
|
+
def self.Call_type
|
359
|
+
@@Call_type
|
360
|
+
end
|
361
|
+
@@Modified_by = Field.new('Modified_By')
|
362
|
+
def self.Modified_by
|
363
|
+
@@Modified_by
|
364
|
+
end
|
365
|
+
@@What_id = Field.new('What_Id')
|
366
|
+
def self.What_id
|
367
|
+
@@What_id
|
368
|
+
end
|
369
|
+
@@Call_duration_in_seconds = Field.new('Call_Duration_in_seconds')
|
370
|
+
def self.Call_duration_in_seconds
|
371
|
+
@@Call_duration_in_seconds
|
372
|
+
end
|
373
|
+
@@Call_purpose = Field.new('Call_Purpose')
|
374
|
+
def self.Call_purpose
|
375
|
+
@@Call_purpose
|
376
|
+
end
|
377
|
+
@@id = Field.new('id')
|
378
|
+
def self.id
|
379
|
+
@@id
|
380
|
+
end
|
381
|
+
@@Created_by = Field.new('Created_By')
|
382
|
+
def self.Created_by
|
383
|
+
@@Created_by
|
384
|
+
end
|
385
|
+
@@Tag = Field.new('Tag')
|
386
|
+
def self.Tag
|
387
|
+
@@Tag
|
388
|
+
end
|
389
|
+
@@Dialled_number = Field.new('Dialled_Number')
|
390
|
+
def self.Dialled_number
|
391
|
+
@@Dialled_number
|
392
|
+
end
|
393
|
+
@@Call_status = Field.new('Call_Status')
|
394
|
+
def self.Call_status
|
395
|
+
@@Call_status
|
396
|
+
end
|
397
|
+
@@Who_id = Field.new('Who_Id')
|
398
|
+
def self.Who_id
|
399
|
+
@@Who_id
|
400
|
+
end
|
401
|
+
end
|
402
|
+
|
403
|
+
class Leads
|
404
|
+
@@Owner = Field.new('Owner')
|
405
|
+
def self.Owner
|
406
|
+
@@Owner
|
407
|
+
end
|
408
|
+
@@Company = Field.new('Company')
|
409
|
+
def self.Company
|
410
|
+
@@Company
|
411
|
+
end
|
412
|
+
@@Email = Field.new('Email')
|
413
|
+
def self.Email
|
414
|
+
@@Email
|
415
|
+
end
|
416
|
+
@@Description = Field.new('Description')
|
417
|
+
def self.Description
|
418
|
+
@@Description
|
419
|
+
end
|
420
|
+
@@Rating = Field.new('Rating')
|
421
|
+
def self.Rating
|
422
|
+
@@Rating
|
423
|
+
end
|
424
|
+
@@Website = Field.new('Website')
|
425
|
+
def self.Website
|
426
|
+
@@Website
|
427
|
+
end
|
428
|
+
@@Twitter = Field.new('Twitter')
|
429
|
+
def self.Twitter
|
430
|
+
@@Twitter
|
431
|
+
end
|
432
|
+
@@Salutation = Field.new('Salutation')
|
433
|
+
def self.Salutation
|
434
|
+
@@Salutation
|
435
|
+
end
|
436
|
+
@@Last_activity_time = Field.new('Last_Activity_Time')
|
437
|
+
def self.Last_activity_time
|
438
|
+
@@Last_activity_time
|
439
|
+
end
|
440
|
+
@@First_name = Field.new('First_Name')
|
441
|
+
def self.First_name
|
442
|
+
@@First_name
|
443
|
+
end
|
444
|
+
@@Full_name = Field.new('Full_Name')
|
445
|
+
def self.Full_name
|
446
|
+
@@Full_name
|
447
|
+
end
|
448
|
+
@@Lead_status = Field.new('Lead_Status')
|
449
|
+
def self.Lead_status
|
450
|
+
@@Lead_status
|
451
|
+
end
|
452
|
+
@@Industry = Field.new('Industry')
|
453
|
+
def self.Industry
|
454
|
+
@@Industry
|
455
|
+
end
|
456
|
+
@@Record_image = Field.new('Record_Image')
|
457
|
+
def self.Record_image
|
458
|
+
@@Record_image
|
459
|
+
end
|
460
|
+
@@Modified_by = Field.new('Modified_By')
|
461
|
+
def self.Modified_by
|
462
|
+
@@Modified_by
|
463
|
+
end
|
464
|
+
@@Skype_id = Field.new('Skype_ID')
|
465
|
+
def self.Skype_id
|
466
|
+
@@Skype_id
|
467
|
+
end
|
468
|
+
@@Phone = Field.new('Phone')
|
469
|
+
def self.Phone
|
470
|
+
@@Phone
|
471
|
+
end
|
472
|
+
@@Street = Field.new('Street')
|
473
|
+
def self.Street
|
474
|
+
@@Street
|
475
|
+
end
|
476
|
+
@@Zip_code = Field.new('Zip_Code')
|
477
|
+
def self.Zip_code
|
478
|
+
@@Zip_code
|
479
|
+
end
|
480
|
+
@@id = Field.new('id')
|
481
|
+
def self.id
|
482
|
+
@@id
|
483
|
+
end
|
484
|
+
@@Email_opt_out = Field.new('Email_Opt_Out')
|
485
|
+
def self.Email_opt_out
|
486
|
+
@@Email_opt_out
|
487
|
+
end
|
488
|
+
@@Designation = Field.new('Designation')
|
489
|
+
def self.Designation
|
490
|
+
@@Designation
|
491
|
+
end
|
492
|
+
@@Modified_time = Field.new('Modified_Time')
|
493
|
+
def self.Modified_time
|
494
|
+
@@Modified_time
|
495
|
+
end
|
496
|
+
@@Created_time = Field.new('Created_Time')
|
497
|
+
def self.Created_time
|
498
|
+
@@Created_time
|
499
|
+
end
|
500
|
+
@@City = Field.new('City')
|
501
|
+
def self.City
|
502
|
+
@@City
|
503
|
+
end
|
504
|
+
@@No_of_employees = Field.new('No_of_Employees')
|
505
|
+
def self.No_of_employees
|
506
|
+
@@No_of_employees
|
507
|
+
end
|
508
|
+
@@Mobile = Field.new('Mobile')
|
509
|
+
def self.Mobile
|
510
|
+
@@Mobile
|
511
|
+
end
|
512
|
+
@@Converted_date_time = Field.new('Converted_Date_Time')
|
513
|
+
def self.Converted_date_time
|
514
|
+
@@Converted_date_time
|
515
|
+
end
|
516
|
+
@@Last_name = Field.new('Last_Name')
|
517
|
+
def self.Last_name
|
518
|
+
@@Last_name
|
519
|
+
end
|
520
|
+
@@Layout = Field.new('Layout')
|
521
|
+
def self.Layout
|
522
|
+
@@Layout
|
523
|
+
end
|
524
|
+
@@State = Field.new('State')
|
525
|
+
def self.State
|
526
|
+
@@State
|
527
|
+
end
|
528
|
+
@@Lead_source = Field.new('Lead_Source')
|
529
|
+
def self.Lead_source
|
530
|
+
@@Lead_source
|
531
|
+
end
|
532
|
+
@@Is_record_duplicate = Field.new('Is_Record_Duplicate')
|
533
|
+
def self.Is_record_duplicate
|
534
|
+
@@Is_record_duplicate
|
535
|
+
end
|
536
|
+
@@Tag = Field.new('Tag')
|
537
|
+
def self.Tag
|
538
|
+
@@Tag
|
539
|
+
end
|
540
|
+
@@Created_by = Field.new('Created_By')
|
541
|
+
def self.Created_by
|
542
|
+
@@Created_by
|
543
|
+
end
|
544
|
+
@@Fax = Field.new('Fax')
|
545
|
+
def self.Fax
|
546
|
+
@@Fax
|
547
|
+
end
|
548
|
+
@@Annual_revenue = Field.new('Annual_Revenue')
|
549
|
+
def self.Annual_revenue
|
550
|
+
@@Annual_revenue
|
551
|
+
end
|
552
|
+
@@Secondary_email = Field.new('Secondary_Email')
|
553
|
+
def self.Secondary_email
|
554
|
+
@@Secondary_email
|
555
|
+
end
|
556
|
+
end
|
557
|
+
|
558
|
+
class Deals
|
559
|
+
@@Owner = Field.new('Owner')
|
560
|
+
def self.Owner
|
561
|
+
@@Owner
|
562
|
+
end
|
563
|
+
@@Description = Field.new('Description')
|
564
|
+
def self.Description
|
565
|
+
@@Description
|
566
|
+
end
|
567
|
+
@@Campaign_source = Field.new('Campaign_Source')
|
568
|
+
def self.Campaign_source
|
569
|
+
@@Campaign_source
|
570
|
+
end
|
571
|
+
@@Closing_date = Field.new('Closing_Date')
|
572
|
+
def self.Closing_date
|
573
|
+
@@Closing_date
|
574
|
+
end
|
575
|
+
@@Last_activity_time = Field.new('Last_Activity_Time')
|
576
|
+
def self.Last_activity_time
|
577
|
+
@@Last_activity_time
|
578
|
+
end
|
579
|
+
@@Modified_by = Field.new('Modified_By')
|
580
|
+
def self.Modified_by
|
581
|
+
@@Modified_by
|
582
|
+
end
|
583
|
+
@@Lead_conversion_time = Field.new('Lead_Conversion_Time')
|
584
|
+
def self.Lead_conversion_time
|
585
|
+
@@Lead_conversion_time
|
586
|
+
end
|
587
|
+
@@Deal_name = Field.new('Deal_Name')
|
588
|
+
def self.Deal_name
|
589
|
+
@@Deal_name
|
590
|
+
end
|
591
|
+
@@Expected_revenue = Field.new('Expected_Revenue')
|
592
|
+
def self.Expected_revenue
|
593
|
+
@@Expected_revenue
|
594
|
+
end
|
595
|
+
@@Overall_sales_duration = Field.new('Overall_Sales_Duration')
|
596
|
+
def self.Overall_sales_duration
|
597
|
+
@@Overall_sales_duration
|
598
|
+
end
|
599
|
+
@@Stage = Field.new('Stage')
|
600
|
+
def self.Stage
|
601
|
+
@@Stage
|
602
|
+
end
|
603
|
+
@@id = Field.new('id')
|
604
|
+
def self.id
|
605
|
+
@@id
|
606
|
+
end
|
607
|
+
@@Modified_time = Field.new('Modified_Time')
|
608
|
+
def self.Modified_time
|
609
|
+
@@Modified_time
|
610
|
+
end
|
611
|
+
@@Territory = Field.new('Territory')
|
612
|
+
def self.Territory
|
613
|
+
@@Territory
|
614
|
+
end
|
615
|
+
@@Created_time = Field.new('Created_Time')
|
616
|
+
def self.Created_time
|
617
|
+
@@Created_time
|
618
|
+
end
|
619
|
+
@@Amount = Field.new('Amount')
|
620
|
+
def self.Amount
|
621
|
+
@@Amount
|
622
|
+
end
|
623
|
+
@@Probability = Field.new('Probability')
|
624
|
+
def self.Probability
|
625
|
+
@@Probability
|
626
|
+
end
|
627
|
+
@@Next_step = Field.new('Next_Step')
|
628
|
+
def self.Next_step
|
629
|
+
@@Next_step
|
630
|
+
end
|
631
|
+
@@Contact_name = Field.new('Contact_Name')
|
632
|
+
def self.Contact_name
|
633
|
+
@@Contact_name
|
634
|
+
end
|
635
|
+
@@Sales_cycle_duration = Field.new('Sales_Cycle_Duration')
|
636
|
+
def self.Sales_cycle_duration
|
637
|
+
@@Sales_cycle_duration
|
638
|
+
end
|
639
|
+
@@Type = Field.new('Type')
|
640
|
+
def self.Type
|
641
|
+
@@Type
|
642
|
+
end
|
643
|
+
@@Deal_category_status = Field.new('Deal_Category_Status')
|
644
|
+
def self.Deal_category_status
|
645
|
+
@@Deal_category_status
|
646
|
+
end
|
647
|
+
@@Lead_source = Field.new('Lead_Source')
|
648
|
+
def self.Lead_source
|
649
|
+
@@Lead_source
|
650
|
+
end
|
651
|
+
@@Created_by = Field.new('Created_By')
|
652
|
+
def self.Created_by
|
653
|
+
@@Created_by
|
654
|
+
end
|
655
|
+
@@Tag = Field.new('Tag')
|
656
|
+
def self.Tag
|
657
|
+
@@Tag
|
658
|
+
end
|
659
|
+
end
|
660
|
+
|
661
|
+
class Campaigns
|
662
|
+
@@Status = Field.new('Status')
|
663
|
+
def self.Status
|
664
|
+
@@Status
|
665
|
+
end
|
666
|
+
@@Owner = Field.new('Owner')
|
667
|
+
def self.Owner
|
668
|
+
@@Owner
|
669
|
+
end
|
670
|
+
@@Modified_time = Field.new('Modified_Time')
|
671
|
+
def self.Modified_time
|
672
|
+
@@Modified_time
|
673
|
+
end
|
674
|
+
@@Description = Field.new('Description')
|
675
|
+
def self.Description
|
676
|
+
@@Description
|
677
|
+
end
|
678
|
+
@@Campaign_name = Field.new('Campaign_Name')
|
679
|
+
def self.Campaign_name
|
680
|
+
@@Campaign_name
|
681
|
+
end
|
682
|
+
@@Created_time = Field.new('Created_Time')
|
683
|
+
def self.Created_time
|
684
|
+
@@Created_time
|
685
|
+
end
|
686
|
+
@@End_date = Field.new('End_Date')
|
687
|
+
def self.End_date
|
688
|
+
@@End_date
|
689
|
+
end
|
690
|
+
@@Type = Field.new('Type')
|
691
|
+
def self.Type
|
692
|
+
@@Type
|
693
|
+
end
|
694
|
+
@@Modified_by = Field.new('Modified_By')
|
695
|
+
def self.Modified_by
|
696
|
+
@@Modified_by
|
697
|
+
end
|
698
|
+
@@Num_sent = Field.new('Num_sent')
|
699
|
+
def self.Num_sent
|
700
|
+
@@Num_sent
|
701
|
+
end
|
702
|
+
@@Expected_revenue = Field.new('Expected_Revenue')
|
703
|
+
def self.Expected_revenue
|
704
|
+
@@Expected_revenue
|
705
|
+
end
|
706
|
+
@@Actual_cost = Field.new('Actual_Cost')
|
707
|
+
def self.Actual_cost
|
708
|
+
@@Actual_cost
|
709
|
+
end
|
710
|
+
@@id = Field.new('id')
|
711
|
+
def self.id
|
712
|
+
@@id
|
713
|
+
end
|
714
|
+
@@Expected_response = Field.new('Expected_Response')
|
715
|
+
def self.Expected_response
|
716
|
+
@@Expected_response
|
717
|
+
end
|
718
|
+
@@Created_by = Field.new('Created_By')
|
719
|
+
def self.Created_by
|
720
|
+
@@Created_by
|
721
|
+
end
|
722
|
+
@@Tag = Field.new('Tag')
|
723
|
+
def self.Tag
|
724
|
+
@@Tag
|
725
|
+
end
|
726
|
+
@@Parent_campaign = Field.new('Parent_Campaign')
|
727
|
+
def self.Parent_campaign
|
728
|
+
@@Parent_campaign
|
729
|
+
end
|
730
|
+
@@Start_date = Field.new('Start_Date')
|
731
|
+
def self.Start_date
|
732
|
+
@@Start_date
|
733
|
+
end
|
734
|
+
@@Budgeted_cost = Field.new('Budgeted_Cost')
|
735
|
+
def self.Budgeted_cost
|
736
|
+
@@Budgeted_cost
|
737
|
+
end
|
738
|
+
end
|
739
|
+
|
740
|
+
class Quotes
|
741
|
+
@@Owner = Field.new('Owner')
|
742
|
+
def self.Owner
|
743
|
+
@@Owner
|
744
|
+
end
|
745
|
+
@@Discount = Field.new('Discount')
|
746
|
+
def self.Discount
|
747
|
+
@@Discount
|
748
|
+
end
|
749
|
+
@@Description = Field.new('Description')
|
750
|
+
def self.Description
|
751
|
+
@@Description
|
752
|
+
end
|
753
|
+
@@Shipping_state = Field.new('Shipping_State')
|
754
|
+
def self.Shipping_state
|
755
|
+
@@Shipping_state
|
756
|
+
end
|
757
|
+
@@Tax = Field.new('Tax')
|
758
|
+
def self.Tax
|
759
|
+
@@Tax
|
760
|
+
end
|
761
|
+
@@Modified_by = Field.new('Modified_By')
|
762
|
+
def self.Modified_by
|
763
|
+
@@Modified_by
|
764
|
+
end
|
765
|
+
@@Deal_name = Field.new('Deal_Name')
|
766
|
+
def self.Deal_name
|
767
|
+
@@Deal_name
|
768
|
+
end
|
769
|
+
@@Valid_till = Field.new('Valid_Till')
|
770
|
+
def self.Valid_till
|
771
|
+
@@Valid_till
|
772
|
+
end
|
773
|
+
@@Billing_country = Field.new('Billing_Country')
|
774
|
+
def self.Billing_country
|
775
|
+
@@Billing_country
|
776
|
+
end
|
777
|
+
@@Account_name = Field.new('Account_Name')
|
778
|
+
def self.Account_name
|
779
|
+
@@Account_name
|
780
|
+
end
|
781
|
+
@@Team = Field.new('Team')
|
782
|
+
def self.Team
|
783
|
+
@@Team
|
784
|
+
end
|
785
|
+
@@id = Field.new('id')
|
786
|
+
def self.id
|
787
|
+
@@id
|
788
|
+
end
|
789
|
+
@@Carrier = Field.new('Carrier')
|
790
|
+
def self.Carrier
|
791
|
+
@@Carrier
|
792
|
+
end
|
793
|
+
@@Quoted_items = Field.new('Quoted_Items')
|
794
|
+
def self.Quoted_items
|
795
|
+
@@Quoted_items
|
796
|
+
end
|
797
|
+
@@Quote_stage = Field.new('Quote_Stage')
|
798
|
+
def self.Quote_stage
|
799
|
+
@@Quote_stage
|
800
|
+
end
|
801
|
+
@@Grand_total = Field.new('Grand_Total')
|
802
|
+
def self.Grand_total
|
803
|
+
@@Grand_total
|
804
|
+
end
|
805
|
+
@@Modified_time = Field.new('Modified_Time')
|
806
|
+
def self.Modified_time
|
807
|
+
@@Modified_time
|
808
|
+
end
|
809
|
+
@@Billing_street = Field.new('Billing_Street')
|
810
|
+
def self.Billing_street
|
811
|
+
@@Billing_street
|
812
|
+
end
|
813
|
+
@@Adjustment = Field.new('Adjustment')
|
814
|
+
def self.Adjustment
|
815
|
+
@@Adjustment
|
816
|
+
end
|
817
|
+
@@Created_time = Field.new('Created_Time')
|
818
|
+
def self.Created_time
|
819
|
+
@@Created_time
|
820
|
+
end
|
821
|
+
@@Terms_and_conditions = Field.new('Terms_and_Conditions')
|
822
|
+
def self.Terms_and_conditions
|
823
|
+
@@Terms_and_conditions
|
824
|
+
end
|
825
|
+
@@Sub_total = Field.new('Sub_Total')
|
826
|
+
def self.Sub_total
|
827
|
+
@@Sub_total
|
828
|
+
end
|
829
|
+
@@Billing_code = Field.new('Billing_Code')
|
830
|
+
def self.Billing_code
|
831
|
+
@@Billing_code
|
832
|
+
end
|
833
|
+
@@Subject = Field.new('Subject')
|
834
|
+
def self.Subject
|
835
|
+
@@Subject
|
836
|
+
end
|
837
|
+
@@Contact_name = Field.new('Contact_Name')
|
838
|
+
def self.Contact_name
|
839
|
+
@@Contact_name
|
840
|
+
end
|
841
|
+
@@Shipping_city = Field.new('Shipping_City')
|
842
|
+
def self.Shipping_city
|
843
|
+
@@Shipping_city
|
844
|
+
end
|
845
|
+
@@Shipping_country = Field.new('Shipping_Country')
|
846
|
+
def self.Shipping_country
|
847
|
+
@@Shipping_country
|
848
|
+
end
|
849
|
+
@@Shipping_code = Field.new('Shipping_Code')
|
850
|
+
def self.Shipping_code
|
851
|
+
@@Shipping_code
|
852
|
+
end
|
853
|
+
@@Billing_city = Field.new('Billing_City')
|
854
|
+
def self.Billing_city
|
855
|
+
@@Billing_city
|
856
|
+
end
|
857
|
+
@@Quote_number = Field.new('Quote_Number')
|
858
|
+
def self.Quote_number
|
859
|
+
@@Quote_number
|
860
|
+
end
|
861
|
+
@@Billing_state = Field.new('Billing_State')
|
862
|
+
def self.Billing_state
|
863
|
+
@@Billing_state
|
864
|
+
end
|
865
|
+
@@Created_by = Field.new('Created_By')
|
866
|
+
def self.Created_by
|
867
|
+
@@Created_by
|
868
|
+
end
|
869
|
+
@@Tag = Field.new('Tag')
|
870
|
+
def self.Tag
|
871
|
+
@@Tag
|
872
|
+
end
|
873
|
+
@@Shipping_street = Field.new('Shipping_Street')
|
874
|
+
def self.Shipping_street
|
875
|
+
@@Shipping_street
|
876
|
+
end
|
877
|
+
end
|
878
|
+
|
879
|
+
class Invoices
|
880
|
+
@@Owner = Field.new('Owner')
|
881
|
+
def self.Owner
|
882
|
+
@@Owner
|
883
|
+
end
|
884
|
+
@@Discount = Field.new('Discount')
|
885
|
+
def self.Discount
|
886
|
+
@@Discount
|
887
|
+
end
|
888
|
+
@@Description = Field.new('Description')
|
889
|
+
def self.Description
|
890
|
+
@@Description
|
891
|
+
end
|
892
|
+
@@Shipping_state = Field.new('Shipping_State')
|
893
|
+
def self.Shipping_state
|
894
|
+
@@Shipping_state
|
895
|
+
end
|
896
|
+
@@Tax = Field.new('Tax')
|
897
|
+
def self.Tax
|
898
|
+
@@Tax
|
899
|
+
end
|
900
|
+
@@Invoice_date = Field.new('Invoice_Date')
|
901
|
+
def self.Invoice_date
|
902
|
+
@@Invoice_date
|
903
|
+
end
|
904
|
+
@@Modified_by = Field.new('Modified_By')
|
905
|
+
def self.Modified_by
|
906
|
+
@@Modified_by
|
907
|
+
end
|
908
|
+
@@Invoiced_items = Field.new('Invoiced_Items')
|
909
|
+
def self.Invoiced_items
|
910
|
+
@@Invoiced_items
|
911
|
+
end
|
912
|
+
@@Billing_country = Field.new('Billing_Country')
|
913
|
+
def self.Billing_country
|
914
|
+
@@Billing_country
|
915
|
+
end
|
916
|
+
@@Account_name = Field.new('Account_Name')
|
917
|
+
def self.Account_name
|
918
|
+
@@Account_name
|
919
|
+
end
|
920
|
+
@@id = Field.new('id')
|
921
|
+
def self.id
|
922
|
+
@@id
|
923
|
+
end
|
924
|
+
@@Sales_order = Field.new('Sales_Order')
|
925
|
+
def self.Sales_order
|
926
|
+
@@Sales_order
|
927
|
+
end
|
928
|
+
@@Status = Field.new('Status')
|
929
|
+
def self.Status
|
930
|
+
@@Status
|
931
|
+
end
|
932
|
+
@@Grand_total = Field.new('Grand_Total')
|
933
|
+
def self.Grand_total
|
934
|
+
@@Grand_total
|
935
|
+
end
|
936
|
+
@@Sales_commission = Field.new('Sales_Commission')
|
937
|
+
def self.Sales_commission
|
938
|
+
@@Sales_commission
|
939
|
+
end
|
940
|
+
@@Modified_time = Field.new('Modified_Time')
|
941
|
+
def self.Modified_time
|
942
|
+
@@Modified_time
|
943
|
+
end
|
944
|
+
@@Due_date = Field.new('Due_Date')
|
945
|
+
def self.Due_date
|
946
|
+
@@Due_date
|
947
|
+
end
|
948
|
+
@@Billing_street = Field.new('Billing_Street')
|
949
|
+
def self.Billing_street
|
950
|
+
@@Billing_street
|
951
|
+
end
|
952
|
+
@@Adjustment = Field.new('Adjustment')
|
953
|
+
def self.Adjustment
|
954
|
+
@@Adjustment
|
955
|
+
end
|
956
|
+
@@Created_time = Field.new('Created_Time')
|
957
|
+
def self.Created_time
|
958
|
+
@@Created_time
|
959
|
+
end
|
960
|
+
@@Terms_and_conditions = Field.new('Terms_and_Conditions')
|
961
|
+
def self.Terms_and_conditions
|
962
|
+
@@Terms_and_conditions
|
963
|
+
end
|
964
|
+
@@Sub_total = Field.new('Sub_Total')
|
965
|
+
def self.Sub_total
|
966
|
+
@@Sub_total
|
967
|
+
end
|
968
|
+
@@Invoice_number = Field.new('Invoice_Number')
|
969
|
+
def self.Invoice_number
|
970
|
+
@@Invoice_number
|
971
|
+
end
|
972
|
+
@@Billing_code = Field.new('Billing_Code')
|
973
|
+
def self.Billing_code
|
974
|
+
@@Billing_code
|
975
|
+
end
|
976
|
+
@@Subject = Field.new('Subject')
|
977
|
+
def self.Subject
|
978
|
+
@@Subject
|
979
|
+
end
|
980
|
+
@@Contact_name = Field.new('Contact_Name')
|
981
|
+
def self.Contact_name
|
982
|
+
@@Contact_name
|
983
|
+
end
|
984
|
+
@@Excise_duty = Field.new('Excise_Duty')
|
985
|
+
def self.Excise_duty
|
986
|
+
@@Excise_duty
|
987
|
+
end
|
988
|
+
@@Shipping_city = Field.new('Shipping_City')
|
989
|
+
def self.Shipping_city
|
990
|
+
@@Shipping_city
|
991
|
+
end
|
992
|
+
@@Shipping_country = Field.new('Shipping_Country')
|
993
|
+
def self.Shipping_country
|
994
|
+
@@Shipping_country
|
995
|
+
end
|
996
|
+
@@Shipping_code = Field.new('Shipping_Code')
|
997
|
+
def self.Shipping_code
|
998
|
+
@@Shipping_code
|
999
|
+
end
|
1000
|
+
@@Billing_city = Field.new('Billing_City')
|
1001
|
+
def self.Billing_city
|
1002
|
+
@@Billing_city
|
1003
|
+
end
|
1004
|
+
@@Purchase_order = Field.new('Purchase_Order')
|
1005
|
+
def self.Purchase_order
|
1006
|
+
@@Purchase_order
|
1007
|
+
end
|
1008
|
+
@@Billing_state = Field.new('Billing_State')
|
1009
|
+
def self.Billing_state
|
1010
|
+
@@Billing_state
|
1011
|
+
end
|
1012
|
+
@@Created_by = Field.new('Created_By')
|
1013
|
+
def self.Created_by
|
1014
|
+
@@Created_by
|
1015
|
+
end
|
1016
|
+
@@Tag = Field.new('Tag')
|
1017
|
+
def self.Tag
|
1018
|
+
@@Tag
|
1019
|
+
end
|
1020
|
+
@@Shipping_street = Field.new('Shipping_Street')
|
1021
|
+
def self.Shipping_street
|
1022
|
+
@@Shipping_street
|
1023
|
+
end
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class Attachments
|
1027
|
+
@@Owner = Field.new('Owner')
|
1028
|
+
def self.Owner
|
1029
|
+
@@Owner
|
1030
|
+
end
|
1031
|
+
@@Modified_by = Field.new('Modified_By')
|
1032
|
+
def self.Modified_by
|
1033
|
+
@@Modified_by
|
1034
|
+
end
|
1035
|
+
@@Modified_time = Field.new('Modified_Time')
|
1036
|
+
def self.Modified_time
|
1037
|
+
@@Modified_time
|
1038
|
+
end
|
1039
|
+
@@File_name = Field.new('File_Name')
|
1040
|
+
def self.File_name
|
1041
|
+
@@File_name
|
1042
|
+
end
|
1043
|
+
@@Created_time = Field.new('Created_Time')
|
1044
|
+
def self.Created_time
|
1045
|
+
@@Created_time
|
1046
|
+
end
|
1047
|
+
@@Size = Field.new('Size')
|
1048
|
+
def self.Size
|
1049
|
+
@@Size
|
1050
|
+
end
|
1051
|
+
@@Parent_id = Field.new('Parent_Id')
|
1052
|
+
def self.Parent_id
|
1053
|
+
@@Parent_id
|
1054
|
+
end
|
1055
|
+
@@id = Field.new('id')
|
1056
|
+
def self.id
|
1057
|
+
@@id
|
1058
|
+
end
|
1059
|
+
@@Created_by = Field.new('Created_By')
|
1060
|
+
def self.Created_by
|
1061
|
+
@@Created_by
|
1062
|
+
end
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
class Price_Books
|
1066
|
+
@@Owner = Field.new('Owner')
|
1067
|
+
def self.Owner
|
1068
|
+
@@Owner
|
1069
|
+
end
|
1070
|
+
@@Active = Field.new('Active')
|
1071
|
+
def self.Active
|
1072
|
+
@@Active
|
1073
|
+
end
|
1074
|
+
@@Modified_by = Field.new('Modified_By')
|
1075
|
+
def self.Modified_by
|
1076
|
+
@@Modified_by
|
1077
|
+
end
|
1078
|
+
@@Modified_time = Field.new('Modified_Time')
|
1079
|
+
def self.Modified_time
|
1080
|
+
@@Modified_time
|
1081
|
+
end
|
1082
|
+
@@Pricing_details = Field.new('Pricing_Details')
|
1083
|
+
def self.Pricing_details
|
1084
|
+
@@Pricing_details
|
1085
|
+
end
|
1086
|
+
@@Pricing_model = Field.new('Pricing_Model')
|
1087
|
+
def self.Pricing_model
|
1088
|
+
@@Pricing_model
|
1089
|
+
end
|
1090
|
+
@@Description = Field.new('Description')
|
1091
|
+
def self.Description
|
1092
|
+
@@Description
|
1093
|
+
end
|
1094
|
+
@@Created_time = Field.new('Created_Time')
|
1095
|
+
def self.Created_time
|
1096
|
+
@@Created_time
|
1097
|
+
end
|
1098
|
+
@@Price_book_name = Field.new('Price_Book_Name')
|
1099
|
+
def self.Price_book_name
|
1100
|
+
@@Price_book_name
|
1101
|
+
end
|
1102
|
+
@@id = Field.new('id')
|
1103
|
+
def self.id
|
1104
|
+
@@id
|
1105
|
+
end
|
1106
|
+
@@Created_by = Field.new('Created_By')
|
1107
|
+
def self.Created_by
|
1108
|
+
@@Created_by
|
1109
|
+
end
|
1110
|
+
@@Tag = Field.new('Tag')
|
1111
|
+
def self.Tag
|
1112
|
+
@@Tag
|
1113
|
+
end
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class Sales_Orders
|
1117
|
+
@@Owner = Field.new('Owner')
|
1118
|
+
def self.Owner
|
1119
|
+
@@Owner
|
1120
|
+
end
|
1121
|
+
@@Discount = Field.new('Discount')
|
1122
|
+
def self.Discount
|
1123
|
+
@@Discount
|
1124
|
+
end
|
1125
|
+
@@Description = Field.new('Description')
|
1126
|
+
def self.Description
|
1127
|
+
@@Description
|
1128
|
+
end
|
1129
|
+
@@Customer_no = Field.new('Customer_No')
|
1130
|
+
def self.Customer_no
|
1131
|
+
@@Customer_no
|
1132
|
+
end
|
1133
|
+
@@Shipping_state = Field.new('Shipping_State')
|
1134
|
+
def self.Shipping_state
|
1135
|
+
@@Shipping_state
|
1136
|
+
end
|
1137
|
+
@@Tax = Field.new('Tax')
|
1138
|
+
def self.Tax
|
1139
|
+
@@Tax
|
1140
|
+
end
|
1141
|
+
@@Modified_by = Field.new('Modified_By')
|
1142
|
+
def self.Modified_by
|
1143
|
+
@@Modified_by
|
1144
|
+
end
|
1145
|
+
@@Deal_name = Field.new('Deal_Name')
|
1146
|
+
def self.Deal_name
|
1147
|
+
@@Deal_name
|
1148
|
+
end
|
1149
|
+
@@Billing_country = Field.new('Billing_Country')
|
1150
|
+
def self.Billing_country
|
1151
|
+
@@Billing_country
|
1152
|
+
end
|
1153
|
+
@@Account_name = Field.new('Account_Name')
|
1154
|
+
def self.Account_name
|
1155
|
+
@@Account_name
|
1156
|
+
end
|
1157
|
+
@@id = Field.new('id')
|
1158
|
+
def self.id
|
1159
|
+
@@id
|
1160
|
+
end
|
1161
|
+
@@Carrier = Field.new('Carrier')
|
1162
|
+
def self.Carrier
|
1163
|
+
@@Carrier
|
1164
|
+
end
|
1165
|
+
@@Ordered_items = Field.new('Ordered_Items')
|
1166
|
+
def self.Ordered_items
|
1167
|
+
@@Ordered_items
|
1168
|
+
end
|
1169
|
+
@@Quote_name = Field.new('Quote_Name')
|
1170
|
+
def self.Quote_name
|
1171
|
+
@@Quote_name
|
1172
|
+
end
|
1173
|
+
@@Status = Field.new('Status')
|
1174
|
+
def self.Status
|
1175
|
+
@@Status
|
1176
|
+
end
|
1177
|
+
@@Sales_commission = Field.new('Sales_Commission')
|
1178
|
+
def self.Sales_commission
|
1179
|
+
@@Sales_commission
|
1180
|
+
end
|
1181
|
+
@@Grand_total = Field.new('Grand_Total')
|
1182
|
+
def self.Grand_total
|
1183
|
+
@@Grand_total
|
1184
|
+
end
|
1185
|
+
@@Modified_time = Field.new('Modified_Time')
|
1186
|
+
def self.Modified_time
|
1187
|
+
@@Modified_time
|
1188
|
+
end
|
1189
|
+
@@Due_date = Field.new('Due_Date')
|
1190
|
+
def self.Due_date
|
1191
|
+
@@Due_date
|
1192
|
+
end
|
1193
|
+
@@Billing_street = Field.new('Billing_Street')
|
1194
|
+
def self.Billing_street
|
1195
|
+
@@Billing_street
|
1196
|
+
end
|
1197
|
+
@@Adjustment = Field.new('Adjustment')
|
1198
|
+
def self.Adjustment
|
1199
|
+
@@Adjustment
|
1200
|
+
end
|
1201
|
+
@@Created_time = Field.new('Created_Time')
|
1202
|
+
def self.Created_time
|
1203
|
+
@@Created_time
|
1204
|
+
end
|
1205
|
+
@@Terms_and_conditions = Field.new('Terms_and_Conditions')
|
1206
|
+
def self.Terms_and_conditions
|
1207
|
+
@@Terms_and_conditions
|
1208
|
+
end
|
1209
|
+
@@Sub_total = Field.new('Sub_Total')
|
1210
|
+
def self.Sub_total
|
1211
|
+
@@Sub_total
|
1212
|
+
end
|
1213
|
+
@@Billing_code = Field.new('Billing_Code')
|
1214
|
+
def self.Billing_code
|
1215
|
+
@@Billing_code
|
1216
|
+
end
|
1217
|
+
@@Subject = Field.new('Subject')
|
1218
|
+
def self.Subject
|
1219
|
+
@@Subject
|
1220
|
+
end
|
1221
|
+
@@Contact_name = Field.new('Contact_Name')
|
1222
|
+
def self.Contact_name
|
1223
|
+
@@Contact_name
|
1224
|
+
end
|
1225
|
+
@@Excise_duty = Field.new('Excise_Duty')
|
1226
|
+
def self.Excise_duty
|
1227
|
+
@@Excise_duty
|
1228
|
+
end
|
1229
|
+
@@Shipping_city = Field.new('Shipping_City')
|
1230
|
+
def self.Shipping_city
|
1231
|
+
@@Shipping_city
|
1232
|
+
end
|
1233
|
+
@@Shipping_country = Field.new('Shipping_Country')
|
1234
|
+
def self.Shipping_country
|
1235
|
+
@@Shipping_country
|
1236
|
+
end
|
1237
|
+
@@Shipping_code = Field.new('Shipping_Code')
|
1238
|
+
def self.Shipping_code
|
1239
|
+
@@Shipping_code
|
1240
|
+
end
|
1241
|
+
@@Billing_city = Field.new('Billing_City')
|
1242
|
+
def self.Billing_city
|
1243
|
+
@@Billing_city
|
1244
|
+
end
|
1245
|
+
@@SO_number = Field.new('SO_Number')
|
1246
|
+
def self.SO_number
|
1247
|
+
@@SO_number
|
1248
|
+
end
|
1249
|
+
@@Purchase_order = Field.new('Purchase_Order')
|
1250
|
+
def self.Purchase_order
|
1251
|
+
@@Purchase_order
|
1252
|
+
end
|
1253
|
+
@@Billing_state = Field.new('Billing_State')
|
1254
|
+
def self.Billing_state
|
1255
|
+
@@Billing_state
|
1256
|
+
end
|
1257
|
+
@@Created_by = Field.new('Created_By')
|
1258
|
+
def self.Created_by
|
1259
|
+
@@Created_by
|
1260
|
+
end
|
1261
|
+
@@Tag = Field.new('Tag')
|
1262
|
+
def self.Tag
|
1263
|
+
@@Tag
|
1264
|
+
end
|
1265
|
+
@@Pending = Field.new('Pending')
|
1266
|
+
def self.Pending
|
1267
|
+
@@Pending
|
1268
|
+
end
|
1269
|
+
@@Shipping_street = Field.new('Shipping_Street')
|
1270
|
+
def self.Shipping_street
|
1271
|
+
@@Shipping_street
|
1272
|
+
end
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
class Contacts
|
1276
|
+
@@Owner = Field.new('Owner')
|
1277
|
+
def self.Owner
|
1278
|
+
@@Owner
|
1279
|
+
end
|
1280
|
+
@@Email = Field.new('Email')
|
1281
|
+
def self.Email
|
1282
|
+
@@Email
|
1283
|
+
end
|
1284
|
+
@@Description = Field.new('Description')
|
1285
|
+
def self.Description
|
1286
|
+
@@Description
|
1287
|
+
end
|
1288
|
+
@@Vendor_name = Field.new('Vendor_Name')
|
1289
|
+
def self.Vendor_name
|
1290
|
+
@@Vendor_name
|
1291
|
+
end
|
1292
|
+
@@Mailing_zip = Field.new('Mailing_Zip')
|
1293
|
+
def self.Mailing_zip
|
1294
|
+
@@Mailing_zip
|
1295
|
+
end
|
1296
|
+
@@Reports_to = Field.new('Reports_To')
|
1297
|
+
def self.Reports_to
|
1298
|
+
@@Reports_to
|
1299
|
+
end
|
1300
|
+
@@Other_phone = Field.new('Other_Phone')
|
1301
|
+
def self.Other_phone
|
1302
|
+
@@Other_phone
|
1303
|
+
end
|
1304
|
+
@@Mailing_state = Field.new('Mailing_State')
|
1305
|
+
def self.Mailing_state
|
1306
|
+
@@Mailing_state
|
1307
|
+
end
|
1308
|
+
@@Twitter = Field.new('Twitter')
|
1309
|
+
def self.Twitter
|
1310
|
+
@@Twitter
|
1311
|
+
end
|
1312
|
+
@@Other_zip = Field.new('Other_Zip')
|
1313
|
+
def self.Other_zip
|
1314
|
+
@@Other_zip
|
1315
|
+
end
|
1316
|
+
@@Mailing_street = Field.new('Mailing_Street')
|
1317
|
+
def self.Mailing_street
|
1318
|
+
@@Mailing_street
|
1319
|
+
end
|
1320
|
+
@@Other_state = Field.new('Other_State')
|
1321
|
+
def self.Other_state
|
1322
|
+
@@Other_state
|
1323
|
+
end
|
1324
|
+
@@Salutation = Field.new('Salutation')
|
1325
|
+
def self.Salutation
|
1326
|
+
@@Salutation
|
1327
|
+
end
|
1328
|
+
@@Other_country = Field.new('Other_Country')
|
1329
|
+
def self.Other_country
|
1330
|
+
@@Other_country
|
1331
|
+
end
|
1332
|
+
@@Last_activity_time = Field.new('Last_Activity_Time')
|
1333
|
+
def self.Last_activity_time
|
1334
|
+
@@Last_activity_time
|
1335
|
+
end
|
1336
|
+
@@First_name = Field.new('First_Name')
|
1337
|
+
def self.First_name
|
1338
|
+
@@First_name
|
1339
|
+
end
|
1340
|
+
@@Full_name = Field.new('Full_Name')
|
1341
|
+
def self.Full_name
|
1342
|
+
@@Full_name
|
1343
|
+
end
|
1344
|
+
@@Asst_phone = Field.new('Asst_Phone')
|
1345
|
+
def self.Asst_phone
|
1346
|
+
@@Asst_phone
|
1347
|
+
end
|
1348
|
+
@@Record_image = Field.new('Record_Image')
|
1349
|
+
def self.Record_image
|
1350
|
+
@@Record_image
|
1351
|
+
end
|
1352
|
+
@@Department = Field.new('Department')
|
1353
|
+
def self.Department
|
1354
|
+
@@Department
|
1355
|
+
end
|
1356
|
+
@@Modified_by = Field.new('Modified_By')
|
1357
|
+
def self.Modified_by
|
1358
|
+
@@Modified_by
|
1359
|
+
end
|
1360
|
+
@@Skype_id = Field.new('Skype_ID')
|
1361
|
+
def self.Skype_id
|
1362
|
+
@@Skype_id
|
1363
|
+
end
|
1364
|
+
@@Assistant = Field.new('Assistant')
|
1365
|
+
def self.Assistant
|
1366
|
+
@@Assistant
|
1367
|
+
end
|
1368
|
+
@@Phone = Field.new('Phone')
|
1369
|
+
def self.Phone
|
1370
|
+
@@Phone
|
1371
|
+
end
|
1372
|
+
@@Mailing_country = Field.new('Mailing_Country')
|
1373
|
+
def self.Mailing_country
|
1374
|
+
@@Mailing_country
|
1375
|
+
end
|
1376
|
+
@@Account_name = Field.new('Account_Name')
|
1377
|
+
def self.Account_name
|
1378
|
+
@@Account_name
|
1379
|
+
end
|
1380
|
+
@@id = Field.new('id')
|
1381
|
+
def self.id
|
1382
|
+
@@id
|
1383
|
+
end
|
1384
|
+
@@Email_opt_out = Field.new('Email_Opt_Out')
|
1385
|
+
def self.Email_opt_out
|
1386
|
+
@@Email_opt_out
|
1387
|
+
end
|
1388
|
+
@@Reporting_to = Field.new('Reporting_To')
|
1389
|
+
def self.Reporting_to
|
1390
|
+
@@Reporting_to
|
1391
|
+
end
|
1392
|
+
@@Modified_time = Field.new('Modified_Time')
|
1393
|
+
def self.Modified_time
|
1394
|
+
@@Modified_time
|
1395
|
+
end
|
1396
|
+
@@Date_of_birth = Field.new('Date_of_Birth')
|
1397
|
+
def self.Date_of_birth
|
1398
|
+
@@Date_of_birth
|
1399
|
+
end
|
1400
|
+
@@Mailing_city = Field.new('Mailing_City')
|
1401
|
+
def self.Mailing_city
|
1402
|
+
@@Mailing_city
|
1403
|
+
end
|
1404
|
+
@@Other_city = Field.new('Other_City')
|
1405
|
+
def self.Other_city
|
1406
|
+
@@Other_city
|
1407
|
+
end
|
1408
|
+
@@Created_time = Field.new('Created_Time')
|
1409
|
+
def self.Created_time
|
1410
|
+
@@Created_time
|
1411
|
+
end
|
1412
|
+
@@Title = Field.new('Title')
|
1413
|
+
def self.Title
|
1414
|
+
@@Title
|
1415
|
+
end
|
1416
|
+
@@Other_street = Field.new('Other_Street')
|
1417
|
+
def self.Other_street
|
1418
|
+
@@Other_street
|
1419
|
+
end
|
1420
|
+
@@Mobile = Field.new('Mobile')
|
1421
|
+
def self.Mobile
|
1422
|
+
@@Mobile
|
1423
|
+
end
|
1424
|
+
@@Territories = Field.new('Territories')
|
1425
|
+
def self.Territories
|
1426
|
+
@@Territories
|
1427
|
+
end
|
1428
|
+
@@Home_phone = Field.new('Home_Phone')
|
1429
|
+
def self.Home_phone
|
1430
|
+
@@Home_phone
|
1431
|
+
end
|
1432
|
+
@@Last_name = Field.new('Last_Name')
|
1433
|
+
def self.Last_name
|
1434
|
+
@@Last_name
|
1435
|
+
end
|
1436
|
+
@@Lead_source = Field.new('Lead_Source')
|
1437
|
+
def self.Lead_source
|
1438
|
+
@@Lead_source
|
1439
|
+
end
|
1440
|
+
@@Is_record_duplicate = Field.new('Is_Record_Duplicate')
|
1441
|
+
def self.Is_record_duplicate
|
1442
|
+
@@Is_record_duplicate
|
1443
|
+
end
|
1444
|
+
@@Tag = Field.new('Tag')
|
1445
|
+
def self.Tag
|
1446
|
+
@@Tag
|
1447
|
+
end
|
1448
|
+
@@Created_by = Field.new('Created_By')
|
1449
|
+
def self.Created_by
|
1450
|
+
@@Created_by
|
1451
|
+
end
|
1452
|
+
@@Fax = Field.new('Fax')
|
1453
|
+
def self.Fax
|
1454
|
+
@@Fax
|
1455
|
+
end
|
1456
|
+
@@Secondary_email = Field.new('Secondary_Email')
|
1457
|
+
def self.Secondary_email
|
1458
|
+
@@Secondary_email
|
1459
|
+
end
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
class Solutions
|
1463
|
+
@@Status = Field.new('Status')
|
1464
|
+
def self.Status
|
1465
|
+
@@Status
|
1466
|
+
end
|
1467
|
+
@@Owner = Field.new('Owner')
|
1468
|
+
def self.Owner
|
1469
|
+
@@Owner
|
1470
|
+
end
|
1471
|
+
@@Modified_time = Field.new('Modified_Time')
|
1472
|
+
def self.Modified_time
|
1473
|
+
@@Modified_time
|
1474
|
+
end
|
1475
|
+
@@Created_time = Field.new('Created_Time')
|
1476
|
+
def self.Created_time
|
1477
|
+
@@Created_time
|
1478
|
+
end
|
1479
|
+
@@Comments = Field.new('Comments')
|
1480
|
+
def self.Comments
|
1481
|
+
@@Comments
|
1482
|
+
end
|
1483
|
+
@@No_of_comments = Field.new('No_of_comments')
|
1484
|
+
def self.No_of_comments
|
1485
|
+
@@No_of_comments
|
1486
|
+
end
|
1487
|
+
@@Product_name = Field.new('Product_Name')
|
1488
|
+
def self.Product_name
|
1489
|
+
@@Product_name
|
1490
|
+
end
|
1491
|
+
@@Add_comment = Field.new('Add_Comment')
|
1492
|
+
def self.Add_comment
|
1493
|
+
@@Add_comment
|
1494
|
+
end
|
1495
|
+
@@Solution_number = Field.new('Solution_Number')
|
1496
|
+
def self.Solution_number
|
1497
|
+
@@Solution_number
|
1498
|
+
end
|
1499
|
+
@@Answer = Field.new('Answer')
|
1500
|
+
def self.Answer
|
1501
|
+
@@Answer
|
1502
|
+
end
|
1503
|
+
@@Modified_by = Field.new('Modified_By')
|
1504
|
+
def self.Modified_by
|
1505
|
+
@@Modified_by
|
1506
|
+
end
|
1507
|
+
@@Solution_title = Field.new('Solution_Title')
|
1508
|
+
def self.Solution_title
|
1509
|
+
@@Solution_title
|
1510
|
+
end
|
1511
|
+
@@Published = Field.new('Published')
|
1512
|
+
def self.Published
|
1513
|
+
@@Published
|
1514
|
+
end
|
1515
|
+
@@Question = Field.new('Question')
|
1516
|
+
def self.Question
|
1517
|
+
@@Question
|
1518
|
+
end
|
1519
|
+
@@id = Field.new('id')
|
1520
|
+
def self.id
|
1521
|
+
@@id
|
1522
|
+
end
|
1523
|
+
@@Created_by = Field.new('Created_By')
|
1524
|
+
def self.Created_by
|
1525
|
+
@@Created_by
|
1526
|
+
end
|
1527
|
+
@@Tag = Field.new('Tag')
|
1528
|
+
def self.Tag
|
1529
|
+
@@Tag
|
1530
|
+
end
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
class Events
|
1534
|
+
@@All_day = Field.new('All_day')
|
1535
|
+
def self.All_day
|
1536
|
+
@@All_day
|
1537
|
+
end
|
1538
|
+
@@Owner = Field.new('Owner')
|
1539
|
+
def self.Owner
|
1540
|
+
@@Owner
|
1541
|
+
end
|
1542
|
+
@@Check_in_state = Field.new('Check_In_State')
|
1543
|
+
def self.Check_in_state
|
1544
|
+
@@Check_in_state
|
1545
|
+
end
|
1546
|
+
@@Check_in_address = Field.new('Check_In_Address')
|
1547
|
+
def self.Check_in_address
|
1548
|
+
@@Check_in_address
|
1549
|
+
end
|
1550
|
+
@@Description = Field.new('Description')
|
1551
|
+
def self.Description
|
1552
|
+
@@Description
|
1553
|
+
end
|
1554
|
+
@@Start_datetime = Field.new('Start_DateTime')
|
1555
|
+
def self.Start_datetime
|
1556
|
+
@@Start_datetime
|
1557
|
+
end
|
1558
|
+
@@Latitude = Field.new('Latitude')
|
1559
|
+
def self.Latitude
|
1560
|
+
@@Latitude
|
1561
|
+
end
|
1562
|
+
@@Participants = Field.new('Participants')
|
1563
|
+
def self.Participants
|
1564
|
+
@@Participants
|
1565
|
+
end
|
1566
|
+
@@Event_title = Field.new('Event_Title')
|
1567
|
+
def self.Event_title
|
1568
|
+
@@Event_title
|
1569
|
+
end
|
1570
|
+
@@End_datetime = Field.new('End_DateTime')
|
1571
|
+
def self.End_datetime
|
1572
|
+
@@End_datetime
|
1573
|
+
end
|
1574
|
+
@@Check_in_by = Field.new('Check_In_By')
|
1575
|
+
def self.Check_in_by
|
1576
|
+
@@Check_in_by
|
1577
|
+
end
|
1578
|
+
@@Modified_by = Field.new('Modified_By')
|
1579
|
+
def self.Modified_by
|
1580
|
+
@@Modified_by
|
1581
|
+
end
|
1582
|
+
@@Check_in_city = Field.new('Check_In_City')
|
1583
|
+
def self.Check_in_city
|
1584
|
+
@@Check_in_city
|
1585
|
+
end
|
1586
|
+
@@id = Field.new('id')
|
1587
|
+
def self.id
|
1588
|
+
@@id
|
1589
|
+
end
|
1590
|
+
@@Check_in_comment = Field.new('Check_In_Comment')
|
1591
|
+
def self.Check_in_comment
|
1592
|
+
@@Check_in_comment
|
1593
|
+
end
|
1594
|
+
@@Remind_at = Field.new('Remind_At')
|
1595
|
+
def self.Remind_at
|
1596
|
+
@@Remind_at
|
1597
|
+
end
|
1598
|
+
@@Who_id = Field.new('Who_Id')
|
1599
|
+
def self.Who_id
|
1600
|
+
@@Who_id
|
1601
|
+
end
|
1602
|
+
@@Check_in_status = Field.new('Check_In_Status')
|
1603
|
+
def self.Check_in_status
|
1604
|
+
@@Check_in_status
|
1605
|
+
end
|
1606
|
+
@@Check_in_country = Field.new('Check_In_Country')
|
1607
|
+
def self.Check_in_country
|
1608
|
+
@@Check_in_country
|
1609
|
+
end
|
1610
|
+
@@Modified_time = Field.new('Modified_Time')
|
1611
|
+
def self.Modified_time
|
1612
|
+
@@Modified_time
|
1613
|
+
end
|
1614
|
+
@@Venue = Field.new('Venue')
|
1615
|
+
def self.Venue
|
1616
|
+
@@Venue
|
1617
|
+
end
|
1618
|
+
@@ZIP_code = Field.new('ZIP_Code')
|
1619
|
+
def self.ZIP_code
|
1620
|
+
@@ZIP_code
|
1621
|
+
end
|
1622
|
+
@@Created_time = Field.new('Created_Time')
|
1623
|
+
def self.Created_time
|
1624
|
+
@@Created_time
|
1625
|
+
end
|
1626
|
+
@@Longitude = Field.new('Longitude')
|
1627
|
+
def self.Longitude
|
1628
|
+
@@Longitude
|
1629
|
+
end
|
1630
|
+
@@Check_in_time = Field.new('Check_In_Time')
|
1631
|
+
def self.Check_in_time
|
1632
|
+
@@Check_in_time
|
1633
|
+
end
|
1634
|
+
@@Recurring_activity = Field.new('Recurring_Activity')
|
1635
|
+
def self.Recurring_activity
|
1636
|
+
@@Recurring_activity
|
1637
|
+
end
|
1638
|
+
@@What_id = Field.new('What_Id')
|
1639
|
+
def self.What_id
|
1640
|
+
@@What_id
|
1641
|
+
end
|
1642
|
+
@@Check_in_sub_locality = Field.new('Check_In_Sub_Locality')
|
1643
|
+
def self.Check_in_sub_locality
|
1644
|
+
@@Check_in_sub_locality
|
1645
|
+
end
|
1646
|
+
@@Created_by = Field.new('Created_By')
|
1647
|
+
def self.Created_by
|
1648
|
+
@@Created_by
|
1649
|
+
end
|
1650
|
+
@@Tag = Field.new('Tag')
|
1651
|
+
def self.Tag
|
1652
|
+
@@Tag
|
1653
|
+
end
|
1654
|
+
end
|
1655
|
+
|
1656
|
+
class Purchase_Orders
|
1657
|
+
@@Owner = Field.new('Owner')
|
1658
|
+
def self.Owner
|
1659
|
+
@@Owner
|
1660
|
+
end
|
1661
|
+
@@Discount = Field.new('Discount')
|
1662
|
+
def self.Discount
|
1663
|
+
@@Discount
|
1664
|
+
end
|
1665
|
+
@@Description = Field.new('Description')
|
1666
|
+
def self.Description
|
1667
|
+
@@Description
|
1668
|
+
end
|
1669
|
+
@@Vendor_name = Field.new('Vendor_Name')
|
1670
|
+
def self.Vendor_name
|
1671
|
+
@@Vendor_name
|
1672
|
+
end
|
1673
|
+
@@Shipping_state = Field.new('Shipping_State')
|
1674
|
+
def self.Shipping_state
|
1675
|
+
@@Shipping_state
|
1676
|
+
end
|
1677
|
+
@@Tax = Field.new('Tax')
|
1678
|
+
def self.Tax
|
1679
|
+
@@Tax
|
1680
|
+
end
|
1681
|
+
@@PO_date = Field.new('PO_Date')
|
1682
|
+
def self.PO_date
|
1683
|
+
@@PO_date
|
1684
|
+
end
|
1685
|
+
@@Modified_by = Field.new('Modified_By')
|
1686
|
+
def self.Modified_by
|
1687
|
+
@@Modified_by
|
1688
|
+
end
|
1689
|
+
@@Billing_country = Field.new('Billing_Country')
|
1690
|
+
def self.Billing_country
|
1691
|
+
@@Billing_country
|
1692
|
+
end
|
1693
|
+
@@Purchase_items = Field.new('Purchase_Items')
|
1694
|
+
def self.Purchase_items
|
1695
|
+
@@Purchase_items
|
1696
|
+
end
|
1697
|
+
@@id = Field.new('id')
|
1698
|
+
def self.id
|
1699
|
+
@@id
|
1700
|
+
end
|
1701
|
+
@@Carrier = Field.new('Carrier')
|
1702
|
+
def self.Carrier
|
1703
|
+
@@Carrier
|
1704
|
+
end
|
1705
|
+
@@Status = Field.new('Status')
|
1706
|
+
def self.Status
|
1707
|
+
@@Status
|
1708
|
+
end
|
1709
|
+
@@Grand_total = Field.new('Grand_Total')
|
1710
|
+
def self.Grand_total
|
1711
|
+
@@Grand_total
|
1712
|
+
end
|
1713
|
+
@@Sales_commission = Field.new('Sales_Commission')
|
1714
|
+
def self.Sales_commission
|
1715
|
+
@@Sales_commission
|
1716
|
+
end
|
1717
|
+
@@Modified_time = Field.new('Modified_Time')
|
1718
|
+
def self.Modified_time
|
1719
|
+
@@Modified_time
|
1720
|
+
end
|
1721
|
+
@@PO_number = Field.new('PO_Number')
|
1722
|
+
def self.PO_number
|
1723
|
+
@@PO_number
|
1724
|
+
end
|
1725
|
+
@@Due_date = Field.new('Due_Date')
|
1726
|
+
def self.Due_date
|
1727
|
+
@@Due_date
|
1728
|
+
end
|
1729
|
+
@@Billing_street = Field.new('Billing_Street')
|
1730
|
+
def self.Billing_street
|
1731
|
+
@@Billing_street
|
1732
|
+
end
|
1733
|
+
@@Adjustment = Field.new('Adjustment')
|
1734
|
+
def self.Adjustment
|
1735
|
+
@@Adjustment
|
1736
|
+
end
|
1737
|
+
@@Created_time = Field.new('Created_Time')
|
1738
|
+
def self.Created_time
|
1739
|
+
@@Created_time
|
1740
|
+
end
|
1741
|
+
@@Terms_and_conditions = Field.new('Terms_and_Conditions')
|
1742
|
+
def self.Terms_and_conditions
|
1743
|
+
@@Terms_and_conditions
|
1744
|
+
end
|
1745
|
+
@@Sub_total = Field.new('Sub_Total')
|
1746
|
+
def self.Sub_total
|
1747
|
+
@@Sub_total
|
1748
|
+
end
|
1749
|
+
@@Billing_code = Field.new('Billing_Code')
|
1750
|
+
def self.Billing_code
|
1751
|
+
@@Billing_code
|
1752
|
+
end
|
1753
|
+
@@Subject = Field.new('Subject')
|
1754
|
+
def self.Subject
|
1755
|
+
@@Subject
|
1756
|
+
end
|
1757
|
+
@@Tracking_number = Field.new('Tracking_Number')
|
1758
|
+
def self.Tracking_number
|
1759
|
+
@@Tracking_number
|
1760
|
+
end
|
1761
|
+
@@Contact_name = Field.new('Contact_Name')
|
1762
|
+
def self.Contact_name
|
1763
|
+
@@Contact_name
|
1764
|
+
end
|
1765
|
+
@@Excise_duty = Field.new('Excise_Duty')
|
1766
|
+
def self.Excise_duty
|
1767
|
+
@@Excise_duty
|
1768
|
+
end
|
1769
|
+
@@Shipping_city = Field.new('Shipping_City')
|
1770
|
+
def self.Shipping_city
|
1771
|
+
@@Shipping_city
|
1772
|
+
end
|
1773
|
+
@@Shipping_country = Field.new('Shipping_Country')
|
1774
|
+
def self.Shipping_country
|
1775
|
+
@@Shipping_country
|
1776
|
+
end
|
1777
|
+
@@Shipping_code = Field.new('Shipping_Code')
|
1778
|
+
def self.Shipping_code
|
1779
|
+
@@Shipping_code
|
1780
|
+
end
|
1781
|
+
@@Billing_city = Field.new('Billing_City')
|
1782
|
+
def self.Billing_city
|
1783
|
+
@@Billing_city
|
1784
|
+
end
|
1785
|
+
@@Requisition_no = Field.new('Requisition_No')
|
1786
|
+
def self.Requisition_no
|
1787
|
+
@@Requisition_no
|
1788
|
+
end
|
1789
|
+
@@Billing_state = Field.new('Billing_State')
|
1790
|
+
def self.Billing_state
|
1791
|
+
@@Billing_state
|
1792
|
+
end
|
1793
|
+
@@Created_by = Field.new('Created_By')
|
1794
|
+
def self.Created_by
|
1795
|
+
@@Created_by
|
1796
|
+
end
|
1797
|
+
@@Tag = Field.new('Tag')
|
1798
|
+
def self.Tag
|
1799
|
+
@@Tag
|
1800
|
+
end
|
1801
|
+
@@Shipping_street = Field.new('Shipping_Street')
|
1802
|
+
def self.Shipping_street
|
1803
|
+
@@Shipping_street
|
1804
|
+
end
|
1805
|
+
end
|
1806
|
+
|
1807
|
+
class Accounts
|
1808
|
+
@@Owner = Field.new('Owner')
|
1809
|
+
def self.Owner
|
1810
|
+
@@Owner
|
1811
|
+
end
|
1812
|
+
@@Ownership = Field.new('Ownership')
|
1813
|
+
def self.Ownership
|
1814
|
+
@@Ownership
|
1815
|
+
end
|
1816
|
+
@@Description = Field.new('Description')
|
1817
|
+
def self.Description
|
1818
|
+
@@Description
|
1819
|
+
end
|
1820
|
+
@@Account_type = Field.new('Account_Type')
|
1821
|
+
def self.Account_type
|
1822
|
+
@@Account_type
|
1823
|
+
end
|
1824
|
+
@@Rating = Field.new('Rating')
|
1825
|
+
def self.Rating
|
1826
|
+
@@Rating
|
1827
|
+
end
|
1828
|
+
@@SIC_code = Field.new('SIC_Code')
|
1829
|
+
def self.SIC_code
|
1830
|
+
@@SIC_code
|
1831
|
+
end
|
1832
|
+
@@Shipping_state = Field.new('Shipping_State')
|
1833
|
+
def self.Shipping_state
|
1834
|
+
@@Shipping_state
|
1835
|
+
end
|
1836
|
+
@@Website = Field.new('Website')
|
1837
|
+
def self.Website
|
1838
|
+
@@Website
|
1839
|
+
end
|
1840
|
+
@@Employees = Field.new('Employees')
|
1841
|
+
def self.Employees
|
1842
|
+
@@Employees
|
1843
|
+
end
|
1844
|
+
@@Last_activity_time = Field.new('Last_Activity_Time')
|
1845
|
+
def self.Last_activity_time
|
1846
|
+
@@Last_activity_time
|
1847
|
+
end
|
1848
|
+
@@Industry = Field.new('Industry')
|
1849
|
+
def self.Industry
|
1850
|
+
@@Industry
|
1851
|
+
end
|
1852
|
+
@@Record_image = Field.new('Record_Image')
|
1853
|
+
def self.Record_image
|
1854
|
+
@@Record_image
|
1855
|
+
end
|
1856
|
+
@@Modified_by = Field.new('Modified_By')
|
1857
|
+
def self.Modified_by
|
1858
|
+
@@Modified_by
|
1859
|
+
end
|
1860
|
+
@@Account_site = Field.new('Account_Site')
|
1861
|
+
def self.Account_site
|
1862
|
+
@@Account_site
|
1863
|
+
end
|
1864
|
+
@@Phone = Field.new('Phone')
|
1865
|
+
def self.Phone
|
1866
|
+
@@Phone
|
1867
|
+
end
|
1868
|
+
@@Billing_country = Field.new('Billing_Country')
|
1869
|
+
def self.Billing_country
|
1870
|
+
@@Billing_country
|
1871
|
+
end
|
1872
|
+
@@Account_name = Field.new('Account_Name')
|
1873
|
+
def self.Account_name
|
1874
|
+
@@Account_name
|
1875
|
+
end
|
1876
|
+
@@id = Field.new('id')
|
1877
|
+
def self.id
|
1878
|
+
@@id
|
1879
|
+
end
|
1880
|
+
@@Account_number = Field.new('Account_Number')
|
1881
|
+
def self.Account_number
|
1882
|
+
@@Account_number
|
1883
|
+
end
|
1884
|
+
@@Ticker_symbol = Field.new('Ticker_Symbol')
|
1885
|
+
def self.Ticker_symbol
|
1886
|
+
@@Ticker_symbol
|
1887
|
+
end
|
1888
|
+
@@Modified_time = Field.new('Modified_Time')
|
1889
|
+
def self.Modified_time
|
1890
|
+
@@Modified_time
|
1891
|
+
end
|
1892
|
+
@@Billing_street = Field.new('Billing_Street')
|
1893
|
+
def self.Billing_street
|
1894
|
+
@@Billing_street
|
1895
|
+
end
|
1896
|
+
@@Created_time = Field.new('Created_Time')
|
1897
|
+
def self.Created_time
|
1898
|
+
@@Created_time
|
1899
|
+
end
|
1900
|
+
@@Billing_code = Field.new('Billing_Code')
|
1901
|
+
def self.Billing_code
|
1902
|
+
@@Billing_code
|
1903
|
+
end
|
1904
|
+
@@Territories = Field.new('Territories')
|
1905
|
+
def self.Territories
|
1906
|
+
@@Territories
|
1907
|
+
end
|
1908
|
+
@@Parent_account = Field.new('Parent_Account')
|
1909
|
+
def self.Parent_account
|
1910
|
+
@@Parent_account
|
1911
|
+
end
|
1912
|
+
@@Shipping_city = Field.new('Shipping_City')
|
1913
|
+
def self.Shipping_city
|
1914
|
+
@@Shipping_city
|
1915
|
+
end
|
1916
|
+
@@Shipping_country = Field.new('Shipping_Country')
|
1917
|
+
def self.Shipping_country
|
1918
|
+
@@Shipping_country
|
1919
|
+
end
|
1920
|
+
@@Shipping_code = Field.new('Shipping_Code')
|
1921
|
+
def self.Shipping_code
|
1922
|
+
@@Shipping_code
|
1923
|
+
end
|
1924
|
+
@@Billing_city = Field.new('Billing_City')
|
1925
|
+
def self.Billing_city
|
1926
|
+
@@Billing_city
|
1927
|
+
end
|
1928
|
+
@@Billing_state = Field.new('Billing_State')
|
1929
|
+
def self.Billing_state
|
1930
|
+
@@Billing_state
|
1931
|
+
end
|
1932
|
+
@@Tag = Field.new('Tag')
|
1933
|
+
def self.Tag
|
1934
|
+
@@Tag
|
1935
|
+
end
|
1936
|
+
@@Created_by = Field.new('Created_By')
|
1937
|
+
def self.Created_by
|
1938
|
+
@@Created_by
|
1939
|
+
end
|
1940
|
+
@@Fax = Field.new('Fax')
|
1941
|
+
def self.Fax
|
1942
|
+
@@Fax
|
1943
|
+
end
|
1944
|
+
@@Annual_revenue = Field.new('Annual_Revenue')
|
1945
|
+
def self.Annual_revenue
|
1946
|
+
@@Annual_revenue
|
1947
|
+
end
|
1948
|
+
@@Shipping_street = Field.new('Shipping_Street')
|
1949
|
+
def self.Shipping_street
|
1950
|
+
@@Shipping_street
|
1951
|
+
end
|
1952
|
+
end
|
1953
|
+
|
1954
|
+
class Cases
|
1955
|
+
@@Owner = Field.new('Owner')
|
1956
|
+
def self.Owner
|
1957
|
+
@@Owner
|
1958
|
+
end
|
1959
|
+
@@Email = Field.new('Email')
|
1960
|
+
def self.Email
|
1961
|
+
@@Email
|
1962
|
+
end
|
1963
|
+
@@Description = Field.new('Description')
|
1964
|
+
def self.Description
|
1965
|
+
@@Description
|
1966
|
+
end
|
1967
|
+
@@Internal_comments = Field.new('Internal_Comments')
|
1968
|
+
def self.Internal_comments
|
1969
|
+
@@Internal_comments
|
1970
|
+
end
|
1971
|
+
@@No_of_comments = Field.new('No_of_comments')
|
1972
|
+
def self.No_of_comments
|
1973
|
+
@@No_of_comments
|
1974
|
+
end
|
1975
|
+
@@Reported_by = Field.new('Reported_By')
|
1976
|
+
def self.Reported_by
|
1977
|
+
@@Reported_by
|
1978
|
+
end
|
1979
|
+
@@Case_number = Field.new('Case_Number')
|
1980
|
+
def self.Case_number
|
1981
|
+
@@Case_number
|
1982
|
+
end
|
1983
|
+
@@Modified_by = Field.new('Modified_By')
|
1984
|
+
def self.Modified_by
|
1985
|
+
@@Modified_by
|
1986
|
+
end
|
1987
|
+
@@Deal_name = Field.new('Deal_Name')
|
1988
|
+
def self.Deal_name
|
1989
|
+
@@Deal_name
|
1990
|
+
end
|
1991
|
+
@@Phone = Field.new('Phone')
|
1992
|
+
def self.Phone
|
1993
|
+
@@Phone
|
1994
|
+
end
|
1995
|
+
@@Account_name = Field.new('Account_Name')
|
1996
|
+
def self.Account_name
|
1997
|
+
@@Account_name
|
1998
|
+
end
|
1999
|
+
@@id = Field.new('id')
|
2000
|
+
def self.id
|
2001
|
+
@@id
|
2002
|
+
end
|
2003
|
+
@@Solution = Field.new('Solution')
|
2004
|
+
def self.Solution
|
2005
|
+
@@Solution
|
2006
|
+
end
|
2007
|
+
@@Status = Field.new('Status')
|
2008
|
+
def self.Status
|
2009
|
+
@@Status
|
2010
|
+
end
|
2011
|
+
@@Modified_time = Field.new('Modified_Time')
|
2012
|
+
def self.Modified_time
|
2013
|
+
@@Modified_time
|
2014
|
+
end
|
2015
|
+
@@Priority = Field.new('Priority')
|
2016
|
+
def self.Priority
|
2017
|
+
@@Priority
|
2018
|
+
end
|
2019
|
+
@@Created_time = Field.new('Created_Time')
|
2020
|
+
def self.Created_time
|
2021
|
+
@@Created_time
|
2022
|
+
end
|
2023
|
+
@@Comments = Field.new('Comments')
|
2024
|
+
def self.Comments
|
2025
|
+
@@Comments
|
2026
|
+
end
|
2027
|
+
@@Product_name = Field.new('Product_Name')
|
2028
|
+
def self.Product_name
|
2029
|
+
@@Product_name
|
2030
|
+
end
|
2031
|
+
@@Add_comment = Field.new('Add_Comment')
|
2032
|
+
def self.Add_comment
|
2033
|
+
@@Add_comment
|
2034
|
+
end
|
2035
|
+
@@Case_origin = Field.new('Case_Origin')
|
2036
|
+
def self.Case_origin
|
2037
|
+
@@Case_origin
|
2038
|
+
end
|
2039
|
+
@@Subject = Field.new('Subject')
|
2040
|
+
def self.Subject
|
2041
|
+
@@Subject
|
2042
|
+
end
|
2043
|
+
@@Case_reason = Field.new('Case_Reason')
|
2044
|
+
def self.Case_reason
|
2045
|
+
@@Case_reason
|
2046
|
+
end
|
2047
|
+
@@Type = Field.new('Type')
|
2048
|
+
def self.Type
|
2049
|
+
@@Type
|
2050
|
+
end
|
2051
|
+
@@Is_record_duplicate = Field.new('Is_Record_Duplicate')
|
2052
|
+
def self.Is_record_duplicate
|
2053
|
+
@@Is_record_duplicate
|
2054
|
+
end
|
2055
|
+
@@Tag = Field.new('Tag')
|
2056
|
+
def self.Tag
|
2057
|
+
@@Tag
|
2058
|
+
end
|
2059
|
+
@@Created_by = Field.new('Created_By')
|
2060
|
+
def self.Created_by
|
2061
|
+
@@Created_by
|
2062
|
+
end
|
2063
|
+
@@Related_to = Field.new('Related_To')
|
2064
|
+
def self.Related_to
|
2065
|
+
@@Related_to
|
2066
|
+
end
|
2067
|
+
end
|
2068
|
+
|
2069
|
+
class Notes
|
2070
|
+
@@Owner = Field.new('Owner')
|
2071
|
+
def self.Owner
|
2072
|
+
@@Owner
|
2073
|
+
end
|
2074
|
+
@@Modified_by = Field.new('Modified_By')
|
2075
|
+
def self.Modified_by
|
2076
|
+
@@Modified_by
|
2077
|
+
end
|
2078
|
+
@@Modified_time = Field.new('Modified_Time')
|
2079
|
+
def self.Modified_time
|
2080
|
+
@@Modified_time
|
2081
|
+
end
|
2082
|
+
@@Created_time = Field.new('Created_Time')
|
2083
|
+
def self.Created_time
|
2084
|
+
@@Created_time
|
2085
|
+
end
|
2086
|
+
@@Parent_id = Field.new('Parent_Id')
|
2087
|
+
def self.Parent_id
|
2088
|
+
@@Parent_id
|
2089
|
+
end
|
2090
|
+
@@id = Field.new('id')
|
2091
|
+
def self.id
|
2092
|
+
@@id
|
2093
|
+
end
|
2094
|
+
@@Created_by = Field.new('Created_By')
|
2095
|
+
def self.Created_by
|
2096
|
+
@@Created_by
|
2097
|
+
end
|
2098
|
+
@@Note_title = Field.new('Note_Title')
|
2099
|
+
def self.Note_title
|
2100
|
+
@@Note_title
|
2101
|
+
end
|
2102
|
+
@@Note_content = Field.new('Note_Content')
|
2103
|
+
def self.Note_content
|
2104
|
+
@@Note_content
|
2105
|
+
end
|
2106
|
+
end
|
2107
|
+
|
2108
|
+
end
|
2109
|
+
end
|