netsuite-soap 2025.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.envrc +9 -0
- data/.github/FUNDING.yml +1 -0
- data/.github/dependabot.yml +14 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/main.yml +55 -0
- data/.github/workflows/publish.yml +53 -0
- data/.gitignore +23 -0
- data/.rspec +6 -0
- data/.ruby-version +1 -0
- data/.tool-versions +1 -0
- data/AGENTS.md +150 -0
- data/CLAUDE.md +111 -0
- data/DEVELOPMENT.md +34 -0
- data/Gemfile +10 -0
- data/HISTORY.md +171 -0
- data/LICENSE +22 -0
- data/README.md +87 -0
- data/Rakefile +130 -0
- data/docs/async.md +46 -0
- data/docs/configuration.md +88 -0
- data/docs/contributing.md +36 -0
- data/docs/usage.md +149 -0
- data/lib/netsuite/actions/abstract_action.rb +32 -0
- data/lib/netsuite/actions/add.rb +93 -0
- data/lib/netsuite/actions/async_add_list.rb +74 -0
- data/lib/netsuite/actions/async_delete_list.rb +40 -0
- data/lib/netsuite/actions/async_get_list.rb +46 -0
- data/lib/netsuite/actions/async_initialize_list.rb +85 -0
- data/lib/netsuite/actions/async_response.rb +52 -0
- data/lib/netsuite/actions/async_search.rb +36 -0
- data/lib/netsuite/actions/async_update_list.rb +53 -0
- data/lib/netsuite/actions/async_upsert_list.rb +53 -0
- data/lib/netsuite/actions/attach_file.rb +87 -0
- data/lib/netsuite/actions/check_async_status.rb +29 -0
- data/lib/netsuite/actions/delete.rb +102 -0
- data/lib/netsuite/actions/delete_list.rb +108 -0
- data/lib/netsuite/actions/get.rb +87 -0
- data/lib/netsuite/actions/get_all.rb +78 -0
- data/lib/netsuite/actions/get_async_result.rb +35 -0
- data/lib/netsuite/actions/get_deleted.rb +92 -0
- data/lib/netsuite/actions/get_list.rb +98 -0
- data/lib/netsuite/actions/get_select_value.rb +80 -0
- data/lib/netsuite/actions/initialize.rb +86 -0
- data/lib/netsuite/actions/search.rb +265 -0
- data/lib/netsuite/actions/update.rb +86 -0
- data/lib/netsuite/actions/update_list.rb +113 -0
- data/lib/netsuite/actions/upsert.rb +86 -0
- data/lib/netsuite/actions/upsert_list.rb +118 -0
- data/lib/netsuite/client.rb +19 -0
- data/lib/netsuite/configuration.rb +470 -0
- data/lib/netsuite/errors.rb +18 -0
- data/lib/netsuite/namespaces/act_sched.rb +11 -0
- data/lib/netsuite/namespaces/comm_general.rb +11 -0
- data/lib/netsuite/namespaces/file_cabinet.rb +11 -0
- data/lib/netsuite/namespaces/list_acct.rb +11 -0
- data/lib/netsuite/namespaces/list_emp.rb +12 -0
- data/lib/netsuite/namespaces/list_mkt.rb +12 -0
- data/lib/netsuite/namespaces/list_rel.rb +11 -0
- data/lib/netsuite/namespaces/list_support.rb +11 -0
- data/lib/netsuite/namespaces/list_website.rb +11 -0
- data/lib/netsuite/namespaces/platform_common.rb +11 -0
- data/lib/netsuite/namespaces/platform_core.rb +11 -0
- data/lib/netsuite/namespaces/setup_custom.rb +11 -0
- data/lib/netsuite/namespaces/tran_bank.rb +11 -0
- data/lib/netsuite/namespaces/tran_cust.rb +11 -0
- data/lib/netsuite/namespaces/tran_emp.rb +11 -0
- data/lib/netsuite/namespaces/tran_general.rb +11 -0
- data/lib/netsuite/namespaces/tran_invt.rb +11 -0
- data/lib/netsuite/namespaces/tran_purch.rb +11 -0
- data/lib/netsuite/namespaces/tran_sales.rb +11 -0
- data/lib/netsuite/passports/token.rb +55 -0
- data/lib/netsuite/passports/user.rb +25 -0
- data/lib/netsuite/records/account.rb +30 -0
- data/lib/netsuite/records/accounting_period.rb +25 -0
- data/lib/netsuite/records/address.rb +46 -0
- data/lib/netsuite/records/assembly_build.rb +39 -0
- data/lib/netsuite/records/assembly_component.rb +26 -0
- data/lib/netsuite/records/assembly_component_list.rb +12 -0
- data/lib/netsuite/records/assembly_item.rb +66 -0
- data/lib/netsuite/records/assembly_unbuild.rb +37 -0
- data/lib/netsuite/records/base_ref_list.rb +17 -0
- data/lib/netsuite/records/bill_address.rb +17 -0
- data/lib/netsuite/records/billing_schedule.rb +33 -0
- data/lib/netsuite/records/billing_schedule_milestone.rb +28 -0
- data/lib/netsuite/records/billing_schedule_milestone_list.rb +14 -0
- data/lib/netsuite/records/billing_schedule_recurrence.rb +28 -0
- data/lib/netsuite/records/billing_schedule_recurrence_list.rb +14 -0
- data/lib/netsuite/records/bin.rb +30 -0
- data/lib/netsuite/records/bin_number.rb +18 -0
- data/lib/netsuite/records/bin_number_list.rb +11 -0
- data/lib/netsuite/records/bin_transfer.rb +38 -0
- data/lib/netsuite/records/bin_transfer_inventory.rb +20 -0
- data/lib/netsuite/records/bin_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/campaign.rb +28 -0
- data/lib/netsuite/records/cash_refund.rb +135 -0
- data/lib/netsuite/records/cash_refund_item.rb +32 -0
- data/lib/netsuite/records/cash_refund_item_list.rb +13 -0
- data/lib/netsuite/records/cash_sale.rb +51 -0
- data/lib/netsuite/records/cash_sale_item.rb +40 -0
- data/lib/netsuite/records/cash_sale_item_list.rb +13 -0
- data/lib/netsuite/records/classification.rb +30 -0
- data/lib/netsuite/records/contact.rb +44 -0
- data/lib/netsuite/records/contact_access_roles.rb +23 -0
- data/lib/netsuite/records/contact_access_roles_list.rb +9 -0
- data/lib/netsuite/records/contact_addressbook.rb +64 -0
- data/lib/netsuite/records/contact_addressbook_list.rb +11 -0
- data/lib/netsuite/records/contact_list.rb +49 -0
- data/lib/netsuite/records/contact_role.rb +23 -0
- data/lib/netsuite/records/cost_category.rb +28 -0
- data/lib/netsuite/records/credit_memo.rb +59 -0
- data/lib/netsuite/records/credit_memo_apply.rb +16 -0
- data/lib/netsuite/records/credit_memo_apply_list.rb +15 -0
- data/lib/netsuite/records/credit_memo_item.rb +34 -0
- data/lib/netsuite/records/credit_memo_item_list.rb +11 -0
- data/lib/netsuite/records/currency.rb +30 -0
- data/lib/netsuite/records/currency_rate.rb +34 -0
- data/lib/netsuite/records/custom_field.rb +23 -0
- data/lib/netsuite/records/custom_field_list.rb +186 -0
- data/lib/netsuite/records/custom_list.rb +27 -0
- data/lib/netsuite/records/custom_list_custom_value.rb +22 -0
- data/lib/netsuite/records/custom_list_custom_value_list.rb +13 -0
- data/lib/netsuite/records/custom_record.rb +56 -0
- data/lib/netsuite/records/custom_record_ref.rb +50 -0
- data/lib/netsuite/records/custom_record_type.rb +30 -0
- data/lib/netsuite/records/customer.rb +265 -0
- data/lib/netsuite/records/customer_addressbook.rb +64 -0
- data/lib/netsuite/records/customer_addressbook_list.rb +11 -0
- data/lib/netsuite/records/customer_category.rb +26 -0
- data/lib/netsuite/records/customer_credit_cards.rb +36 -0
- data/lib/netsuite/records/customer_credit_cards_list.rb +10 -0
- data/lib/netsuite/records/customer_currency.rb +28 -0
- data/lib/netsuite/records/customer_currency_list.rb +9 -0
- data/lib/netsuite/records/customer_deposit.rb +47 -0
- data/lib/netsuite/records/customer_deposit_apply.rb +17 -0
- data/lib/netsuite/records/customer_deposit_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_partner.rb +24 -0
- data/lib/netsuite/records/customer_partners_list.rb +9 -0
- data/lib/netsuite/records/customer_payment.rb +56 -0
- data/lib/netsuite/records/customer_payment_apply.rb +17 -0
- data/lib/netsuite/records/customer_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_payment_credit.rb +17 -0
- data/lib/netsuite/records/customer_payment_credit_list.rb +12 -0
- data/lib/netsuite/records/customer_refund.rb +52 -0
- data/lib/netsuite/records/customer_refund_apply.rb +16 -0
- data/lib/netsuite/records/customer_refund_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_refund_deposit.rb +16 -0
- data/lib/netsuite/records/customer_refund_deposit_list.rb +11 -0
- data/lib/netsuite/records/customer_sales_team.rb +24 -0
- data/lib/netsuite/records/customer_sales_team_list.rb +9 -0
- data/lib/netsuite/records/customer_status.rb +29 -0
- data/lib/netsuite/records/department.rb +27 -0
- data/lib/netsuite/records/deposit.rb +40 -0
- data/lib/netsuite/records/deposit_application.rb +64 -0
- data/lib/netsuite/records/deposit_cash_back.rb +42 -0
- data/lib/netsuite/records/deposit_cash_back_list.rb +9 -0
- data/lib/netsuite/records/deposit_other.rb +35 -0
- data/lib/netsuite/records/deposit_other_list.rb +9 -0
- data/lib/netsuite/records/deposit_payment.rb +48 -0
- data/lib/netsuite/records/deposit_payment_list.rb +14 -0
- data/lib/netsuite/records/description_item.rb +34 -0
- data/lib/netsuite/records/discount_item.rb +37 -0
- data/lib/netsuite/records/duration.rb +15 -0
- data/lib/netsuite/records/employee.rb +42 -0
- data/lib/netsuite/records/entity_custom_field.rb +53 -0
- data/lib/netsuite/records/estimate.rb +122 -0
- data/lib/netsuite/records/estimate_item.rb +47 -0
- data/lib/netsuite/records/estimate_item_list.rb +11 -0
- data/lib/netsuite/records/file.rb +31 -0
- data/lib/netsuite/records/folder.rb +26 -0
- data/lib/netsuite/records/gift_cert_redemption.rb +22 -0
- data/lib/netsuite/records/gift_cert_redemption_list.rb +11 -0
- data/lib/netsuite/records/gift_certificate.rb +30 -0
- data/lib/netsuite/records/gift_certificate_item.rb +84 -0
- data/lib/netsuite/records/inbound_shipment.rb +32 -0
- data/lib/netsuite/records/inbound_shipment_item.rb +39 -0
- data/lib/netsuite/records/inbound_shipment_item_list.rb +11 -0
- data/lib/netsuite/records/inter_company_journal_entry.rb +48 -0
- data/lib/netsuite/records/inter_company_journal_entry_line.rb +28 -0
- data/lib/netsuite/records/inter_company_journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/inventory_adjustment.rb +30 -0
- data/lib/netsuite/records/inventory_adjustment_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_adjustment_inventory_list.rb +10 -0
- data/lib/netsuite/records/inventory_assignment.rb +24 -0
- data/lib/netsuite/records/inventory_assignment_list.rb +35 -0
- data/lib/netsuite/records/inventory_detail.rb +18 -0
- data/lib/netsuite/records/inventory_item.rb +341 -0
- data/lib/netsuite/records/inventory_number.rb +34 -0
- data/lib/netsuite/records/inventory_number_locations.rb +16 -0
- data/lib/netsuite/records/inventory_number_locations_list.rb +10 -0
- data/lib/netsuite/records/inventory_transfer.rb +30 -0
- data/lib/netsuite/records/inventory_transfer_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/invoice.rb +167 -0
- data/lib/netsuite/records/invoice_item.rb +46 -0
- data/lib/netsuite/records/invoice_item_list.rb +15 -0
- data/lib/netsuite/records/item_availability.rb +45 -0
- data/lib/netsuite/records/item_fulfillment.rb +62 -0
- data/lib/netsuite/records/item_fulfillment_item.rb +45 -0
- data/lib/netsuite/records/item_fulfillment_item_list.rb +14 -0
- data/lib/netsuite/records/item_fulfillment_package.rb +24 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex.rb +28 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_list.rb +37 -0
- data/lib/netsuite/records/item_fulfillment_package_ups.rb +27 -0
- data/lib/netsuite/records/item_fulfillment_package_ups_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_usps.rb +26 -0
- data/lib/netsuite/records/item_fulfillment_package_usps_list.rb +32 -0
- data/lib/netsuite/records/item_group.rb +37 -0
- data/lib/netsuite/records/item_member.rb +26 -0
- data/lib/netsuite/records/item_member_list.rb +12 -0
- data/lib/netsuite/records/item_option_custom_field.rb +52 -0
- data/lib/netsuite/records/item_receipt.rb +46 -0
- data/lib/netsuite/records/item_receipt_item.rb +43 -0
- data/lib/netsuite/records/item_receipt_item_list.rb +11 -0
- data/lib/netsuite/records/item_vendor.rb +24 -0
- data/lib/netsuite/records/item_vendor_list.rb +11 -0
- data/lib/netsuite/records/job.rb +41 -0
- data/lib/netsuite/records/job_status.rb +25 -0
- data/lib/netsuite/records/journal_entry.rb +48 -0
- data/lib/netsuite/records/journal_entry_line.rb +27 -0
- data/lib/netsuite/records/journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/kit_item.rb +71 -0
- data/lib/netsuite/records/location.rb +40 -0
- data/lib/netsuite/records/locations_list.rb +15 -0
- data/lib/netsuite/records/lot_numbered_assembly_item.rb +64 -0
- data/lib/netsuite/records/lot_numbered_inventory_item.rb +260 -0
- data/lib/netsuite/records/matrix_option_list.rb +71 -0
- data/lib/netsuite/records/member_list.rb +10 -0
- data/lib/netsuite/records/message.rb +30 -0
- data/lib/netsuite/records/non_inventory_purchase_item.rb +52 -0
- data/lib/netsuite/records/non_inventory_resale_item.rb +189 -0
- data/lib/netsuite/records/non_inventory_sale_item.rb +165 -0
- data/lib/netsuite/records/note.rb +33 -0
- data/lib/netsuite/records/note_type.rb +27 -0
- data/lib/netsuite/records/null_field_list.rb +15 -0
- data/lib/netsuite/records/opportunity.rb +45 -0
- data/lib/netsuite/records/opportunity_item.rb +41 -0
- data/lib/netsuite/records/opportunity_item_list.rb +9 -0
- data/lib/netsuite/records/other_charge_sale_item.rb +73 -0
- data/lib/netsuite/records/partner.rb +35 -0
- data/lib/netsuite/records/payment_item.rb +36 -0
- data/lib/netsuite/records/payment_method.rb +28 -0
- data/lib/netsuite/records/payroll_item.rb +36 -0
- data/lib/netsuite/records/phone_call.rb +29 -0
- data/lib/netsuite/records/price.rb +17 -0
- data/lib/netsuite/records/price_level.rb +26 -0
- data/lib/netsuite/records/price_list.rb +9 -0
- data/lib/netsuite/records/pricing.rb +20 -0
- data/lib/netsuite/records/pricing_matrix.rb +11 -0
- data/lib/netsuite/records/promotion_code.rb +38 -0
- data/lib/netsuite/records/promotions.rb +26 -0
- data/lib/netsuite/records/promotions_list.rb +9 -0
- data/lib/netsuite/records/purchase_order.rb +52 -0
- data/lib/netsuite/records/purchase_order_item.rb +42 -0
- data/lib/netsuite/records/purchase_order_item_list.rb +11 -0
- data/lib/netsuite/records/record_ref.rb +38 -0
- data/lib/netsuite/records/record_ref_list.rb +22 -0
- data/lib/netsuite/records/return_authorization.rb +135 -0
- data/lib/netsuite/records/return_authorization_item.rb +43 -0
- data/lib/netsuite/records/return_authorization_item_list.rb +11 -0
- data/lib/netsuite/records/rev_rec_schedule.rb +32 -0
- data/lib/netsuite/records/rev_rec_template.rb +25 -0
- data/lib/netsuite/records/role_list.rb +24 -0
- data/lib/netsuite/records/roles.rb +17 -0
- data/lib/netsuite/records/sales_order.rb +61 -0
- data/lib/netsuite/records/sales_order_item.rb +49 -0
- data/lib/netsuite/records/sales_order_item_list.rb +11 -0
- data/lib/netsuite/records/sales_order_ship_group_list.rb +11 -0
- data/lib/netsuite/records/sales_role.rb +26 -0
- data/lib/netsuite/records/sales_tax_item.rb +34 -0
- data/lib/netsuite/records/serialized_assembly_item.rb +240 -0
- data/lib/netsuite/records/serialized_inventory_item.rb +248 -0
- data/lib/netsuite/records/serialized_inventory_item_location.rb +36 -0
- data/lib/netsuite/records/serialized_inventory_item_locations_list.rb +10 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers.rb +15 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers_list.rb +10 -0
- data/lib/netsuite/records/service_resale_item.rb +154 -0
- data/lib/netsuite/records/service_sale_item.rb +50 -0
- data/lib/netsuite/records/ship_address.rb +17 -0
- data/lib/netsuite/records/site_category.rb +33 -0
- data/lib/netsuite/records/subscription.rb +18 -0
- data/lib/netsuite/records/subscriptions_list.rb +10 -0
- data/lib/netsuite/records/subsidiary.rb +38 -0
- data/lib/netsuite/records/subtotal_item.rb +34 -0
- data/lib/netsuite/records/support_case.rb +32 -0
- data/lib/netsuite/records/support_case_type.rb +26 -0
- data/lib/netsuite/records/task.rb +31 -0
- data/lib/netsuite/records/tax_group.rb +35 -0
- data/lib/netsuite/records/tax_type.rb +22 -0
- data/lib/netsuite/records/term.rb +27 -0
- data/lib/netsuite/records/time_bill.rb +32 -0
- data/lib/netsuite/records/transaction_body_custom_field.rb +61 -0
- data/lib/netsuite/records/transaction_column_custom_field.rb +59 -0
- data/lib/netsuite/records/transaction_ship_group.rb +40 -0
- data/lib/netsuite/records/transfer_order.rb +45 -0
- data/lib/netsuite/records/transfer_order_item.rb +43 -0
- data/lib/netsuite/records/transfer_order_item_list.rb +11 -0
- data/lib/netsuite/records/translation.rb +17 -0
- data/lib/netsuite/records/translation_list.rb +11 -0
- data/lib/netsuite/records/units_type.rb +25 -0
- data/lib/netsuite/records/units_type_uom.rb +20 -0
- data/lib/netsuite/records/units_type_uom_list.rb +12 -0
- data/lib/netsuite/records/vendor.rb +46 -0
- data/lib/netsuite/records/vendor_bill.rb +53 -0
- data/lib/netsuite/records/vendor_bill_expense.rb +40 -0
- data/lib/netsuite/records/vendor_bill_expense_list.rb +13 -0
- data/lib/netsuite/records/vendor_bill_item.rb +46 -0
- data/lib/netsuite/records/vendor_bill_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_category.rb +26 -0
- data/lib/netsuite/records/vendor_credit.rb +54 -0
- data/lib/netsuite/records/vendor_credit_apply.rb +18 -0
- data/lib/netsuite/records/vendor_credit_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_expense.rb +31 -0
- data/lib/netsuite/records/vendor_credit_expense_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_item.rb +34 -0
- data/lib/netsuite/records/vendor_credit_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_currency.rb +26 -0
- data/lib/netsuite/records/vendor_currency_list.rb +9 -0
- data/lib/netsuite/records/vendor_payment.rb +52 -0
- data/lib/netsuite/records/vendor_payment_apply.rb +16 -0
- data/lib/netsuite/records/vendor_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_return_authorization.rb +30 -0
- data/lib/netsuite/records/vendor_return_authorization_item.rb +23 -0
- data/lib/netsuite/records/vendor_return_authorization_item_list.rb +12 -0
- data/lib/netsuite/records/work_order.rb +45 -0
- data/lib/netsuite/records/work_order_item.rb +30 -0
- data/lib/netsuite/records/work_order_item_list.rb +11 -0
- data/lib/netsuite/response.rb +20 -0
- data/lib/netsuite/rest/utilities/request.rb +62 -0
- data/lib/netsuite/rest/utilities/roles.rb +47 -0
- data/lib/netsuite/support/actions.rb +74 -0
- data/lib/netsuite/support/attributes.rb +22 -0
- data/lib/netsuite/support/country.rb +289 -0
- data/lib/netsuite/support/fields.rb +86 -0
- data/lib/netsuite/support/record_refs.rb +30 -0
- data/lib/netsuite/support/records.rb +89 -0
- data/lib/netsuite/support/requests.rb +56 -0
- data/lib/netsuite/support/search_result.rb +150 -0
- data/lib/netsuite/support/sublist.rb +71 -0
- data/lib/netsuite/utilities/data_center.rb +53 -0
- data/lib/netsuite/utilities/strings.rb +15 -0
- data/lib/netsuite/utilities.rb +324 -0
- data/lib/netsuite/version.rb +3 -0
- data/lib/netsuite.rb +348 -0
- data/netsuite.gemspec +30 -0
- data/spec/integration/soap_http_spec.rb +76 -0
- data/spec/netsuite/actions/add_spec.rb +155 -0
- data/spec/netsuite/actions/async_add_list_spec.rb +123 -0
- data/spec/netsuite/actions/async_delete_list_spec.rb +60 -0
- data/spec/netsuite/actions/async_get_list_spec.rb +78 -0
- data/spec/netsuite/actions/async_initialize_list_spec.rb +106 -0
- data/spec/netsuite/actions/async_lifecycle_spec.rb +51 -0
- data/spec/netsuite/actions/async_response_spec.rb +187 -0
- data/spec/netsuite/actions/async_search_spec.rb +27 -0
- data/spec/netsuite/actions/async_update_list_spec.rb +80 -0
- data/spec/netsuite/actions/async_upsert_list_spec.rb +157 -0
- data/spec/netsuite/actions/attach_file_spec.rb +59 -0
- data/spec/netsuite/actions/check_async_status_spec.rb +29 -0
- data/spec/netsuite/actions/delete_list_spec.rb +86 -0
- data/spec/netsuite/actions/delete_spec.rb +93 -0
- data/spec/netsuite/actions/get_all_spec.rb +100 -0
- data/spec/netsuite/actions/get_async_result_spec.rb +78 -0
- data/spec/netsuite/actions/get_deleted_spec.rb +60 -0
- data/spec/netsuite/actions/get_list_spec.rb +157 -0
- data/spec/netsuite/actions/get_select_value_spec.rb +43 -0
- data/spec/netsuite/actions/get_spec.rb +72 -0
- data/spec/netsuite/actions/initialize_spec.rb +34 -0
- data/spec/netsuite/actions/search_spec.rb +387 -0
- data/spec/netsuite/actions/update_list_spec.rb +107 -0
- data/spec/netsuite/actions/update_spec.rb +133 -0
- data/spec/netsuite/actions/upsert_list_spec.rb +112 -0
- data/spec/netsuite/actions/upsert_spec.rb +117 -0
- data/spec/netsuite/configuration_spec.rb +661 -0
- data/spec/netsuite/records/account_spec.rb +107 -0
- data/spec/netsuite/records/accounting_period_spec.rb +138 -0
- data/spec/netsuite/records/address_spec.rb +139 -0
- data/spec/netsuite/records/assembly_item_spec.rb +64 -0
- data/spec/netsuite/records/basic_record_spec.rb +128 -0
- data/spec/netsuite/records/bill_address_spec.rb +52 -0
- data/spec/netsuite/records/billing_schedule_milestone_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_milestone_spec.rb +51 -0
- data/spec/netsuite/records/billing_schedule_recurrence_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_recurrence_spec.rb +49 -0
- data/spec/netsuite/records/billing_schedule_spec.rb +164 -0
- data/spec/netsuite/records/bin_number_spec.rb +23 -0
- data/spec/netsuite/records/campaign_spec.rb +43 -0
- data/spec/netsuite/records/cash_refund_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_item_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_spec.rb +152 -0
- data/spec/netsuite/records/cash_sale_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_sale_item_spec.rb +23 -0
- data/spec/netsuite/records/cash_sale_spec.rb +34 -0
- data/spec/netsuite/records/classification_spec.rb +77 -0
- data/spec/netsuite/records/cost_category_spec.rb +105 -0
- data/spec/netsuite/records/credit_memo_apply_list_spec.rb +27 -0
- data/spec/netsuite/records/credit_memo_apply_spec.rb +14 -0
- data/spec/netsuite/records/credit_memo_item_list_spec.rb +26 -0
- data/spec/netsuite/records/credit_memo_item_spec.rb +29 -0
- data/spec/netsuite/records/credit_memo_spec.rb +213 -0
- data/spec/netsuite/records/currency_rate_spec.rb +45 -0
- data/spec/netsuite/records/custom_field_list_spec.rb +276 -0
- data/spec/netsuite/records/custom_list_spec.rb +21 -0
- data/spec/netsuite/records/custom_record_spec.rb +125 -0
- data/spec/netsuite/records/custom_record_type_spec.rb +114 -0
- data/spec/netsuite/records/customer_addressbook_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_addressbook_spec.rb +105 -0
- data/spec/netsuite/records/customer_credit_cards_list_spec.rb +23 -0
- data/spec/netsuite/records/customer_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_payment_credit_list_spec.rb +26 -0
- data/spec/netsuite/records/customer_payment_spec.rb +168 -0
- data/spec/netsuite/records/customer_refund_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_apply_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_deposit_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_deposit_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_spec.rb +205 -0
- data/spec/netsuite/records/customer_sales_team_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_spec.rb +561 -0
- data/spec/netsuite/records/department_spec.rb +103 -0
- data/spec/netsuite/records/deposit_spec.rb +165 -0
- data/spec/netsuite/records/discount_item_spec.rb +125 -0
- data/spec/netsuite/records/duration_spec.rb +14 -0
- data/spec/netsuite/records/employee_spec.rb +148 -0
- data/spec/netsuite/records/entity_custom_field_spec.rb +34 -0
- data/spec/netsuite/records/estimate_item_list_spec.rb +26 -0
- data/spec/netsuite/records/estimate_item_spec.rb +35 -0
- data/spec/netsuite/records/estimate_spec.rb +274 -0
- data/spec/netsuite/records/file_spec.rb +11 -0
- data/spec/netsuite/records/folder_spec.rb +33 -0
- data/spec/netsuite/records/gift_cert_redemption_list_spec.rb +26 -0
- data/spec/netsuite/records/gift_cert_redemption_spec.rb +21 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_spec.rb +60 -0
- data/spec/netsuite/records/inter_company_journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/inventory_assignment_list_spec.rb +59 -0
- data/spec/netsuite/records/inventory_assignment_spec.rb +21 -0
- data/spec/netsuite/records/inventory_detail_spec.rb +13 -0
- data/spec/netsuite/records/inventory_item_spec.rb +532 -0
- data/spec/netsuite/records/inventory_transfer_spec.rb +79 -0
- data/spec/netsuite/records/invoice_item_list_spec.rb +24 -0
- data/spec/netsuite/records/invoice_item_spec.rb +79 -0
- data/spec/netsuite/records/invoice_spec.rb +494 -0
- data/spec/netsuite/records/item_availability_spec.rb +59 -0
- data/spec/netsuite/records/item_fulfillment_package_fed_ex_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_ups_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_usps_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_spec.rb +49 -0
- data/spec/netsuite/records/item_group_spec.rb +117 -0
- data/spec/netsuite/records/item_member_list_spec.rb +26 -0
- data/spec/netsuite/records/item_option_custom_field_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_list_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_spec.rb +27 -0
- data/spec/netsuite/records/job_spec.rb +201 -0
- data/spec/netsuite/records/journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/journal_entry_line_spec.rb +59 -0
- data/spec/netsuite/records/journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/kit_item_spec.rb +117 -0
- data/spec/netsuite/records/location_spec.rb +51 -0
- data/spec/netsuite/records/lot_numbered_inventory_item_spec.rb +247 -0
- data/spec/netsuite/records/matrix_option_list_spec.rb +61 -0
- data/spec/netsuite/records/message_spec.rb +49 -0
- data/spec/netsuite/records/non_inventory_resale_item_spec.rb +300 -0
- data/spec/netsuite/records/non_inventory_sale_item_spec.rb +278 -0
- data/spec/netsuite/records/note_spec.rb +134 -0
- data/spec/netsuite/records/note_type_spec.rb +88 -0
- data/spec/netsuite/records/null_field_list_spec.rb +30 -0
- data/spec/netsuite/records/partner_spec.rb +143 -0
- data/spec/netsuite/records/payment_item_spec.rb +117 -0
- data/spec/netsuite/records/payment_method_spec.rb +49 -0
- data/spec/netsuite/records/phone_call_spec.rb +17 -0
- data/spec/netsuite/records/pomo_code_spec.rb +40 -0
- data/spec/netsuite/records/price_level_spec.rb +16 -0
- data/spec/netsuite/records/pricing_matrix_spec.rb +27 -0
- data/spec/netsuite/records/record_ref_spec.rb +87 -0
- data/spec/netsuite/records/return_authorization_item_list_spec.rb +26 -0
- data/spec/netsuite/records/return_authorization_item_spec.rb +31 -0
- data/spec/netsuite/records/return_authorization_spec.rb +62 -0
- data/spec/netsuite/records/rev_rec_template_spec.rb +39 -0
- data/spec/netsuite/records/sales_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/sales_order_item_spec.rb +36 -0
- data/spec/netsuite/records/sales_order_spec.rb +250 -0
- data/spec/netsuite/records/sales_tax_item_spec.rb +26 -0
- data/spec/netsuite/records/service_resale_item_spec.rb +239 -0
- data/spec/netsuite/records/service_sale_item_spec.rb +135 -0
- data/spec/netsuite/records/ship_address_spec.rb +36 -0
- data/spec/netsuite/records/site_category_spec.rb +51 -0
- data/spec/netsuite/records/subscription_spec.rb +37 -0
- data/spec/netsuite/records/subscriptions_list_spec.rb +19 -0
- data/spec/netsuite/records/subsidiary_spec.rb +25 -0
- data/spec/netsuite/records/support_case_spec.rb +157 -0
- data/spec/netsuite/records/support_case_type_spec.rb +22 -0
- data/spec/netsuite/records/tax_type_spec.rb +11 -0
- data/spec/netsuite/records/term_spec.rb +96 -0
- data/spec/netsuite/records/transaction_body_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/transaction_column_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/translation_list_spec.rb +34 -0
- data/spec/netsuite/records/translation_spec.rb +28 -0
- data/spec/netsuite/records/units_type_spec.rb +33 -0
- data/spec/netsuite/records/units_type_uom_list_spec.rb +23 -0
- data/spec/netsuite/records/units_type_uom_spec.rb +14 -0
- data/spec/netsuite/records/vendor_bill_expense_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_expense_spec.rb +72 -0
- data/spec/netsuite/records/vendor_bill_item_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_item_spec.rb +118 -0
- data/spec/netsuite/records/vendor_bill_spec.rb +187 -0
- data/spec/netsuite/records/vendor_credit_spec.rb +29 -0
- data/spec/netsuite/records/vendor_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/vendor_payment_apply_spec.rb +15 -0
- data/spec/netsuite/records/vendor_payment_spec.rb +164 -0
- data/spec/netsuite/records/vendor_spec.rb +145 -0
- data/spec/netsuite/records/work_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/work_order_item_spec.rb +45 -0
- data/spec/netsuite/records/work_order_spec.rb +92 -0
- data/spec/netsuite/response_spec.rb +34 -0
- data/spec/netsuite/support/fields_spec.rb +107 -0
- data/spec/netsuite/support/record_refs_spec.rb +14 -0
- data/spec/netsuite/support/records_spec.rb +60 -0
- data/spec/netsuite/support/refresh_spec.rb +28 -0
- data/spec/netsuite/support/requests_spec.rb +38 -0
- data/spec/netsuite/support/search_result_spec.rb +53 -0
- data/spec/netsuite/support/sublist_spec.rb +42 -0
- data/spec/netsuite/utilities/data_center_spec.rb +110 -0
- data/spec/netsuite/utilities/request_spec.rb +29 -0
- data/spec/netsuite/utilities/roles_spec.rb +145 -0
- data/spec/netsuite/utilities_spec.rb +140 -0
- data/spec/netsuite_spec.rb +41 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/support/configuration.rb +23 -0
- data/spec/support/field_matcher.rb +21 -0
- data/spec/support/fixtures/add/add_customer.xml +16 -0
- data/spec/support/fixtures/add/add_file.xml +20 -0
- data/spec/support/fixtures/add/add_invoice.xml +20 -0
- data/spec/support/fixtures/add/add_invoice_error.xml +19 -0
- data/spec/support/fixtures/add/add_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/async_add_list/async_add_list_pending.xml +18 -0
- data/spec/support/fixtures/async_delete_list/async_delete_list_pending.xml +18 -0
- data/spec/support/fixtures/async_get_list/async_get_list_pending.xml +18 -0
- data/spec/support/fixtures/async_initialize_list/async_initialize_list_pending.xml +18 -0
- data/spec/support/fixtures/async_search/async_search_pending.xml +18 -0
- data/spec/support/fixtures/async_update_list/async_update_list_pending.xml +18 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_customers.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_one_customer.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_with_errors.xml +21 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order.xml +16 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order_error.xml +20 -0
- data/spec/support/fixtures/check_async_status/check_async_status_pending.xml +18 -0
- data/spec/support/fixtures/custom_fields/multi_select.xml +47 -0
- data/spec/support/fixtures/delete/delete_customer.xml +16 -0
- data/spec/support/fixtures/delete/delete_customer_error.xml +21 -0
- data/spec/support/fixtures/delete/delete_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/delete_list/delete_list_customers.xml +26 -0
- data/spec/support/fixtures/delete_list/delete_list_customers_with_errors.xml +31 -0
- data/spec/support/fixtures/get/get_customer.xml +61 -0
- data/spec/support/fixtures/get/get_invoice.xml +101 -0
- data/spec/support/fixtures/get_all/get_all_currencies.xml +24 -0
- data/spec/support/fixtures/get_all/get_all_error.xml +15 -0
- data/spec/support/fixtures/get_async_result/get_async_result_finished.xml +22 -0
- data/spec/support/fixtures/get_async_result/get_async_result_upsert_list_finished.xml +26 -0
- data/spec/support/fixtures/get_async_result/get_async_result_write_list_multiple.xml +34 -0
- data/spec/support/fixtures/get_deleted/get_deleted_invoices.xml +38 -0
- data/spec/support/fixtures/get_item_availability/get_item_availability.xml +46 -0
- data/spec/support/fixtures/get_list/get_list_customer_error.xml +22 -0
- data/spec/support/fixtures/get_list/get_list_customers.xml +21 -0
- data/spec/support/fixtures/get_list/get_list_customers_multiple.xml +28 -0
- data/spec/support/fixtures/get_select_value/empty_result.xml +22 -0
- data/spec/support/fixtures/get_select_value/item_fulfillment_ship_method.xml +43 -0
- data/spec/support/fixtures/initialize/initialize_invoice_from_customer.xml +69 -0
- data/spec/support/fixtures/login/failure_concurrent_requests.xml +15 -0
- data/spec/support/fixtures/login/failure_invalid_credentials.xml +15 -0
- data/spec/support/fixtures/login/success.xml +35 -0
- data/spec/support/fixtures/search/basic_search_contact.xml +39 -0
- data/spec/support/fixtures/search/saved_search_customer.xml +54 -0
- data/spec/support/fixtures/search/saved_search_item.xml +55 -0
- data/spec/support/fixtures/search/saved_search_joined_custom_customer.xml +101 -0
- data/spec/support/fixtures/search/single_search_result.xml +46 -0
- data/spec/support/fixtures/soap/v2025_2_0/wsdl/netsuite.wsdl +2531 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/scheduling.xsd +603 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/schedulingTypes.xsd +198 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinet.xsd +159 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinetTypes.xsd +110 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communication.xsd +210 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communicationTypes.xsd +20 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accounting.xsd +6768 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accountingTypes.xsd +1043 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employeeTypes.xsd +344 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employees.xsd +518 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketing.xsd +528 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketingTypes.xsd +145 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationshipTypes.xsd +190 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationships.xsd +1658 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChain.xsd +282 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChainTypes.xsd +26 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/support.xsd +534 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supportTypes.xsd +74 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/website.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/websiteTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/common.xsd +8411 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/commonTypes.xsd +1371 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/core.xsd +1096 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/coreTypes.xsd +877 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faultTypes.xsd +1446 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faults.xsd +82 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/messages.xsd +664 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customization.xsd +1604 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customizationTypes.xsd +119 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bank.xsd +212 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bankTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customerTypes.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customers.xsd +1131 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanning.xsd +173 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanningTypes.xsd +52 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employeeTypes.xsd +10 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employees.xsd +723 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financial.xsd +88 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financialTypes.xsd +9 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/general.xsd +364 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventory.xsd +780 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventoryTypes.xsd +49 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchaseTypes.xsd +44 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchases.xsd +986 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/saleTypes.xsd +754 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/sales.xsd +2025 -0
- data/spec/support/fixtures/update/update_customer.xml +16 -0
- data/spec/support/fixtures/update/update_customer_error.xml +21 -0
- data/spec/support/fixtures/update/update_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/update/update_invoice.xml +16 -0
- data/spec/support/fixtures/update_list/update_list_items.xml +22 -0
- data/spec/support/fixtures/update_list/update_list_one_item.xml +18 -0
- data/spec/support/fixtures/update_list/update_list_with_errors.xml +32 -0
- data/spec/support/fixtures/upsert/upsert_customer.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice_error.xml +20 -0
- data/spec/support/fixtures/upsert/upsert_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/upsert_list/upsert_list_customers.xml +21 -0
- data/spec/support/fixtures/upsert_list/upsert_list_one_customer.xml +17 -0
- data/spec/support/fixtures/upsert_list/upsert_list_with_errors.xml +32 -0
- data/spec/support/read_only_field_matcher.rb +7 -0
- data/spec/support/record_ref_matcher.rb +25 -0
- data/spec/support/savon.rb +5 -0
- data/spec/support/search_only_field_matcher.rb +7 -0
- data/spec/support/webmock_soap_helper.rb +15 -0
- data/workflow.md +368 -0
- metadata +764 -0
|
@@ -0,0 +1,603 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:actSched="urn:scheduling_2025_2.activities.webservices.netsuite.com" xmlns:actSchedTyp="urn:types.scheduling_2025_2.activities.webservices.netsuite.com" xmlns:platformCore="urn:core_2025_2.platform.webservices.netsuite.com" xmlns:platformCoreTyp="urn:types.core_2025_2.platform.webservices.netsuite.com" xmlns:platformCommon="urn:common_2025_2.platform.webservices.netsuite.com" xmlns:platformCommonTyp="urn:types.common_2025_2.platform.webservices.netsuite.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:scheduling_2025_2.activities.webservices.netsuite.com" elementFormDefault="qualified">
|
|
3
|
+
<import namespace="urn:core_2025_2.platform.webservices.netsuite.com" schemaLocation="../../../xsd/platform.core.xsd"/>
|
|
4
|
+
<import namespace="urn:types.core_2025_2.platform.webservices.netsuite.com" schemaLocation="../../../xsd/platform.coreTypes.xsd"/>
|
|
5
|
+
<import namespace="urn:common_2025_2.platform.webservices.netsuite.com" schemaLocation="../../../xsd/platform.common.xsd"/>
|
|
6
|
+
<import namespace="urn:types.common_2025_2.platform.webservices.netsuite.com" schemaLocation="../../../xsd/platform.commonTypes.xsd"/>
|
|
7
|
+
<import namespace="urn:types.scheduling_2025_2.activities.webservices.netsuite.com" schemaLocation="../../../xsd/activities.schedulingTypes.xsd"/>
|
|
8
|
+
<!-- calendarEvent/start -->
|
|
9
|
+
<element name="CalendarEvent" type="actSched:CalendarEvent"/>
|
|
10
|
+
<complexType name="CalendarEvent">
|
|
11
|
+
<complexContent>
|
|
12
|
+
<extension base="platformCore:Record">
|
|
13
|
+
<sequence>
|
|
14
|
+
<element name="company" type="platformCore:RecordRef" minOccurs="0"/>
|
|
15
|
+
<element name="contact" type="platformCore:RecordRef" minOccurs="0"/>
|
|
16
|
+
<element name="supportCase" type="platformCore:RecordRef" minOccurs="0"/>
|
|
17
|
+
<element name="transaction" type="platformCore:RecordRef" minOccurs="0"/>
|
|
18
|
+
<element name="period" type="xsd:long" minOccurs="0"/>
|
|
19
|
+
<element name="frequency" type="platformCommonTyp:RecurrenceFrequency" minOccurs="0"/>
|
|
20
|
+
<element name="recurrenceDowMaskList" type="platformCommon:RecurrenceDowMaskList" minOccurs="0"/>
|
|
21
|
+
<element name="recurrenceDow" type="platformCommonTyp:RecurrenceDow" minOccurs="0"/>
|
|
22
|
+
<element name="recurrenceDowim" type="platformCommonTyp:RecurrenceDowim" minOccurs="0"/>
|
|
23
|
+
<element name="seriesStartDate" type="xsd:dateTime" minOccurs="0"/>
|
|
24
|
+
<element name="endByDate" type="xsd:dateTime" minOccurs="0"/>
|
|
25
|
+
<element name="noEndDate" type="xsd:boolean" minOccurs="0"/>
|
|
26
|
+
<element name="sendEmail" type="xsd:boolean" minOccurs="0"/>
|
|
27
|
+
<element name="customForm" type="platformCore:RecordRef" minOccurs="0"/>
|
|
28
|
+
<element name="title" type="xsd:string" minOccurs="0"/>
|
|
29
|
+
<element name="recurrence" type="xsd:string" minOccurs="0"/>
|
|
30
|
+
<element name="location" type="xsd:string" minOccurs="0"/>
|
|
31
|
+
<element name="startDate" type="xsd:dateTime" minOccurs="0"/>
|
|
32
|
+
<element name="allDayEvent" type="xsd:boolean" minOccurs="0"/>
|
|
33
|
+
<element name="timedEvent" type="xsd:boolean" minOccurs="0"/>
|
|
34
|
+
<element name="reminderType" type="actSchedTyp:CalendarEventReminderType" minOccurs="0"/>
|
|
35
|
+
<element name="reminderMinutes" type="actSchedTyp:CalendarEventReminderMinutes" minOccurs="0"/>
|
|
36
|
+
<element name="status" type="actSchedTyp:CalendarEventStatus" minOccurs="0"/>
|
|
37
|
+
<element name="accessLevel" type="actSchedTyp:CalendarEventAccessLevel" minOccurs="0"/>
|
|
38
|
+
<element name="organizer" type="platformCore:RecordRef" minOccurs="0"/>
|
|
39
|
+
<element name="message" type="xsd:string" minOccurs="0"/>
|
|
40
|
+
<element name="createdDate" type="xsd:dateTime" minOccurs="0"/>
|
|
41
|
+
<element name="endDate" type="xsd:dateTime" minOccurs="0"/>
|
|
42
|
+
<element name="exclusionDateList" type="actSched:ExclusionDateList" minOccurs="0"/>
|
|
43
|
+
<element name="lastModifiedDate" type="xsd:dateTime" minOccurs="0"/>
|
|
44
|
+
<element name="owner" type="platformCore:RecordRef" minOccurs="0"/>
|
|
45
|
+
<element name="attendeeList" type="actSched:CalendarEventAttendeeList" minOccurs="0"/>
|
|
46
|
+
<element name="resourceList" type="actSched:CalendarEventResourceList" minOccurs="0"/>
|
|
47
|
+
<element name="timeItemList" type="actSched:CalendarEventTimeItemList" minOccurs="0"/>
|
|
48
|
+
<element name="customFieldList" type="platformCore:CustomFieldList" minOccurs="0"/>
|
|
49
|
+
</sequence>
|
|
50
|
+
<!-- primary record internalId -->
|
|
51
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
52
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
53
|
+
</extension>
|
|
54
|
+
</complexContent>
|
|
55
|
+
</complexType>
|
|
56
|
+
<complexType name="ExclusionDateList">
|
|
57
|
+
<sequence>
|
|
58
|
+
<element name="exclusionDate" type="xsd:dateTime" maxOccurs="unbounded"/>
|
|
59
|
+
</sequence>
|
|
60
|
+
</complexType>
|
|
61
|
+
<complexType name="CalendarEventAttendee">
|
|
62
|
+
<sequence>
|
|
63
|
+
<element name="sendEmail" type="xsd:boolean" minOccurs="0"/>
|
|
64
|
+
<element name="attendee" type="platformCore:RecordRef" minOccurs="0"/>
|
|
65
|
+
<element name="response" type="platformCoreTyp:CalendarEventAttendeeResponse" minOccurs="0"/>
|
|
66
|
+
<element name="attendance" type="actSchedTyp:CalendarEventAttendeeAttendance" minOccurs="0"/>
|
|
67
|
+
</sequence>
|
|
68
|
+
</complexType>
|
|
69
|
+
<complexType name="CalendarEventAttendeeList">
|
|
70
|
+
<sequence>
|
|
71
|
+
<element name="attendee" type="actSched:CalendarEventAttendee" minOccurs="0" maxOccurs="unbounded"/>
|
|
72
|
+
</sequence>
|
|
73
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
74
|
+
</complexType>
|
|
75
|
+
<complexType name="CalendarEventResource">
|
|
76
|
+
<sequence>
|
|
77
|
+
<element name="resource" type="platformCore:RecordRef" minOccurs="0"/>
|
|
78
|
+
<element name="location" type="xsd:string" minOccurs="0"/>
|
|
79
|
+
</sequence>
|
|
80
|
+
</complexType>
|
|
81
|
+
<complexType name="CalendarEventResourceList">
|
|
82
|
+
<sequence>
|
|
83
|
+
<element name="resource" type="actSched:CalendarEventResource" minOccurs="0" maxOccurs="unbounded"/>
|
|
84
|
+
</sequence>
|
|
85
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
86
|
+
</complexType>
|
|
87
|
+
<element name="calendarEventSearch" type="actSched:CalendarEventSearch"/>
|
|
88
|
+
<complexType name="CalendarEventSearch">
|
|
89
|
+
<complexContent>
|
|
90
|
+
<extension base="platformCore:SearchRecord">
|
|
91
|
+
<sequence>
|
|
92
|
+
<element name="basic" type="platformCommon:CalendarEventSearchBasic" minOccurs="0"/>
|
|
93
|
+
<element name="attendeeJoin" type="platformCommon:EntitySearchBasic" minOccurs="0"/>
|
|
94
|
+
<element name="attendeeContactJoin" type="platformCommon:ContactSearchBasic" minOccurs="0"/>
|
|
95
|
+
<element name="attendeeCustomerJoin" type="platformCommon:CustomerSearchBasic" minOccurs="0"/>
|
|
96
|
+
<element name="caseJoin" type="platformCommon:SupportCaseSearchBasic" minOccurs="0"/>
|
|
97
|
+
<element name="fileJoin" type="platformCommon:FileSearchBasic" minOccurs="0"/>
|
|
98
|
+
<element name="opportunityJoin" type="platformCommon:OpportunitySearchBasic" minOccurs="0"/>
|
|
99
|
+
<element name="originatingLeadJoin" type="platformCommon:OriginatingLeadSearchBasic" minOccurs="0"/>
|
|
100
|
+
<element name="timeJoin" type="platformCommon:TimeBillSearchBasic" minOccurs="0"/>
|
|
101
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchBasic" minOccurs="0"/>
|
|
102
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
103
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchBasic" minOccurs="0"/>
|
|
104
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchJoin" minOccurs="0" maxOccurs="unbounded"/>
|
|
105
|
+
</sequence>
|
|
106
|
+
</extension>
|
|
107
|
+
</complexContent>
|
|
108
|
+
</complexType>
|
|
109
|
+
<complexType name="CalendarEventSearchAdvanced">
|
|
110
|
+
<complexContent>
|
|
111
|
+
<extension base="platformCore:SearchRecord">
|
|
112
|
+
<sequence>
|
|
113
|
+
<element name="criteria" type="actSched:CalendarEventSearch" minOccurs="0"/>
|
|
114
|
+
<element name="columns" type="actSched:CalendarEventSearchRow" minOccurs="0"/>
|
|
115
|
+
</sequence>
|
|
116
|
+
<attribute name="savedSearchId" type="xsd:string"/>
|
|
117
|
+
<attribute name="savedSearchScriptId" type="xsd:string"/>
|
|
118
|
+
</extension>
|
|
119
|
+
</complexContent>
|
|
120
|
+
</complexType>
|
|
121
|
+
<complexType name="CalendarEventSearchRow">
|
|
122
|
+
<complexContent>
|
|
123
|
+
<extension base="platformCore:SearchRow">
|
|
124
|
+
<sequence>
|
|
125
|
+
<element name="basic" type="platformCommon:CalendarEventSearchRowBasic" minOccurs="0"/>
|
|
126
|
+
<element name="attendeeJoin" type="platformCommon:EntitySearchRowBasic" minOccurs="0"/>
|
|
127
|
+
<element name="attendeeContactJoin" type="platformCommon:ContactSearchRowBasic" minOccurs="0"/>
|
|
128
|
+
<element name="attendeeCustomerJoin" type="platformCommon:CustomerSearchRowBasic" minOccurs="0"/>
|
|
129
|
+
<element name="caseJoin" type="platformCommon:SupportCaseSearchRowBasic" minOccurs="0"/>
|
|
130
|
+
<element name="fileJoin" type="platformCommon:FileSearchRowBasic" minOccurs="0"/>
|
|
131
|
+
<element name="opportunityJoin" type="platformCommon:OpportunitySearchRowBasic" minOccurs="0"/>
|
|
132
|
+
<element name="originatingLeadJoin" type="platformCommon:OriginatingLeadSearchRowBasic" minOccurs="0"/>
|
|
133
|
+
<element name="timeJoin" type="platformCommon:TimeBillSearchRowBasic" minOccurs="0"/>
|
|
134
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchRowBasic" minOccurs="0"/>
|
|
135
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
136
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchRowBasic" minOccurs="0"/>
|
|
137
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchRowBasic" minOccurs="0" maxOccurs="unbounded"/>
|
|
138
|
+
</sequence>
|
|
139
|
+
</extension>
|
|
140
|
+
</complexContent>
|
|
141
|
+
</complexType>
|
|
142
|
+
<!-- calendarEvent/end -->
|
|
143
|
+
<!-- task/start -->
|
|
144
|
+
<element name="Task" type="actSched:Task"/>
|
|
145
|
+
<complexType name="Task">
|
|
146
|
+
<complexContent>
|
|
147
|
+
<extension base="platformCore:Record">
|
|
148
|
+
<sequence>
|
|
149
|
+
<element name="company" type="platformCore:RecordRef" minOccurs="0"/>
|
|
150
|
+
<element name="contact" type="platformCore:RecordRef" minOccurs="0"/>
|
|
151
|
+
<element name="supportCase" type="platformCore:RecordRef" minOccurs="0"/>
|
|
152
|
+
<element name="transaction" type="platformCore:RecordRef" minOccurs="0"/>
|
|
153
|
+
<element name="milestone" type="platformCore:RecordRef" minOccurs="0"/>
|
|
154
|
+
<element name="customForm" type="platformCore:RecordRef" minOccurs="0"/>
|
|
155
|
+
<element name="title" type="xsd:string" minOccurs="0"/>
|
|
156
|
+
<element name="assigned" type="platformCore:RecordRef" minOccurs="0"/>
|
|
157
|
+
<element name="sendEmail" type="xsd:boolean" minOccurs="0"/>
|
|
158
|
+
<element name="timedEvent" type="xsd:boolean" minOccurs="0"/>
|
|
159
|
+
<element name="estimatedTime" type="platformCore:Duration" minOccurs="0"/>
|
|
160
|
+
<element name="estimatedTimeOverride" type="platformCore:Duration" minOccurs="0"/>
|
|
161
|
+
<element name="actualTime" type="platformCore:Duration" minOccurs="0"/>
|
|
162
|
+
<element name="timeRemaining" type="platformCore:Duration" minOccurs="0"/>
|
|
163
|
+
<element name="percentTimeComplete" type="xsd:double" minOccurs="0"/>
|
|
164
|
+
<element name="percentComplete" type="xsd:double" minOccurs="0"/>
|
|
165
|
+
<element name="parent" type="platformCore:RecordRef" minOccurs="0"/>
|
|
166
|
+
<element name="startDate" type="xsd:dateTime" minOccurs="0"/>
|
|
167
|
+
<element name="endDate" type="xsd:dateTime" minOccurs="0"/>
|
|
168
|
+
<element name="dueDate" type="xsd:dateTime" minOccurs="0"/>
|
|
169
|
+
<element name="completedDate" type="xsd:dateTime" minOccurs="0"/>
|
|
170
|
+
<element name="priority" type="actSchedTyp:TaskPriority" minOccurs="0"/>
|
|
171
|
+
<element name="status" type="actSchedTyp:TaskStatus" minOccurs="0"/>
|
|
172
|
+
<element name="message" type="xsd:string" minOccurs="0"/>
|
|
173
|
+
<element name="accessLevel" type="xsd:boolean" minOccurs="0"/>
|
|
174
|
+
<element name="reminderType" type="actSchedTyp:TaskReminderType" minOccurs="0"/>
|
|
175
|
+
<element name="reminderMinutes" type="actSchedTyp:TaskReminderMinutes" minOccurs="0"/>
|
|
176
|
+
<element name="createdDate" type="xsd:dateTime" minOccurs="0"/>
|
|
177
|
+
<element name="lastModifiedDate" type="xsd:dateTime" minOccurs="0"/>
|
|
178
|
+
<element name="owner" type="platformCore:RecordRef" minOccurs="0"/>
|
|
179
|
+
<element name="contactList" type="actSched:TaskContactList" minOccurs="0"/>
|
|
180
|
+
<element name="timeItemList" type="actSched:TaskTimeItemList" minOccurs="0"/>
|
|
181
|
+
<element name="customFieldList" type="platformCore:CustomFieldList" minOccurs="0"/>
|
|
182
|
+
</sequence>
|
|
183
|
+
<!-- primary record internalId -->
|
|
184
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
185
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
186
|
+
</extension>
|
|
187
|
+
</complexContent>
|
|
188
|
+
</complexType>
|
|
189
|
+
<complexType name="TaskContact">
|
|
190
|
+
<sequence>
|
|
191
|
+
<element name="company" type="platformCore:RecordRef" minOccurs="0"/>
|
|
192
|
+
<element name="contact" type="platformCore:RecordRef" minOccurs="0"/>
|
|
193
|
+
</sequence>
|
|
194
|
+
</complexType>
|
|
195
|
+
<complexType name="TaskContactList">
|
|
196
|
+
<sequence>
|
|
197
|
+
<element name="contact" type="actSched:TaskContact" minOccurs="0" maxOccurs="unbounded"/>
|
|
198
|
+
</sequence>
|
|
199
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
200
|
+
</complexType>
|
|
201
|
+
<element name="taskSearch" type="actSched:TaskSearch"/>
|
|
202
|
+
<complexType name="TaskSearch">
|
|
203
|
+
<complexContent>
|
|
204
|
+
<extension base="platformCore:SearchRecord">
|
|
205
|
+
<sequence>
|
|
206
|
+
<element name="basic" type="platformCommon:TaskSearchBasic" minOccurs="0"/>
|
|
207
|
+
<element name="assignedJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
208
|
+
<element name="caseJoin" type="platformCommon:SupportCaseSearchBasic" minOccurs="0"/>
|
|
209
|
+
<element name="companyCustomerJoin" type="platformCommon:CustomerSearchBasic" minOccurs="0"/>
|
|
210
|
+
<element name="contactJoin" type="platformCommon:ContactSearchBasic" minOccurs="0"/>
|
|
211
|
+
<element name="employeeJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
212
|
+
<element name="fileJoin" type="platformCommon:FileSearchBasic" minOccurs="0"/>
|
|
213
|
+
<element name="jobJoin" type="platformCommon:JobSearchBasic" minOccurs="0"/>
|
|
214
|
+
<element name="opportunityJoin" type="platformCommon:OpportunitySearchBasic" minOccurs="0"/>
|
|
215
|
+
<element name="originatingLeadJoin" type="platformCommon:OriginatingLeadSearchBasic" minOccurs="0"/>
|
|
216
|
+
<element name="timeJoin" type="platformCommon:TimeBillSearchBasic" minOccurs="0"/>
|
|
217
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchBasic" minOccurs="0"/>
|
|
218
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
219
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchBasic" minOccurs="0"/>
|
|
220
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchJoin" minOccurs="0" maxOccurs="unbounded"/>
|
|
221
|
+
</sequence>
|
|
222
|
+
</extension>
|
|
223
|
+
</complexContent>
|
|
224
|
+
</complexType>
|
|
225
|
+
<complexType name="TaskSearchAdvanced">
|
|
226
|
+
<complexContent>
|
|
227
|
+
<extension base="platformCore:SearchRecord">
|
|
228
|
+
<sequence>
|
|
229
|
+
<element name="criteria" type="actSched:TaskSearch" minOccurs="0"/>
|
|
230
|
+
<element name="columns" type="actSched:TaskSearchRow" minOccurs="0"/>
|
|
231
|
+
</sequence>
|
|
232
|
+
<attribute name="savedSearchId" type="xsd:string"/>
|
|
233
|
+
<attribute name="savedSearchScriptId" type="xsd:string"/>
|
|
234
|
+
</extension>
|
|
235
|
+
</complexContent>
|
|
236
|
+
</complexType>
|
|
237
|
+
<complexType name="TaskSearchRow">
|
|
238
|
+
<complexContent>
|
|
239
|
+
<extension base="platformCore:SearchRow">
|
|
240
|
+
<sequence>
|
|
241
|
+
<element name="basic" type="platformCommon:TaskSearchRowBasic" minOccurs="0"/>
|
|
242
|
+
<element name="assignedJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
243
|
+
<element name="caseJoin" type="platformCommon:SupportCaseSearchRowBasic" minOccurs="0"/>
|
|
244
|
+
<element name="companyCustomerJoin" type="platformCommon:CustomerSearchRowBasic" minOccurs="0"/>
|
|
245
|
+
<element name="contactJoin" type="platformCommon:ContactSearchRowBasic" minOccurs="0"/>
|
|
246
|
+
<element name="employeeJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
247
|
+
<element name="fileJoin" type="platformCommon:FileSearchRowBasic" minOccurs="0"/>
|
|
248
|
+
<element name="jobJoin" type="platformCommon:JobSearchRowBasic" minOccurs="0"/>
|
|
249
|
+
<element name="opportunityJoin" type="platformCommon:OpportunitySearchRowBasic" minOccurs="0"/>
|
|
250
|
+
<element name="originatingLeadJoin" type="platformCommon:OriginatingLeadSearchRowBasic" minOccurs="0"/>
|
|
251
|
+
<element name="timeJoin" type="platformCommon:TimeBillSearchRowBasic" minOccurs="0"/>
|
|
252
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchRowBasic" minOccurs="0"/>
|
|
253
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
254
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchRowBasic" minOccurs="0"/>
|
|
255
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchRowBasic" minOccurs="0" maxOccurs="unbounded"/>
|
|
256
|
+
</sequence>
|
|
257
|
+
</extension>
|
|
258
|
+
</complexContent>
|
|
259
|
+
</complexType>
|
|
260
|
+
<!-- task/end -->
|
|
261
|
+
<!-- phoneCall/start -->
|
|
262
|
+
<element name="PhoneCall" type="actSched:PhoneCall"/>
|
|
263
|
+
<complexType name="PhoneCall">
|
|
264
|
+
<complexContent>
|
|
265
|
+
<extension base="platformCore:Record">
|
|
266
|
+
<sequence>
|
|
267
|
+
<element name="message" type="xsd:string" minOccurs="0"/>
|
|
268
|
+
<element name="company" type="platformCore:RecordRef" minOccurs="0"/>
|
|
269
|
+
<element name="contact" type="platformCore:RecordRef" minOccurs="0"/>
|
|
270
|
+
<element name="supportCase" type="platformCore:RecordRef" minOccurs="0"/>
|
|
271
|
+
<element name="transaction" type="platformCore:RecordRef" minOccurs="0"/>
|
|
272
|
+
<element name="milestone" type="platformCore:RecordRef" minOccurs="0"/>
|
|
273
|
+
<element name="customForm" type="platformCore:RecordRef" minOccurs="0"/>
|
|
274
|
+
<element name="title" type="xsd:string" minOccurs="0"/>
|
|
275
|
+
<element name="owner" type="platformCore:RecordRef" minOccurs="0"/>
|
|
276
|
+
<element name="assigned" type="platformCore:RecordRef" minOccurs="0"/>
|
|
277
|
+
<element name="sendEmail" type="xsd:boolean" minOccurs="0"/>
|
|
278
|
+
<element name="startDate" type="xsd:dateTime" minOccurs="0"/>
|
|
279
|
+
<element name="endDate" type="xsd:dateTime" minOccurs="0"/>
|
|
280
|
+
<element name="timedEvent" type="xsd:boolean" minOccurs="0"/>
|
|
281
|
+
<element name="completedDate" type="xsd:dateTime" minOccurs="0"/>
|
|
282
|
+
<element name="phone" type="xsd:string" minOccurs="0"/>
|
|
283
|
+
<element name="status" type="actSchedTyp:PhoneCallStatus" minOccurs="0"/>
|
|
284
|
+
<element name="priority" type="actSchedTyp:PhoneCallPriority" minOccurs="0"/>
|
|
285
|
+
<element name="accessLevel" type="xsd:boolean" minOccurs="0"/>
|
|
286
|
+
<element name="reminderType" type="actSchedTyp:PhoneCallReminderType" minOccurs="0"/>
|
|
287
|
+
<element name="reminderMinutes" type="actSchedTyp:PhoneCallReminderMinutes" minOccurs="0"/>
|
|
288
|
+
<element name="createdDate" type="xsd:dateTime" minOccurs="0"/>
|
|
289
|
+
<element name="lastModifiedDate" type="xsd:dateTime" minOccurs="0"/>
|
|
290
|
+
<element name="contactList" type="actSched:PhoneCallContactList" minOccurs="0"/>
|
|
291
|
+
<element name="timeItemList" type="actSched:PhoneCallTimeItemList" minOccurs="0"/>
|
|
292
|
+
<element name="customFieldList" type="platformCore:CustomFieldList" minOccurs="0"/>
|
|
293
|
+
</sequence>
|
|
294
|
+
<!-- primary record internalId -->
|
|
295
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
296
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
297
|
+
</extension>
|
|
298
|
+
</complexContent>
|
|
299
|
+
</complexType>
|
|
300
|
+
<complexType name="PhoneCallContact">
|
|
301
|
+
<sequence>
|
|
302
|
+
<element name="company" type="platformCore:RecordRef" minOccurs="0"/>
|
|
303
|
+
<element name="contact" type="platformCore:RecordRef" minOccurs="0"/>
|
|
304
|
+
<element name="phone" type="xsd:string" minOccurs="0"/>
|
|
305
|
+
<element name="email" type="xsd:string" minOccurs="0"/>
|
|
306
|
+
</sequence>
|
|
307
|
+
</complexType>
|
|
308
|
+
<complexType name="PhoneCallContactList">
|
|
309
|
+
<sequence>
|
|
310
|
+
<element name="contact" type="actSched:PhoneCallContact" minOccurs="0" maxOccurs="unbounded"/>
|
|
311
|
+
</sequence>
|
|
312
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
313
|
+
</complexType>
|
|
314
|
+
<element name="phoneCallSearch" type="actSched:PhoneCallSearch"/>
|
|
315
|
+
<complexType name="PhoneCallSearch">
|
|
316
|
+
<complexContent>
|
|
317
|
+
<extension base="platformCore:SearchRecord">
|
|
318
|
+
<sequence>
|
|
319
|
+
<element name="basic" type="platformCommon:PhoneCallSearchBasic" minOccurs="0"/>
|
|
320
|
+
<element name="caseJoin" type="platformCommon:SupportCaseSearchBasic" minOccurs="0"/>
|
|
321
|
+
<element name="companyCustomerJoin" type="platformCommon:CustomerSearchBasic" minOccurs="0"/>
|
|
322
|
+
<element name="contactJoin" type="platformCommon:ContactSearchBasic" minOccurs="0"/>
|
|
323
|
+
<element name="employeeJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
324
|
+
<element name="fileJoin" type="platformCommon:FileSearchBasic" minOccurs="0"/>
|
|
325
|
+
<element name="opportunityJoin" type="platformCommon:OpportunitySearchBasic" minOccurs="0"/>
|
|
326
|
+
<element name="originatingLeadJoin" type="platformCommon:OriginatingLeadSearchBasic" minOccurs="0"/>
|
|
327
|
+
<element name="participantJoin" type="platformCommon:EntitySearchBasic" minOccurs="0"/>
|
|
328
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchBasic" minOccurs="0"/>
|
|
329
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
330
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchBasic" minOccurs="0"/>
|
|
331
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchJoin" minOccurs="0" maxOccurs="unbounded"/>
|
|
332
|
+
</sequence>
|
|
333
|
+
</extension>
|
|
334
|
+
</complexContent>
|
|
335
|
+
</complexType>
|
|
336
|
+
<complexType name="PhoneCallSearchAdvanced">
|
|
337
|
+
<complexContent>
|
|
338
|
+
<extension base="platformCore:SearchRecord">
|
|
339
|
+
<sequence>
|
|
340
|
+
<element name="criteria" type="actSched:PhoneCallSearch" minOccurs="0"/>
|
|
341
|
+
<element name="columns" type="actSched:PhoneCallSearchRow" minOccurs="0"/>
|
|
342
|
+
</sequence>
|
|
343
|
+
<attribute name="savedSearchId" type="xsd:string"/>
|
|
344
|
+
<attribute name="savedSearchScriptId" type="xsd:string"/>
|
|
345
|
+
</extension>
|
|
346
|
+
</complexContent>
|
|
347
|
+
</complexType>
|
|
348
|
+
<complexType name="PhoneCallSearchRow">
|
|
349
|
+
<complexContent>
|
|
350
|
+
<extension base="platformCore:SearchRow">
|
|
351
|
+
<sequence>
|
|
352
|
+
<element name="basic" type="platformCommon:PhoneCallSearchRowBasic" minOccurs="0"/>
|
|
353
|
+
<element name="caseJoin" type="platformCommon:SupportCaseSearchRowBasic" minOccurs="0"/>
|
|
354
|
+
<element name="companyCustomerJoin" type="platformCommon:CustomerSearchRowBasic" minOccurs="0"/>
|
|
355
|
+
<element name="contactJoin" type="platformCommon:ContactSearchRowBasic" minOccurs="0"/>
|
|
356
|
+
<element name="employeeJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
357
|
+
<element name="fileJoin" type="platformCommon:FileSearchRowBasic" minOccurs="0"/>
|
|
358
|
+
<element name="opportunityJoin" type="platformCommon:OpportunitySearchRowBasic" minOccurs="0"/>
|
|
359
|
+
<element name="originatingLeadJoin" type="platformCommon:OriginatingLeadSearchRowBasic" minOccurs="0"/>
|
|
360
|
+
<element name="participantJoin" type="platformCommon:EntitySearchRowBasic" minOccurs="0"/>
|
|
361
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchRowBasic" minOccurs="0"/>
|
|
362
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
363
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchRowBasic" minOccurs="0"/>
|
|
364
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchRowBasic" minOccurs="0" maxOccurs="unbounded"/>
|
|
365
|
+
</sequence>
|
|
366
|
+
</extension>
|
|
367
|
+
</complexContent>
|
|
368
|
+
</complexType>
|
|
369
|
+
<!-- phoneCall/end -->
|
|
370
|
+
<!-- projectTaskCall/start -->
|
|
371
|
+
<element name="projectTask" type="actSched:ProjectTask"/>
|
|
372
|
+
<complexType name="ProjectTask">
|
|
373
|
+
<complexContent>
|
|
374
|
+
<extension base="platformCore:Record">
|
|
375
|
+
<sequence>
|
|
376
|
+
<element name="customForm" type="platformCore:RecordRef" minOccurs="0"/>
|
|
377
|
+
<element name="eventId" type="platformCore:RecordRef" minOccurs="0"/>
|
|
378
|
+
<element name="percentTimeComplete" type="xsd:double" minOccurs="0"/>
|
|
379
|
+
<element name="title" type="xsd:string" minOccurs="0"/>
|
|
380
|
+
<element name="company" type="platformCore:RecordRef" minOccurs="0"/>
|
|
381
|
+
<element name="contact" type="platformCore:RecordRef" minOccurs="0"/>
|
|
382
|
+
<element name="order" type="platformCore:RecordRef" minOccurs="0"/>
|
|
383
|
+
<element name="owner" type="platformCore:RecordRef" minOccurs="0"/>
|
|
384
|
+
<element name="parent" type="platformCore:RecordRef" minOccurs="0"/>
|
|
385
|
+
<element name="priority" type="platformCore:RecordRef" minOccurs="0"/>
|
|
386
|
+
<element name="estimatedWork" type="xsd:double" minOccurs="0"/>
|
|
387
|
+
<element name="estimatedWorkBaseline" type="xsd:double" minOccurs="0"/>
|
|
388
|
+
<element name="constraintType" type="actSchedTyp:ProjectTaskConstraintType" minOccurs="0"/>
|
|
389
|
+
<element name="startDate" type="xsd:dateTime" minOccurs="0"/>
|
|
390
|
+
<element name="startDateBaseline" type="xsd:dateTime" minOccurs="0"/>
|
|
391
|
+
<element name="endDate" type="xsd:dateTime" minOccurs="0"/>
|
|
392
|
+
<element name="finishByDate" type="xsd:dateTime" minOccurs="0"/>
|
|
393
|
+
<element name="endDateBaseline" type="xsd:dateTime" minOccurs="0"/>
|
|
394
|
+
<element name="actualWork" type="platformCore:Duration" minOccurs="0"/>
|
|
395
|
+
<element name="remainingWork" type="platformCore:Duration" minOccurs="0"/>
|
|
396
|
+
<element name="message" type="xsd:string" minOccurs="0"/>
|
|
397
|
+
<element name="isMilestone" type="xsd:boolean" minOccurs="0"/>
|
|
398
|
+
<element name="isOnCriticalPath" type="xsd:string" minOccurs="0"/>
|
|
399
|
+
<element name="slackMinutes" type="xsd:double" minOccurs="0"/>
|
|
400
|
+
<element name="lateEnd" type="xsd:dateTime" minOccurs="0"/>
|
|
401
|
+
<element name="lateStart" type="xsd:dateTime" minOccurs="0"/>
|
|
402
|
+
<element name="status" type="actSchedTyp:ProjectTaskStatus" minOccurs="0"/>
|
|
403
|
+
<element name="nonBillableTask" type="xsd:boolean" minOccurs="0"/>
|
|
404
|
+
<element name="assigneeList" type="actSched:ProjectTaskAssigneeList" minOccurs="0"/>
|
|
405
|
+
<element name="predecessorList" type="actSched:ProjectTaskPredecessorList" minOccurs="0"/>
|
|
406
|
+
<element name="timeItemList" type="actSched:ProjectTaskTimeItemList" minOccurs="0"/>
|
|
407
|
+
<element name="plannedWork" type="xsd:double" minOccurs="0"/>
|
|
408
|
+
<element name="plannedWorkBaseline" type="xsd:double" minOccurs="0"/>
|
|
409
|
+
<element name="customFieldList" type="platformCore:CustomFieldList" minOccurs="0"/>
|
|
410
|
+
</sequence>
|
|
411
|
+
<!-- primary record internalId -->
|
|
412
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
413
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
414
|
+
</extension>
|
|
415
|
+
</complexContent>
|
|
416
|
+
</complexType>
|
|
417
|
+
<complexType name="ProjectTaskPredecessor">
|
|
418
|
+
<sequence>
|
|
419
|
+
<element name="task" type="platformCore:RecordRef" minOccurs="0"/>
|
|
420
|
+
<element name="type" type="actSchedTyp:ProjectTaskPredecessorPredecessorType" minOccurs="0"/>
|
|
421
|
+
<element name="lagDays" type="xsd:double" minOccurs="0"/>
|
|
422
|
+
<element name="startDate" type="xsd:dateTime" minOccurs="0"/>
|
|
423
|
+
<element name="endDate" type="xsd:dateTime" minOccurs="0"/>
|
|
424
|
+
</sequence>
|
|
425
|
+
</complexType>
|
|
426
|
+
<complexType name="ProjectTaskPredecessorList">
|
|
427
|
+
<sequence>
|
|
428
|
+
<element name="projectTaskPredecessor" type="actSched:ProjectTaskPredecessor" minOccurs="0" maxOccurs="unbounded"/>
|
|
429
|
+
</sequence>
|
|
430
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
431
|
+
</complexType>
|
|
432
|
+
<complexType name="ProjectTaskAssignee">
|
|
433
|
+
<sequence>
|
|
434
|
+
<element name="resource" type="platformCore:RecordRef" minOccurs="0"/>
|
|
435
|
+
<element name="units" type="xsd:double" minOccurs="0"/>
|
|
436
|
+
<element name="serviceItem" type="platformCore:RecordRef" minOccurs="0"/>
|
|
437
|
+
<element name="estimatedWork" type="xsd:double" minOccurs="0"/>
|
|
438
|
+
<element name="unitCost" type="xsd:double" minOccurs="0"/>
|
|
439
|
+
<element name="unitPrice" type="xsd:double" minOccurs="0"/>
|
|
440
|
+
<element name="cost" type="xsd:double" minOccurs="0"/>
|
|
441
|
+
<element name="price" type="xsd:double" minOccurs="0"/>
|
|
442
|
+
<element name="plannedWork" type="xsd:double" minOccurs="0"/>
|
|
443
|
+
</sequence>
|
|
444
|
+
</complexType>
|
|
445
|
+
<complexType name="ProjectTaskAssigneeList">
|
|
446
|
+
<sequence>
|
|
447
|
+
<element name="projectTaskAssignee" type="actSched:ProjectTaskAssignee" minOccurs="0" maxOccurs="unbounded"/>
|
|
448
|
+
</sequence>
|
|
449
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
450
|
+
</complexType>
|
|
451
|
+
<element name="projectTaskSearch" type="actSched:ProjectTaskSearch"/>
|
|
452
|
+
<complexType name="ProjectTaskSearch">
|
|
453
|
+
<complexContent>
|
|
454
|
+
<extension base="platformCore:SearchRecord">
|
|
455
|
+
<sequence>
|
|
456
|
+
<element name="basic" type="platformCommon:ProjectTaskSearchBasic" minOccurs="0"/>
|
|
457
|
+
<element name="jobJoin" type="platformCommon:JobSearchBasic" minOccurs="0"/>
|
|
458
|
+
<element name="predecessorJoin" type="platformCommon:ProjectTaskSearchBasic" minOccurs="0"/>
|
|
459
|
+
<element name="projectTaskAssignmentJoin" type="platformCommon:ProjectTaskAssignmentSearchBasic" minOccurs="0"/>
|
|
460
|
+
<element name="resourceAllocationJoin" type="platformCommon:ResourceAllocationSearchBasic" minOccurs="0"/>
|
|
461
|
+
<element name="successorJoin" type="platformCommon:ProjectTaskSearchBasic" minOccurs="0"/>
|
|
462
|
+
<element name="timeJoin" type="platformCommon:TimeBillSearchBasic" minOccurs="0"/>
|
|
463
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchBasic" minOccurs="0"/>
|
|
464
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
465
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchBasic" minOccurs="0"/>
|
|
466
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchJoin" minOccurs="0" maxOccurs="unbounded"/>
|
|
467
|
+
</sequence>
|
|
468
|
+
</extension>
|
|
469
|
+
</complexContent>
|
|
470
|
+
</complexType>
|
|
471
|
+
<complexType name="ProjectTaskSearchAdvanced">
|
|
472
|
+
<complexContent>
|
|
473
|
+
<extension base="platformCore:SearchRecord">
|
|
474
|
+
<sequence>
|
|
475
|
+
<element name="criteria" type="actSched:ProjectTaskSearch" minOccurs="0"/>
|
|
476
|
+
<element name="columns" type="actSched:ProjectTaskSearchRow" minOccurs="0"/>
|
|
477
|
+
</sequence>
|
|
478
|
+
<attribute name="savedSearchId" type="xsd:string"/>
|
|
479
|
+
<attribute name="savedSearchScriptId" type="xsd:string"/>
|
|
480
|
+
</extension>
|
|
481
|
+
</complexContent>
|
|
482
|
+
</complexType>
|
|
483
|
+
<complexType name="ProjectTaskSearchRow">
|
|
484
|
+
<complexContent>
|
|
485
|
+
<extension base="platformCore:SearchRow">
|
|
486
|
+
<sequence>
|
|
487
|
+
<element name="basic" type="platformCommon:ProjectTaskSearchRowBasic" minOccurs="0"/>
|
|
488
|
+
<element name="jobJoin" type="platformCommon:JobSearchRowBasic" minOccurs="0"/>
|
|
489
|
+
<element name="predecessorJoin" type="platformCommon:ProjectTaskSearchRowBasic" minOccurs="0"/>
|
|
490
|
+
<element name="projectTaskAssignmentJoin" type="platformCommon:ProjectTaskAssignmentSearchRowBasic" minOccurs="0"/>
|
|
491
|
+
<element name="resourceAllocationJoin" type="platformCommon:ResourceAllocationSearchRowBasic" minOccurs="0"/>
|
|
492
|
+
<element name="successorJoin" type="platformCommon:ProjectTaskSearchRowBasic" minOccurs="0"/>
|
|
493
|
+
<element name="timeJoin" type="platformCommon:TimeBillSearchRowBasic" minOccurs="0"/>
|
|
494
|
+
<element name="transactionJoin" type="platformCommon:TransactionSearchRowBasic" minOccurs="0"/>
|
|
495
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
496
|
+
<element name="userNotesJoin" type="platformCommon:NoteSearchRowBasic" minOccurs="0"/>
|
|
497
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchRowBasic" minOccurs="0" maxOccurs="unbounded"/>
|
|
498
|
+
</sequence>
|
|
499
|
+
</extension>
|
|
500
|
+
</complexContent>
|
|
501
|
+
</complexType>
|
|
502
|
+
<!-- projectTaskCall/end -->
|
|
503
|
+
<complexType name="PhoneCallTimeItemList">
|
|
504
|
+
<sequence>
|
|
505
|
+
<element name="timeItem" type="platformCommon:TimeItem" minOccurs="0" maxOccurs="unbounded"/>
|
|
506
|
+
</sequence>
|
|
507
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
508
|
+
</complexType>
|
|
509
|
+
<complexType name="CalendarEventTimeItemList">
|
|
510
|
+
<sequence>
|
|
511
|
+
<element name="timeItem" type="platformCommon:TimeItem" minOccurs="0" maxOccurs="unbounded"/>
|
|
512
|
+
</sequence>
|
|
513
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
514
|
+
</complexType>
|
|
515
|
+
<complexType name="TaskTimeItemList">
|
|
516
|
+
<sequence>
|
|
517
|
+
<element name="timeItem" type="platformCommon:TimeItem" minOccurs="0" maxOccurs="unbounded"/>
|
|
518
|
+
</sequence>
|
|
519
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
520
|
+
</complexType>
|
|
521
|
+
<complexType name="ProjectTaskTimeItemList">
|
|
522
|
+
<sequence>
|
|
523
|
+
<element name="timeItem" type="platformCommon:TimeItem" minOccurs="0" maxOccurs="unbounded"/>
|
|
524
|
+
</sequence>
|
|
525
|
+
<attribute name="replaceAll" type="xsd:boolean" default="true"/>
|
|
526
|
+
</complexType>
|
|
527
|
+
<element name="resourceAllocation" type="actSched:ResourceAllocation"/>
|
|
528
|
+
<complexType name="ResourceAllocation">
|
|
529
|
+
<complexContent>
|
|
530
|
+
<extension base="platformCore:Record">
|
|
531
|
+
<sequence>
|
|
532
|
+
<element name="requestedby" type="platformCore:RecordRef" minOccurs="0"/>
|
|
533
|
+
<element name="approvalStatus" type="actSchedTyp:ResourceAllocationApprovalStatus" minOccurs="0"/>
|
|
534
|
+
<element name="nextApprover" type="platformCore:RecordRef" minOccurs="0"/>
|
|
535
|
+
<element name="allocationResource" type="platformCore:RecordRef" minOccurs="0"/>
|
|
536
|
+
<element name="project" type="platformCore:RecordRef" minOccurs="0"/>
|
|
537
|
+
<element name="notes" type="xsd:string" minOccurs="0"/>
|
|
538
|
+
<element name="startDate" type="xsd:dateTime" minOccurs="0"/>
|
|
539
|
+
<element name="endDate" type="xsd:dateTime" minOccurs="0"/>
|
|
540
|
+
<element name="allocationAmount" type="xsd:double" minOccurs="0"/>
|
|
541
|
+
<element name="allocationUnit" type="actSchedTyp:ResourceAllocationAllocationUnit" minOccurs="0"/>
|
|
542
|
+
<element name="numberHours" type="xsd:double" minOccurs="0"/>
|
|
543
|
+
<element name="percentOfTime" type="xsd:double" minOccurs="0"/>
|
|
544
|
+
<element name="allocationType" type="platformCore:RecordRef" minOccurs="0"/>
|
|
545
|
+
<element name="customForm" type="platformCore:RecordRef" minOccurs="0"/>
|
|
546
|
+
<element name="customFieldList" type="platformCore:CustomFieldList" minOccurs="0"/>
|
|
547
|
+
</sequence>
|
|
548
|
+
<!-- primary record internalId -->
|
|
549
|
+
<attribute name="internalId" type="xsd:string"/>
|
|
550
|
+
<attribute name="externalId" type="xsd:string"/>
|
|
551
|
+
</extension>
|
|
552
|
+
</complexContent>
|
|
553
|
+
</complexType>
|
|
554
|
+
<element name="resourceAllocationSearch" type="actSched:ResourceAllocationSearch"/>
|
|
555
|
+
<complexType name="ResourceAllocationSearch">
|
|
556
|
+
<complexContent>
|
|
557
|
+
<extension base="platformCore:SearchRecord">
|
|
558
|
+
<sequence>
|
|
559
|
+
<element name="basic" type="platformCommon:ResourceAllocationSearchBasic" minOccurs="0"/>
|
|
560
|
+
<element name="customerJoin" type="platformCommon:CustomerSearchBasic" minOccurs="0"/>
|
|
561
|
+
<element name="employeeJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
562
|
+
<element name="jobJoin" type="platformCommon:JobSearchBasic" minOccurs="0"/>
|
|
563
|
+
<element name="projectTaskJoin" type="platformCommon:ProjectTaskSearchBasic" minOccurs="0"/>
|
|
564
|
+
<element name="requestedByJoin" type="platformCommon:EntitySearchBasic" minOccurs="0"/>
|
|
565
|
+
<element name="resourceJoin" type="platformCommon:EntitySearchBasic" minOccurs="0"/>
|
|
566
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchBasic" minOccurs="0"/>
|
|
567
|
+
<element name="vendorJoin" type="platformCommon:VendorSearchBasic" minOccurs="0"/>
|
|
568
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchJoin" minOccurs="0" maxOccurs="unbounded"/>
|
|
569
|
+
</sequence>
|
|
570
|
+
</extension>
|
|
571
|
+
</complexContent>
|
|
572
|
+
</complexType>
|
|
573
|
+
<complexType name="ResourceAllocationSearchAdvanced">
|
|
574
|
+
<complexContent>
|
|
575
|
+
<extension base="platformCore:SearchRecord">
|
|
576
|
+
<sequence>
|
|
577
|
+
<element name="criteria" type="actSched:ResourceAllocationSearch" minOccurs="0"/>
|
|
578
|
+
<element name="columns" type="actSched:ResourceAllocationSearchRow" minOccurs="0"/>
|
|
579
|
+
</sequence>
|
|
580
|
+
<attribute name="savedSearchId" type="xsd:string"/>
|
|
581
|
+
<attribute name="savedSearchScriptId" type="xsd:string"/>
|
|
582
|
+
</extension>
|
|
583
|
+
</complexContent>
|
|
584
|
+
</complexType>
|
|
585
|
+
<complexType name="ResourceAllocationSearchRow">
|
|
586
|
+
<complexContent>
|
|
587
|
+
<extension base="platformCore:SearchRow">
|
|
588
|
+
<sequence>
|
|
589
|
+
<element name="basic" type="platformCommon:ResourceAllocationSearchRowBasic" minOccurs="0"/>
|
|
590
|
+
<element name="customerJoin" type="platformCommon:CustomerSearchRowBasic" minOccurs="0"/>
|
|
591
|
+
<element name="employeeJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
592
|
+
<element name="jobJoin" type="platformCommon:JobSearchRowBasic" minOccurs="0"/>
|
|
593
|
+
<element name="projectTaskJoin" type="platformCommon:ProjectTaskSearchRowBasic" minOccurs="0"/>
|
|
594
|
+
<element name="requestedByJoin" type="platformCommon:EntitySearchRowBasic" minOccurs="0"/>
|
|
595
|
+
<element name="resourceJoin" type="platformCommon:EntitySearchRowBasic" minOccurs="0"/>
|
|
596
|
+
<element name="userJoin" type="platformCommon:EmployeeSearchRowBasic" minOccurs="0"/>
|
|
597
|
+
<element name="vendorJoin" type="platformCommon:VendorSearchRowBasic" minOccurs="0"/>
|
|
598
|
+
<element name="customSearchJoin" type="platformCommon:CustomSearchRowBasic" minOccurs="0" maxOccurs="unbounded"/>
|
|
599
|
+
</sequence>
|
|
600
|
+
</extension>
|
|
601
|
+
</complexContent>
|
|
602
|
+
</complexType>
|
|
603
|
+
</schema>
|