subskribe_sandbox 1.0.0 → 1.0.1
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 +4 -4
- data/README.md +7 -6
- data/docs/AccountsApi.md +2 -2
- data/docs/AutomatedInvoiceRule.md +5 -5
- data/docs/BillingApi.md +23 -23
- data/docs/BulkPaymentUploadData.md +7 -7
- data/docs/ChargeJson.md +2 -2
- data/docs/PaginatedAccountsResponse.md +10 -0
- data/docs/TaxJarIntegration.md +4 -4
- data/lib/subskribe_dev/api/accounts_api.rb +3 -3
- data/lib/subskribe_dev/api/entities_api.rb +158 -0
- data/lib/subskribe_dev/api/erp_api.rb +20 -20
- data/lib/subskribe_dev/api/product_catalog_api.rb +58 -0
- data/lib/subskribe_dev/api/revenue_recognition_api.rb +22 -22
- data/lib/subskribe_dev/models/automated_invoice_rule.rb +22 -22
- data/lib/subskribe_dev/models/bulk_invoice_run_item.rb +22 -22
- data/lib/subskribe_dev/models/bulk_payment_upload_data.rb +31 -31
- data/lib/subskribe_dev/models/bulk_payment_upload_result.rb +13 -13
- data/lib/subskribe_dev/models/charge_json.rb +19 -19
- data/lib/subskribe_dev/models/order_line_item_json.rb +10 -1
- data/lib/subskribe_dev/models/order_line_item_request_json.rb +10 -1
- data/lib/subskribe_dev/models/paginated_accounts_response.rb +204 -0
- data/lib/subskribe_dev/models/plan_metadata_json.rb +187 -0
- data/lib/subskribe_dev/models/tax_jar_integration.rb +10 -10
- data/lib/subskribe_dev/version.rb +1 -1
- data/lib/subskribe_dev.rb +2 -1
- data/lib/subskribe_dev2/api/accounting_api.rb +193 -0
- data/lib/subskribe_dev2/api/accounts_api.rb +858 -0
- data/lib/subskribe_dev2/api/approvals_api.rb +965 -0
- data/lib/subskribe_dev2/api/attachments_api.rb +299 -0
- data/lib/subskribe_dev2/api/authentication_api.rb +335 -0
- data/lib/subskribe_dev2/api/billing_api.rb +2098 -0
- data/lib/subskribe_dev2/api/credit_memo_api.rb +636 -0
- data/lib/subskribe_dev2/api/custom_field_api.rb +434 -0
- data/lib/subskribe_dev2/api/customization_api.rb +269 -0
- data/lib/subskribe_dev2/api/default_api.rb +223 -0
- data/lib/subskribe_dev2/api/discounts_api.rb +340 -0
- data/lib/subskribe_dev2/api/entities_api.rb +532 -0
- data/lib/subskribe_dev2/api/erp_api.rb +278 -0
- data/lib/subskribe_dev2/api/import_api.rb +568 -0
- data/lib/subskribe_dev2/api/integrations_api.rb +1678 -0
- data/lib/subskribe_dev2/api/metrics_reporting_api.rb +223 -0
- data/lib/subskribe_dev2/api/notifications_api.rb +245 -0
- data/lib/subskribe_dev2/api/opportunity_api.rb +177 -0
- data/lib/subskribe_dev2/api/orders_api.rb +1381 -0
- data/lib/subskribe_dev2/api/payments_api.rb +431 -0
- data/lib/subskribe_dev2/api/product_catalog_api.rb +1886 -0
- data/lib/subskribe_dev2/api/rate_card_api.rb +68 -0
- data/lib/subskribe_dev2/api/refunds_api.rb +189 -0
- data/lib/subskribe_dev2/api/reports_api.rb +227 -0
- data/lib/subskribe_dev2/api/revenue_recognition_api.rb +484 -0
- data/lib/subskribe_dev2/api/sales_room_api.rb +74 -0
- data/lib/subskribe_dev2/api/settings_api.rb +1321 -0
- data/lib/subskribe_dev2/api/subscriptions_api.rb +576 -0
- data/lib/subskribe_dev2/api/usage_api.rb +604 -0
- data/lib/subskribe_dev2/api/users_api.rb +728 -0
- data/lib/subskribe_dev2/api_client.rb +391 -0
- data/lib/subskribe_dev2/api_error.rb +38 -0
- data/lib/subskribe_dev2/configuration.rb +209 -0
- data/lib/subskribe_dev2/models/account_address.rb +265 -0
- data/lib/subskribe_dev2/models/account_address_json.rb +229 -0
- data/lib/subskribe_dev2/models/account_contact.rb +530 -0
- data/lib/subskribe_dev2/models/account_contact_json.rb +274 -0
- data/lib/subskribe_dev2/models/account_json.rb +395 -0
- data/lib/subskribe_dev2/models/account_payment_method_json.rb +268 -0
- data/lib/subskribe_dev2/models/account_receivable_contact_json.rb +225 -0
- data/lib/subskribe_dev2/models/accounting_event.rb +319 -0
- data/lib/subskribe_dev2/models/accounting_event_paginated_response.rb +204 -0
- data/lib/subskribe_dev2/models/accounting_period.rb +356 -0
- data/lib/subskribe_dev2/models/accounting_period_calculation.rb +229 -0
- data/lib/subskribe_dev2/models/add_and_apply_payment_application_json.rb +344 -0
- data/lib/subskribe_dev2/models/anrok_integration_input.rb +184 -0
- data/lib/subskribe_dev2/models/approval_matrix_import_data_json.rb +229 -0
- data/lib/subskribe_dev2/models/approval_matrix_import_preview.rb +226 -0
- data/lib/subskribe_dev2/models/approval_role_json.rb +220 -0
- data/lib/subskribe_dev2/models/approval_role_segment_change.rb +211 -0
- data/lib/subskribe_dev2/models/approval_segment_json.rb +220 -0
- data/lib/subskribe_dev2/models/attachment.rb +326 -0
- data/lib/subskribe_dev2/models/attribute_reference.rb +193 -0
- data/lib/subskribe_dev2/models/auth_saml_integration_json.rb +204 -0
- data/lib/subskribe_dev2/models/automated_invoice_rule.rb +328 -0
- data/lib/subskribe_dev2/models/automated_invoice_rule_request_json.rb +307 -0
- data/lib/subskribe_dev2/models/avalara_integration.rb +238 -0
- data/lib/subskribe_dev2/models/avalara_integration_input.rb +268 -0
- data/lib/subskribe_dev2/models/billing_event_entry.rb +211 -0
- data/lib/subskribe_dev2/models/billing_event_input.rb +216 -0
- data/lib/subskribe_dev2/models/bulk_invoice_run.rb +350 -0
- data/lib/subskribe_dev2/models/bulk_invoice_run_exclusions.rb +197 -0
- data/lib/subskribe_dev2/models/bulk_invoice_run_input.rb +263 -0
- data/lib/subskribe_dev2/models/bulk_invoice_run_item.rb +364 -0
- data/lib/subskribe_dev2/models/bulk_invoice_run_selector.rb +184 -0
- data/lib/subskribe_dev2/models/bulk_payment_upload_data.rb +274 -0
- data/lib/subskribe_dev2/models/bulk_payment_upload_result.rb +204 -0
- data/lib/subskribe_dev2/models/byte_buffer.rb +247 -0
- data/lib/subskribe_dev2/models/catalog_relationship.rb +364 -0
- data/lib/subskribe_dev2/models/charge_json.rb +631 -0
- data/lib/subskribe_dev2/models/charge_partial_json.rb +310 -0
- data/lib/subskribe_dev2/models/company_contact_json.rb +225 -0
- data/lib/subskribe_dev2/models/credit_memo_application_json.rb +239 -0
- data/lib/subskribe_dev2/models/credit_memo_balance_json.rb +211 -0
- data/lib/subskribe_dev2/models/credit_memo_json.rb +363 -0
- data/lib/subskribe_dev2/models/credit_memo_line_item_json.rb +252 -0
- data/lib/subskribe_dev2/models/credit_memo_line_item_request_json.rb +211 -0
- data/lib/subskribe_dev2/models/credit_memo_pagination_response_json.rb +204 -0
- data/lib/subskribe_dev2/models/crm_account_import_response.rb +193 -0
- data/lib/subskribe_dev2/models/custom_field_default.rb +195 -0
- data/lib/subskribe_dev2/models/custom_field_definition_create_input.rb +317 -0
- data/lib/subskribe_dev2/models/custom_field_definition_json.rb +313 -0
- data/lib/subskribe_dev2/models/custom_field_definition_update_input.rb +256 -0
- data/lib/subskribe_dev2/models/custom_field_entry.rb +325 -0
- data/lib/subskribe_dev2/models/custom_field_update_input.rb +195 -0
- data/lib/subskribe_dev2/models/custom_field_value.rb +316 -0
- data/lib/subskribe_dev2/models/data_import.rb +355 -0
- data/lib/subskribe_dev2/models/discount_detail_json.rb +263 -0
- data/lib/subskribe_dev2/models/discount_json.rb +254 -0
- data/lib/subskribe_dev2/models/docu_sign_integration_request_json.rb +236 -0
- data/lib/subskribe_dev2/models/docu_sign_integration_response_json.rb +245 -0
- data/lib/subskribe_dev2/models/document_custom_content.rb +211 -0
- data/lib/subskribe_dev2/models/document_section.rb +265 -0
- data/lib/subskribe_dev2/models/document_template_json.rb +300 -0
- data/lib/subskribe_dev2/models/dunning_setting_json.rb +200 -0
- data/lib/subskribe_dev2/models/email_notifiers_list.rb +208 -0
- data/lib/subskribe_dev2/models/entity.rb +356 -0
- data/lib/subskribe_dev2/models/entity_json.rb +347 -0
- data/lib/subskribe_dev2/models/entity_ref.rb +202 -0
- data/lib/subskribe_dev2/models/entry.rb +202 -0
- data/lib/subskribe_dev2/models/external_arr_schedule_json.rb +319 -0
- data/lib/subskribe_dev2/models/flatfile_workbook_response.rb +184 -0
- data/lib/subskribe_dev2/models/flatfile_workbook_response_data.rb +193 -0
- data/lib/subskribe_dev2/models/input_stream.rb +175 -0
- data/lib/subskribe_dev2/models/integration.rb +311 -0
- data/lib/subskribe_dev2/models/invoice_balance_json.rb +211 -0
- data/lib/subskribe_dev2/models/invoice_item_json.rb +355 -0
- data/lib/subskribe_dev2/models/invoice_item_preview_json.rb +229 -0
- data/lib/subskribe_dev2/models/invoice_json.rb +439 -0
- data/lib/subskribe_dev2/models/invoice_json_pagination_response.rb +204 -0
- data/lib/subskribe_dev2/models/invoice_number_prefix.rb +184 -0
- data/lib/subskribe_dev2/models/invoice_preview_json.rb +222 -0
- data/lib/subskribe_dev2/models/ledger_account.rb +316 -0
- data/lib/subskribe_dev2/models/ledger_account_mapping.rb +222 -0
- data/lib/subskribe_dev2/models/metrics_json.rb +267 -0
- data/lib/subskribe_dev2/models/notification_target_and_subscriptions.rb +265 -0
- data/lib/subskribe_dev2/models/number_config.rb +254 -0
- data/lib/subskribe_dev2/models/opportunity.rb +326 -0
- data/lib/subskribe_dev2/models/opportunity_json.rb +326 -0
- data/lib/subskribe_dev2/models/opportunity_pagination_response.rb +204 -0
- data/lib/subskribe_dev2/models/opportunity_rest_json.rb +317 -0
- data/lib/subskribe_dev2/models/order_json.rb +754 -0
- data/lib/subskribe_dev2/models/order_json_pagination_response.rb +204 -0
- data/lib/subskribe_dev2/models/order_line_item_json.rb +474 -0
- data/lib/subskribe_dev2/models/order_line_item_request_json.rb +384 -0
- data/lib/subskribe_dev2/models/order_request_json.rb +616 -0
- data/lib/subskribe_dev2/models/order_terms.rb +265 -0
- data/lib/subskribe_dev2/models/paginated_accounts_response.rb +204 -0
- data/lib/subskribe_dev2/models/paginated_response.rb +204 -0
- data/lib/subskribe_dev2/models/payment_balance_json.rb +211 -0
- data/lib/subskribe_dev2/models/payment_configuration.rb +208 -0
- data/lib/subskribe_dev2/models/payment_json.rb +300 -0
- data/lib/subskribe_dev2/models/payment_json_pagination_response.rb +204 -0
- data/lib/subskribe_dev2/models/payment_term_settings_json.rb +219 -0
- data/lib/subskribe_dev2/models/plan_json.rb +339 -0
- data/lib/subskribe_dev2/models/plan_json_pagination_response.rb +204 -0
- data/lib/subskribe_dev2/models/plan_metadata_json.rb +187 -0
- data/lib/subskribe_dev2/models/predefined_report_def_chart_json.rb +265 -0
- data/lib/subskribe_dev2/models/predefined_report_def_json.rb +222 -0
- data/lib/subskribe_dev2/models/predefined_report_defs_json.rb +186 -0
- data/lib/subskribe_dev2/models/predefined_report_json.rb +213 -0
- data/lib/subskribe_dev2/models/predefined_report_param.rb +296 -0
- data/lib/subskribe_dev2/models/predefined_report_param_object.rb +296 -0
- data/lib/subskribe_dev2/models/prepaid_stats.rb +310 -0
- data/lib/subskribe_dev2/models/price_tier_json.rb +212 -0
- data/lib/subskribe_dev2/models/product_category.rb +264 -0
- data/lib/subskribe_dev2/models/product_category_pagination_response.rb +204 -0
- data/lib/subskribe_dev2/models/product_input_json.rb +249 -0
- data/lib/subskribe_dev2/models/product_json.rb +276 -0
- data/lib/subskribe_dev2/models/product_json_pagination_response.rb +204 -0
- data/lib/subskribe_dev2/models/purchase_order.rb +226 -0
- data/lib/subskribe_dev2/models/raw_usage.rb +247 -0
- data/lib/subskribe_dev2/models/raw_usages_data.rb +192 -0
- data/lib/subskribe_dev2/models/recognition_event_completion.rb +322 -0
- data/lib/subskribe_dev2/models/recognition_rule.rb +376 -0
- data/lib/subskribe_dev2/models/recurrence_json.rb +256 -0
- data/lib/subskribe_dev2/models/refund.rb +301 -0
- data/lib/subskribe_dev2/models/refund_detail.rb +322 -0
- data/lib/subskribe_dev2/models/refund_request_json.rb +272 -0
- data/lib/subskribe_dev2/models/report_duration.rb +193 -0
- data/lib/subskribe_dev2/models/report_job_response.rb +245 -0
- data/lib/subskribe_dev2/models/salesforce_account.rb +229 -0
- data/lib/subskribe_dev2/models/salesforce_account_billing_address.rb +220 -0
- data/lib/subskribe_dev2/models/salesforce_client_integration_request_json.rb +211 -0
- data/lib/subskribe_dev2/models/settlement_application.rb +329 -0
- data/lib/subskribe_dev2/models/standalone_credit_memo_request.rb +353 -0
- data/lib/subskribe_dev2/models/subscription_charge_alias.rb +283 -0
- data/lib/subskribe_dev2/models/subscription_charge_json.rb +362 -0
- data/lib/subskribe_dev2/models/subscription_json.rb +583 -0
- data/lib/subskribe_dev2/models/subscription_update_json.rb +280 -0
- data/lib/subskribe_dev2/models/tax_jar_integration.rb +238 -0
- data/lib/subskribe_dev2/models/tax_jar_integration_input.rb +193 -0
- data/lib/subskribe_dev2/models/tax_rate_json.rb +286 -0
- data/lib/subskribe_dev2/models/tax_rate_pagination_response_json.rb +204 -0
- data/lib/subskribe_dev2/models/tenant_credit_memo_configuration_json.rb +211 -0
- data/lib/subskribe_dev2/models/tenant_discount_json.rb +193 -0
- data/lib/subskribe_dev2/models/tenant_discount_line_item_json.rb +202 -0
- data/lib/subskribe_dev2/models/tenant_invoice_config.rb +254 -0
- data/lib/subskribe_dev2/models/tenant_json.rb +283 -0
- data/lib/subskribe_dev2/models/tenant_setting_json.rb +307 -0
- data/lib/subskribe_dev2/models/time_series_amount_json.rb +193 -0
- data/lib/subskribe_dev2/models/time_zone.rb +211 -0
- data/lib/subskribe_dev2/models/unit_of_measure_json.rb +250 -0
- data/lib/subskribe_dev2/models/unit_of_measure_pagination_response_json.rb +204 -0
- data/lib/subskribe_dev2/models/update_invoice_request.rb +282 -0
- data/lib/subskribe_dev2/models/usage_aggregate_output.rb +258 -0
- data/lib/subskribe_dev2/models/usage_batch_insert_result.rb +213 -0
- data/lib/subskribe_dev2/models/user_group_json.rb +224 -0
- data/lib/subskribe_dev2/models/user_group_request_json.rb +224 -0
- data/lib/subskribe_dev2/models/user_input.rb +304 -0
- data/lib/subskribe_dev2/models/user_json.rb +376 -0
- data/lib/subskribe_dev2/models/user_pagination_response_json.rb +204 -0
- data/lib/subskribe_dev2/models/void_invoice_request.rb +203 -0
- data/lib/subskribe_dev2/models/void_payment_json.rb +235 -0
- data/lib/subskribe_dev2/version.rb +15 -0
- data/lib/subskribe_dev2.rb +230 -0
- data/lib/subskribe_sandbox/api/accounts_api.rb +3 -3
- data/lib/subskribe_sandbox/api/billing_api.rb +35 -35
- data/lib/subskribe_sandbox/models/automated_invoice_rule.rb +49 -49
- data/lib/subskribe_sandbox/models/bulk_payment_upload_data.rb +46 -46
- data/lib/subskribe_sandbox/models/charge_json.rb +16 -16
- data/lib/subskribe_sandbox/models/paginated_accounts_response.rb +204 -0
- data/lib/subskribe_sandbox/models/tax_jar_integration.rb +31 -31
- data/lib/subskribe_sandbox/version.rb +1 -1
- data/lib/subskribe_sandbox.rb +1 -0
- data/lib/swagger_client/api/accounting_api.rb +193 -0
- data/lib/swagger_client/api/accounts_api.rb +858 -0
- data/lib/swagger_client/api/approvals_api.rb +965 -0
- data/lib/swagger_client/api/attachments_api.rb +299 -0
- data/lib/swagger_client/api/authentication_api.rb +335 -0
- data/lib/swagger_client/api/billing_api.rb +2098 -0
- data/lib/swagger_client/api/credit_memo_api.rb +636 -0
- data/lib/swagger_client/api/custom_field_api.rb +434 -0
- data/lib/swagger_client/api/customization_api.rb +269 -0
- data/lib/swagger_client/api/default_api.rb +223 -0
- data/lib/swagger_client/api/discounts_api.rb +340 -0
- data/lib/swagger_client/api/entities_api.rb +532 -0
- data/lib/swagger_client/api/erp_api.rb +278 -0
- data/lib/swagger_client/api/import_api.rb +568 -0
- data/lib/swagger_client/api/integrations_api.rb +1678 -0
- data/lib/swagger_client/api/metrics_reporting_api.rb +223 -0
- data/lib/swagger_client/api/notifications_api.rb +245 -0
- data/lib/swagger_client/api/opportunity_api.rb +177 -0
- data/lib/swagger_client/api/orders_api.rb +1381 -0
- data/lib/swagger_client/api/payments_api.rb +431 -0
- data/lib/swagger_client/api/product_catalog_api.rb +1886 -0
- data/lib/swagger_client/api/rate_card_api.rb +68 -0
- data/lib/swagger_client/api/refunds_api.rb +189 -0
- data/lib/swagger_client/api/reports_api.rb +227 -0
- data/lib/swagger_client/api/revenue_recognition_api.rb +484 -0
- data/lib/swagger_client/api/sales_room_api.rb +74 -0
- data/lib/swagger_client/api/settings_api.rb +1321 -0
- data/lib/swagger_client/api/subscriptions_api.rb +576 -0
- data/lib/swagger_client/api/usage_api.rb +604 -0
- data/lib/swagger_client/api/users_api.rb +728 -0
- data/lib/swagger_client/api_client.rb +391 -0
- data/lib/swagger_client/api_error.rb +38 -0
- data/lib/swagger_client/configuration.rb +209 -0
- data/lib/swagger_client/models/account_address.rb +265 -0
- data/lib/swagger_client/models/account_address_json.rb +229 -0
- data/lib/swagger_client/models/account_contact.rb +530 -0
- data/lib/swagger_client/models/account_contact_json.rb +274 -0
- data/lib/swagger_client/models/account_json.rb +395 -0
- data/lib/swagger_client/models/account_payment_method_json.rb +268 -0
- data/lib/swagger_client/models/account_receivable_contact_json.rb +225 -0
- data/lib/swagger_client/models/accounting_event.rb +319 -0
- data/lib/swagger_client/models/accounting_event_paginated_response.rb +204 -0
- data/lib/swagger_client/models/accounting_period.rb +356 -0
- data/lib/swagger_client/models/accounting_period_calculation.rb +229 -0
- data/lib/swagger_client/models/add_and_apply_payment_application_json.rb +344 -0
- data/lib/swagger_client/models/anrok_integration_input.rb +184 -0
- data/lib/swagger_client/models/approval_matrix_import_data_json.rb +229 -0
- data/lib/swagger_client/models/approval_matrix_import_preview.rb +226 -0
- data/lib/swagger_client/models/approval_role_json.rb +220 -0
- data/lib/swagger_client/models/approval_role_segment_change.rb +211 -0
- data/lib/swagger_client/models/approval_segment_json.rb +220 -0
- data/lib/swagger_client/models/attachment.rb +326 -0
- data/lib/swagger_client/models/attribute_reference.rb +193 -0
- data/lib/swagger_client/models/auth_saml_integration_json.rb +204 -0
- data/lib/swagger_client/models/automated_invoice_rule.rb +328 -0
- data/lib/swagger_client/models/automated_invoice_rule_request_json.rb +307 -0
- data/lib/swagger_client/models/avalara_integration.rb +238 -0
- data/lib/swagger_client/models/avalara_integration_input.rb +268 -0
- data/lib/swagger_client/models/billing_event_entry.rb +211 -0
- data/lib/swagger_client/models/billing_event_input.rb +216 -0
- data/lib/swagger_client/models/bulk_invoice_run.rb +350 -0
- data/lib/swagger_client/models/bulk_invoice_run_exclusions.rb +197 -0
- data/lib/swagger_client/models/bulk_invoice_run_input.rb +263 -0
- data/lib/swagger_client/models/bulk_invoice_run_item.rb +364 -0
- data/lib/swagger_client/models/bulk_invoice_run_selector.rb +184 -0
- data/lib/swagger_client/models/bulk_payment_upload_data.rb +274 -0
- data/lib/swagger_client/models/bulk_payment_upload_result.rb +204 -0
- data/lib/swagger_client/models/byte_buffer.rb +247 -0
- data/lib/swagger_client/models/catalog_relationship.rb +364 -0
- data/lib/swagger_client/models/charge_json.rb +631 -0
- data/lib/swagger_client/models/charge_partial_json.rb +310 -0
- data/lib/swagger_client/models/company_contact_json.rb +225 -0
- data/lib/swagger_client/models/credit_memo_application_json.rb +239 -0
- data/lib/swagger_client/models/credit_memo_balance_json.rb +211 -0
- data/lib/swagger_client/models/credit_memo_json.rb +363 -0
- data/lib/swagger_client/models/credit_memo_line_item_json.rb +252 -0
- data/lib/swagger_client/models/credit_memo_line_item_request_json.rb +211 -0
- data/lib/swagger_client/models/credit_memo_pagination_response_json.rb +204 -0
- data/lib/swagger_client/models/crm_account_import_response.rb +193 -0
- data/lib/swagger_client/models/custom_field_default.rb +195 -0
- data/lib/swagger_client/models/custom_field_definition_create_input.rb +317 -0
- data/lib/swagger_client/models/custom_field_definition_json.rb +313 -0
- data/lib/swagger_client/models/custom_field_definition_update_input.rb +256 -0
- data/lib/swagger_client/models/custom_field_entry.rb +325 -0
- data/lib/swagger_client/models/custom_field_update_input.rb +195 -0
- data/lib/swagger_client/models/custom_field_value.rb +316 -0
- data/lib/swagger_client/models/data_import.rb +355 -0
- data/lib/swagger_client/models/discount_detail_json.rb +263 -0
- data/lib/swagger_client/models/discount_json.rb +254 -0
- data/lib/swagger_client/models/docu_sign_integration_request_json.rb +236 -0
- data/lib/swagger_client/models/docu_sign_integration_response_json.rb +245 -0
- data/lib/swagger_client/models/document_custom_content.rb +211 -0
- data/lib/swagger_client/models/document_section.rb +265 -0
- data/lib/swagger_client/models/document_template_json.rb +300 -0
- data/lib/swagger_client/models/dunning_setting_json.rb +200 -0
- data/lib/swagger_client/models/email_notifiers_list.rb +208 -0
- data/lib/swagger_client/models/entity.rb +356 -0
- data/lib/swagger_client/models/entity_json.rb +347 -0
- data/lib/swagger_client/models/entity_ref.rb +202 -0
- data/lib/swagger_client/models/entry.rb +202 -0
- data/lib/swagger_client/models/external_arr_schedule_json.rb +319 -0
- data/lib/swagger_client/models/flatfile_workbook_response.rb +184 -0
- data/lib/swagger_client/models/flatfile_workbook_response_data.rb +193 -0
- data/lib/swagger_client/models/input_stream.rb +175 -0
- data/lib/swagger_client/models/integration.rb +311 -0
- data/lib/swagger_client/models/invoice_balance_json.rb +211 -0
- data/lib/swagger_client/models/invoice_item_json.rb +355 -0
- data/lib/swagger_client/models/invoice_item_preview_json.rb +229 -0
- data/lib/swagger_client/models/invoice_json.rb +439 -0
- data/lib/swagger_client/models/invoice_json_pagination_response.rb +204 -0
- data/lib/swagger_client/models/invoice_number_prefix.rb +184 -0
- data/lib/swagger_client/models/invoice_preview_json.rb +222 -0
- data/lib/swagger_client/models/ledger_account.rb +316 -0
- data/lib/swagger_client/models/ledger_account_mapping.rb +222 -0
- data/lib/swagger_client/models/metrics_json.rb +267 -0
- data/lib/swagger_client/models/notification_target_and_subscriptions.rb +265 -0
- data/lib/swagger_client/models/number_config.rb +254 -0
- data/lib/swagger_client/models/opportunity.rb +326 -0
- data/lib/swagger_client/models/opportunity_json.rb +326 -0
- data/lib/swagger_client/models/opportunity_pagination_response.rb +204 -0
- data/lib/swagger_client/models/opportunity_rest_json.rb +317 -0
- data/lib/swagger_client/models/order_json.rb +754 -0
- data/lib/swagger_client/models/order_json_pagination_response.rb +204 -0
- data/lib/swagger_client/models/order_line_item_json.rb +474 -0
- data/lib/swagger_client/models/order_line_item_request_json.rb +384 -0
- data/lib/swagger_client/models/order_request_json.rb +616 -0
- data/lib/swagger_client/models/order_terms.rb +265 -0
- data/lib/swagger_client/models/paginated_accounts_response.rb +204 -0
- data/lib/swagger_client/models/paginated_response.rb +204 -0
- data/lib/swagger_client/models/payment_balance_json.rb +211 -0
- data/lib/swagger_client/models/payment_configuration.rb +208 -0
- data/lib/swagger_client/models/payment_json.rb +300 -0
- data/lib/swagger_client/models/payment_json_pagination_response.rb +204 -0
- data/lib/swagger_client/models/payment_term_settings_json.rb +219 -0
- data/lib/swagger_client/models/plan_json.rb +339 -0
- data/lib/swagger_client/models/plan_json_pagination_response.rb +204 -0
- data/lib/swagger_client/models/plan_metadata_json.rb +187 -0
- data/lib/swagger_client/models/predefined_report_def_chart_json.rb +265 -0
- data/lib/swagger_client/models/predefined_report_def_json.rb +222 -0
- data/lib/swagger_client/models/predefined_report_defs_json.rb +186 -0
- data/lib/swagger_client/models/predefined_report_json.rb +213 -0
- data/lib/swagger_client/models/predefined_report_param.rb +296 -0
- data/lib/swagger_client/models/predefined_report_param_object.rb +296 -0
- data/lib/swagger_client/models/prepaid_stats.rb +310 -0
- data/lib/swagger_client/models/price_tier_json.rb +212 -0
- data/lib/swagger_client/models/product_category.rb +264 -0
- data/lib/swagger_client/models/product_category_pagination_response.rb +204 -0
- data/lib/swagger_client/models/product_input_json.rb +249 -0
- data/lib/swagger_client/models/product_json.rb +276 -0
- data/lib/swagger_client/models/product_json_pagination_response.rb +204 -0
- data/lib/swagger_client/models/purchase_order.rb +226 -0
- data/lib/swagger_client/models/raw_usage.rb +247 -0
- data/lib/swagger_client/models/raw_usages_data.rb +192 -0
- data/lib/swagger_client/models/recognition_event_completion.rb +322 -0
- data/lib/swagger_client/models/recognition_rule.rb +376 -0
- data/lib/swagger_client/models/recurrence_json.rb +256 -0
- data/lib/swagger_client/models/refund.rb +301 -0
- data/lib/swagger_client/models/refund_detail.rb +322 -0
- data/lib/swagger_client/models/refund_request_json.rb +272 -0
- data/lib/swagger_client/models/report_duration.rb +193 -0
- data/lib/swagger_client/models/report_job_response.rb +245 -0
- data/lib/swagger_client/models/salesforce_account.rb +229 -0
- data/lib/swagger_client/models/salesforce_account_billing_address.rb +220 -0
- data/lib/swagger_client/models/salesforce_client_integration_request_json.rb +211 -0
- data/lib/swagger_client/models/settlement_application.rb +329 -0
- data/lib/swagger_client/models/standalone_credit_memo_request.rb +353 -0
- data/lib/swagger_client/models/subscription_charge_alias.rb +283 -0
- data/lib/swagger_client/models/subscription_charge_json.rb +362 -0
- data/lib/swagger_client/models/subscription_json.rb +583 -0
- data/lib/swagger_client/models/subscription_update_json.rb +280 -0
- data/lib/swagger_client/models/tax_jar_integration.rb +238 -0
- data/lib/swagger_client/models/tax_jar_integration_input.rb +193 -0
- data/lib/swagger_client/models/tax_rate_json.rb +286 -0
- data/lib/swagger_client/models/tax_rate_pagination_response_json.rb +204 -0
- data/lib/swagger_client/models/tenant_credit_memo_configuration_json.rb +211 -0
- data/lib/swagger_client/models/tenant_discount_json.rb +193 -0
- data/lib/swagger_client/models/tenant_discount_line_item_json.rb +202 -0
- data/lib/swagger_client/models/tenant_invoice_config.rb +254 -0
- data/lib/swagger_client/models/tenant_json.rb +283 -0
- data/lib/swagger_client/models/tenant_setting_json.rb +307 -0
- data/lib/swagger_client/models/time_series_amount_json.rb +193 -0
- data/lib/swagger_client/models/time_zone.rb +211 -0
- data/lib/swagger_client/models/unit_of_measure_json.rb +250 -0
- data/lib/swagger_client/models/unit_of_measure_pagination_response_json.rb +204 -0
- data/lib/swagger_client/models/update_invoice_request.rb +282 -0
- data/lib/swagger_client/models/usage_aggregate_output.rb +258 -0
- data/lib/swagger_client/models/usage_batch_insert_result.rb +213 -0
- data/lib/swagger_client/models/user_group_json.rb +224 -0
- data/lib/swagger_client/models/user_group_request_json.rb +224 -0
- data/lib/swagger_client/models/user_input.rb +304 -0
- data/lib/swagger_client/models/user_json.rb +376 -0
- data/lib/swagger_client/models/user_pagination_response_json.rb +204 -0
- data/lib/swagger_client/models/void_invoice_request.rb +203 -0
- data/lib/swagger_client/models/void_payment_json.rb +235 -0
- data/lib/swagger_client/version.rb +15 -0
- data/lib/swagger_client.rb +230 -0
- data/spec/models/paginated_accounts_response_spec.rb +53 -0
- data/spec/models/plan_metadata_json_spec.rb +3 -3
- data/subskribe_dev-1.3.1.gem +0 -0
- data/subskribe_dev.gemspec +4 -4
- data/subskribe_dev2-1.3.2.gem +0 -0
- data/subskribe_dev2.gemspec +46 -0
- data/subskribe_sandbox.gemspec +3 -3
- data/swagger_client.gemspec +46 -0
- metadata +589 -187
@@ -0,0 +1,1321 @@
|
|
1
|
+
=begin
|
2
|
+
#Subskribe API
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.41
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'uri'
|
14
|
+
|
15
|
+
module SubskribeDevClient
|
16
|
+
class SettingsApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Activate unit of measure
|
23
|
+
# Activates the specified unit of measure making it available to be attached to charges
|
24
|
+
# @param id
|
25
|
+
# @param [Hash] opts the optional parameters
|
26
|
+
# @return [nil]
|
27
|
+
def activate_unit_of_measure(id, opts = {})
|
28
|
+
activate_unit_of_measure_with_http_info(id, opts)
|
29
|
+
nil
|
30
|
+
end
|
31
|
+
|
32
|
+
# Activate unit of measure
|
33
|
+
# Activates the specified unit of measure making it available to be attached to charges
|
34
|
+
# @param id
|
35
|
+
# @param [Hash] opts the optional parameters
|
36
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
37
|
+
def activate_unit_of_measure_with_http_info(id, opts = {})
|
38
|
+
if @api_client.config.debugging
|
39
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.activate_unit_of_measure ...'
|
40
|
+
end
|
41
|
+
# verify the required parameter 'id' is set
|
42
|
+
if @api_client.config.client_side_validation && id.nil?
|
43
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.activate_unit_of_measure"
|
44
|
+
end
|
45
|
+
# resource path
|
46
|
+
local_var_path = '/unitsOfMeasure/{id}/activate'.sub('{' + 'id' + '}', id.to_s)
|
47
|
+
|
48
|
+
# query parameters
|
49
|
+
query_params = {}
|
50
|
+
|
51
|
+
# header parameters
|
52
|
+
header_params = {}
|
53
|
+
# HTTP header 'Accept' (if needed)
|
54
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
55
|
+
|
56
|
+
# form parameters
|
57
|
+
form_params = {}
|
58
|
+
|
59
|
+
# http body (model)
|
60
|
+
post_body = nil
|
61
|
+
auth_names = ['ApiKeyAuth']
|
62
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
63
|
+
:header_params => header_params,
|
64
|
+
:query_params => query_params,
|
65
|
+
:form_params => form_params,
|
66
|
+
:body => post_body,
|
67
|
+
:auth_names => auth_names)
|
68
|
+
if @api_client.config.debugging
|
69
|
+
@api_client.config.logger.debug "API called: SettingsApi#activate_unit_of_measure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
70
|
+
end
|
71
|
+
return data, status_code, headers
|
72
|
+
end
|
73
|
+
# Add tax rate
|
74
|
+
# Add a new tax rate object
|
75
|
+
# @param [Hash] opts the optional parameters
|
76
|
+
# @option opts [TaxRateJson] :body
|
77
|
+
# @return [TaxRateJson]
|
78
|
+
def add_tax_rate(opts = {})
|
79
|
+
data, _status_code, _headers = add_tax_rate_with_http_info(opts)
|
80
|
+
data
|
81
|
+
end
|
82
|
+
|
83
|
+
# Add tax rate
|
84
|
+
# Add a new tax rate object
|
85
|
+
# @param [Hash] opts the optional parameters
|
86
|
+
# @option opts [TaxRateJson] :body
|
87
|
+
# @return [Array<(TaxRateJson, Fixnum, Hash)>] TaxRateJson data, response status code and response headers
|
88
|
+
def add_tax_rate_with_http_info(opts = {})
|
89
|
+
if @api_client.config.debugging
|
90
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.add_tax_rate ...'
|
91
|
+
end
|
92
|
+
# resource path
|
93
|
+
local_var_path = '/taxrates'
|
94
|
+
|
95
|
+
# query parameters
|
96
|
+
query_params = {}
|
97
|
+
|
98
|
+
# header parameters
|
99
|
+
header_params = {}
|
100
|
+
# HTTP header 'Accept' (if needed)
|
101
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
102
|
+
# HTTP header 'Content-Type'
|
103
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
104
|
+
|
105
|
+
# form parameters
|
106
|
+
form_params = {}
|
107
|
+
|
108
|
+
# http body (model)
|
109
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
110
|
+
auth_names = ['ApiKeyAuth']
|
111
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
112
|
+
:header_params => header_params,
|
113
|
+
:query_params => query_params,
|
114
|
+
:form_params => form_params,
|
115
|
+
:body => post_body,
|
116
|
+
:auth_names => auth_names,
|
117
|
+
:return_type => 'TaxRateJson')
|
118
|
+
if @api_client.config.debugging
|
119
|
+
@api_client.config.logger.debug "API called: SettingsApi#add_tax_rate\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
120
|
+
end
|
121
|
+
return data, status_code, headers
|
122
|
+
end
|
123
|
+
# Add predefined terms section
|
124
|
+
# Adds a predefined terms section.
|
125
|
+
# @param [Hash] opts the optional parameters
|
126
|
+
# @option opts [DocumentSection] :body
|
127
|
+
# @return [DocumentSection]
|
128
|
+
def add_term_section(opts = {})
|
129
|
+
data, _status_code, _headers = add_term_section_with_http_info(opts)
|
130
|
+
data
|
131
|
+
end
|
132
|
+
|
133
|
+
# Add predefined terms section
|
134
|
+
# Adds a predefined terms section.
|
135
|
+
# @param [Hash] opts the optional parameters
|
136
|
+
# @option opts [DocumentSection] :body
|
137
|
+
# @return [Array<(DocumentSection, Fixnum, Hash)>] DocumentSection data, response status code and response headers
|
138
|
+
def add_term_section_with_http_info(opts = {})
|
139
|
+
if @api_client.config.debugging
|
140
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.add_term_section ...'
|
141
|
+
end
|
142
|
+
# resource path
|
143
|
+
local_var_path = '/termsections'
|
144
|
+
|
145
|
+
# query parameters
|
146
|
+
query_params = {}
|
147
|
+
|
148
|
+
# header parameters
|
149
|
+
header_params = {}
|
150
|
+
# HTTP header 'Accept' (if needed)
|
151
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
152
|
+
|
153
|
+
# form parameters
|
154
|
+
form_params = {}
|
155
|
+
|
156
|
+
# http body (model)
|
157
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
158
|
+
auth_names = ['ApiKeyAuth']
|
159
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
160
|
+
:header_params => header_params,
|
161
|
+
:query_params => query_params,
|
162
|
+
:form_params => form_params,
|
163
|
+
:body => post_body,
|
164
|
+
:auth_names => auth_names,
|
165
|
+
:return_type => 'DocumentSection')
|
166
|
+
if @api_client.config.debugging
|
167
|
+
@api_client.config.logger.debug "API called: SettingsApi#add_term_section\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
168
|
+
end
|
169
|
+
return data, status_code, headers
|
170
|
+
end
|
171
|
+
# Add unit of measure
|
172
|
+
# Add a new instance of unit of measure as specified by the input
|
173
|
+
# @param [Hash] opts the optional parameters
|
174
|
+
# @option opts [UnitOfMeasureJson] :body
|
175
|
+
# @return [UnitOfMeasureJson]
|
176
|
+
def add_unit_of_measure(opts = {})
|
177
|
+
data, _status_code, _headers = add_unit_of_measure_with_http_info(opts)
|
178
|
+
data
|
179
|
+
end
|
180
|
+
|
181
|
+
# Add unit of measure
|
182
|
+
# Add a new instance of unit of measure as specified by the input
|
183
|
+
# @param [Hash] opts the optional parameters
|
184
|
+
# @option opts [UnitOfMeasureJson] :body
|
185
|
+
# @return [Array<(UnitOfMeasureJson, Fixnum, Hash)>] UnitOfMeasureJson data, response status code and response headers
|
186
|
+
def add_unit_of_measure_with_http_info(opts = {})
|
187
|
+
if @api_client.config.debugging
|
188
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.add_unit_of_measure ...'
|
189
|
+
end
|
190
|
+
# resource path
|
191
|
+
local_var_path = '/unitsOfMeasure'
|
192
|
+
|
193
|
+
# query parameters
|
194
|
+
query_params = {}
|
195
|
+
|
196
|
+
# header parameters
|
197
|
+
header_params = {}
|
198
|
+
# HTTP header 'Accept' (if needed)
|
199
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
200
|
+
# HTTP header 'Content-Type'
|
201
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
202
|
+
|
203
|
+
# form parameters
|
204
|
+
form_params = {}
|
205
|
+
|
206
|
+
# http body (model)
|
207
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
208
|
+
auth_names = ['ApiKeyAuth']
|
209
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
210
|
+
:header_params => header_params,
|
211
|
+
:query_params => query_params,
|
212
|
+
:form_params => form_params,
|
213
|
+
:body => post_body,
|
214
|
+
:auth_names => auth_names,
|
215
|
+
:return_type => 'UnitOfMeasureJson')
|
216
|
+
if @api_client.config.debugging
|
217
|
+
@api_client.config.logger.debug "API called: SettingsApi#add_unit_of_measure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
218
|
+
end
|
219
|
+
return data, status_code, headers
|
220
|
+
end
|
221
|
+
# Delete tax rate
|
222
|
+
# Deletes the tax rate object by Id. If successful the deleted tax rate object is returned
|
223
|
+
# @param id
|
224
|
+
# @param [Hash] opts the optional parameters
|
225
|
+
# @return [TaxRateJson]
|
226
|
+
def delete_tax_rate(id, opts = {})
|
227
|
+
data, _status_code, _headers = delete_tax_rate_with_http_info(id, opts)
|
228
|
+
data
|
229
|
+
end
|
230
|
+
|
231
|
+
# Delete tax rate
|
232
|
+
# Deletes the tax rate object by Id. If successful the deleted tax rate object is returned
|
233
|
+
# @param id
|
234
|
+
# @param [Hash] opts the optional parameters
|
235
|
+
# @return [Array<(TaxRateJson, Fixnum, Hash)>] TaxRateJson data, response status code and response headers
|
236
|
+
def delete_tax_rate_with_http_info(id, opts = {})
|
237
|
+
if @api_client.config.debugging
|
238
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.delete_tax_rate ...'
|
239
|
+
end
|
240
|
+
# verify the required parameter 'id' is set
|
241
|
+
if @api_client.config.client_side_validation && id.nil?
|
242
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.delete_tax_rate"
|
243
|
+
end
|
244
|
+
# resource path
|
245
|
+
local_var_path = '/taxrates/{id}'.sub('{' + 'id' + '}', id.to_s)
|
246
|
+
|
247
|
+
# query parameters
|
248
|
+
query_params = {}
|
249
|
+
|
250
|
+
# header parameters
|
251
|
+
header_params = {}
|
252
|
+
# HTTP header 'Accept' (if needed)
|
253
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
254
|
+
|
255
|
+
# form parameters
|
256
|
+
form_params = {}
|
257
|
+
|
258
|
+
# http body (model)
|
259
|
+
post_body = nil
|
260
|
+
auth_names = ['ApiKeyAuth']
|
261
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
262
|
+
:header_params => header_params,
|
263
|
+
:query_params => query_params,
|
264
|
+
:form_params => form_params,
|
265
|
+
:body => post_body,
|
266
|
+
:auth_names => auth_names,
|
267
|
+
:return_type => 'TaxRateJson')
|
268
|
+
if @api_client.config.debugging
|
269
|
+
@api_client.config.logger.debug "API called: SettingsApi#delete_tax_rate\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
270
|
+
end
|
271
|
+
return data, status_code, headers
|
272
|
+
end
|
273
|
+
# Delete predefined terms section
|
274
|
+
# Deletes the predefined terms section specified.
|
275
|
+
# @param id
|
276
|
+
# @param [Hash] opts the optional parameters
|
277
|
+
# @return [nil]
|
278
|
+
def delete_term_section(id, opts = {})
|
279
|
+
delete_term_section_with_http_info(id, opts)
|
280
|
+
nil
|
281
|
+
end
|
282
|
+
|
283
|
+
# Delete predefined terms section
|
284
|
+
# Deletes the predefined terms section specified.
|
285
|
+
# @param id
|
286
|
+
# @param [Hash] opts the optional parameters
|
287
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
288
|
+
def delete_term_section_with_http_info(id, opts = {})
|
289
|
+
if @api_client.config.debugging
|
290
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.delete_term_section ...'
|
291
|
+
end
|
292
|
+
# verify the required parameter 'id' is set
|
293
|
+
if @api_client.config.client_side_validation && id.nil?
|
294
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.delete_term_section"
|
295
|
+
end
|
296
|
+
# resource path
|
297
|
+
local_var_path = '/termsections/{id}'.sub('{' + 'id' + '}', id.to_s)
|
298
|
+
|
299
|
+
# query parameters
|
300
|
+
query_params = {}
|
301
|
+
|
302
|
+
# header parameters
|
303
|
+
header_params = {}
|
304
|
+
# HTTP header 'Accept' (if needed)
|
305
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
306
|
+
|
307
|
+
# form parameters
|
308
|
+
form_params = {}
|
309
|
+
|
310
|
+
# http body (model)
|
311
|
+
post_body = nil
|
312
|
+
auth_names = ['ApiKeyAuth']
|
313
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
314
|
+
:header_params => header_params,
|
315
|
+
:query_params => query_params,
|
316
|
+
:form_params => form_params,
|
317
|
+
:body => post_body,
|
318
|
+
:auth_names => auth_names)
|
319
|
+
if @api_client.config.debugging
|
320
|
+
@api_client.config.logger.debug "API called: SettingsApi#delete_term_section\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
321
|
+
end
|
322
|
+
return data, status_code, headers
|
323
|
+
end
|
324
|
+
# Delete unit of measure
|
325
|
+
# Delete the unit of measure by Id provided. Returns the deleted unit of measure object if successful.
|
326
|
+
# @param id
|
327
|
+
# @param [Hash] opts the optional parameters
|
328
|
+
# @return [UnitOfMeasureJson]
|
329
|
+
def delete_unit_of_measure(id, opts = {})
|
330
|
+
data, _status_code, _headers = delete_unit_of_measure_with_http_info(id, opts)
|
331
|
+
data
|
332
|
+
end
|
333
|
+
|
334
|
+
# Delete unit of measure
|
335
|
+
# Delete the unit of measure by Id provided. Returns the deleted unit of measure object if successful.
|
336
|
+
# @param id
|
337
|
+
# @param [Hash] opts the optional parameters
|
338
|
+
# @return [Array<(UnitOfMeasureJson, Fixnum, Hash)>] UnitOfMeasureJson data, response status code and response headers
|
339
|
+
def delete_unit_of_measure_with_http_info(id, opts = {})
|
340
|
+
if @api_client.config.debugging
|
341
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.delete_unit_of_measure ...'
|
342
|
+
end
|
343
|
+
# verify the required parameter 'id' is set
|
344
|
+
if @api_client.config.client_side_validation && id.nil?
|
345
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.delete_unit_of_measure"
|
346
|
+
end
|
347
|
+
# resource path
|
348
|
+
local_var_path = '/unitsOfMeasure/{id}'.sub('{' + 'id' + '}', id.to_s)
|
349
|
+
|
350
|
+
# query parameters
|
351
|
+
query_params = {}
|
352
|
+
|
353
|
+
# header parameters
|
354
|
+
header_params = {}
|
355
|
+
# HTTP header 'Accept' (if needed)
|
356
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
357
|
+
|
358
|
+
# form parameters
|
359
|
+
form_params = {}
|
360
|
+
|
361
|
+
# http body (model)
|
362
|
+
post_body = nil
|
363
|
+
auth_names = ['ApiKeyAuth']
|
364
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
|
365
|
+
:header_params => header_params,
|
366
|
+
:query_params => query_params,
|
367
|
+
:form_params => form_params,
|
368
|
+
:body => post_body,
|
369
|
+
:auth_names => auth_names,
|
370
|
+
:return_type => 'UnitOfMeasureJson')
|
371
|
+
if @api_client.config.debugging
|
372
|
+
@api_client.config.logger.debug "API called: SettingsApi#delete_unit_of_measure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
373
|
+
end
|
374
|
+
return data, status_code, headers
|
375
|
+
end
|
376
|
+
# Deprecate unit of measure
|
377
|
+
# Deprecates the specified unit of measure making it unavailable to be attached to charges going forward
|
378
|
+
# @param id
|
379
|
+
# @param [Hash] opts the optional parameters
|
380
|
+
# @return [nil]
|
381
|
+
def deprecate_unit_of_measure(id, opts = {})
|
382
|
+
deprecate_unit_of_measure_with_http_info(id, opts)
|
383
|
+
nil
|
384
|
+
end
|
385
|
+
|
386
|
+
# Deprecate unit of measure
|
387
|
+
# Deprecates the specified unit of measure making it unavailable to be attached to charges going forward
|
388
|
+
# @param id
|
389
|
+
# @param [Hash] opts the optional parameters
|
390
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
391
|
+
def deprecate_unit_of_measure_with_http_info(id, opts = {})
|
392
|
+
if @api_client.config.debugging
|
393
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.deprecate_unit_of_measure ...'
|
394
|
+
end
|
395
|
+
# verify the required parameter 'id' is set
|
396
|
+
if @api_client.config.client_side_validation && id.nil?
|
397
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.deprecate_unit_of_measure"
|
398
|
+
end
|
399
|
+
# resource path
|
400
|
+
local_var_path = '/unitsOfMeasure/{id}/deprecate'.sub('{' + 'id' + '}', id.to_s)
|
401
|
+
|
402
|
+
# query parameters
|
403
|
+
query_params = {}
|
404
|
+
|
405
|
+
# header parameters
|
406
|
+
header_params = {}
|
407
|
+
# HTTP header 'Accept' (if needed)
|
408
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
409
|
+
|
410
|
+
# form parameters
|
411
|
+
form_params = {}
|
412
|
+
|
413
|
+
# http body (model)
|
414
|
+
post_body = nil
|
415
|
+
auth_names = ['ApiKeyAuth']
|
416
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
417
|
+
:header_params => header_params,
|
418
|
+
:query_params => query_params,
|
419
|
+
:form_params => form_params,
|
420
|
+
:body => post_body,
|
421
|
+
:auth_names => auth_names)
|
422
|
+
if @api_client.config.debugging
|
423
|
+
@api_client.config.logger.debug "API called: SettingsApi#deprecate_unit_of_measure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
424
|
+
end
|
425
|
+
return data, status_code, headers
|
426
|
+
end
|
427
|
+
# Get payment term settings
|
428
|
+
#
|
429
|
+
# @param [Hash] opts the optional parameters
|
430
|
+
# @return [nil]
|
431
|
+
def get_payment_term_settings(opts = {})
|
432
|
+
get_payment_term_settings_with_http_info(opts)
|
433
|
+
nil
|
434
|
+
end
|
435
|
+
|
436
|
+
# Get payment term settings
|
437
|
+
#
|
438
|
+
# @param [Hash] opts the optional parameters
|
439
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
440
|
+
def get_payment_term_settings_with_http_info(opts = {})
|
441
|
+
if @api_client.config.debugging
|
442
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_payment_term_settings ...'
|
443
|
+
end
|
444
|
+
# resource path
|
445
|
+
local_var_path = '/settings/paymentTerms'
|
446
|
+
|
447
|
+
# query parameters
|
448
|
+
query_params = {}
|
449
|
+
|
450
|
+
# header parameters
|
451
|
+
header_params = {}
|
452
|
+
# HTTP header 'Accept' (if needed)
|
453
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
454
|
+
|
455
|
+
# form parameters
|
456
|
+
form_params = {}
|
457
|
+
|
458
|
+
# http body (model)
|
459
|
+
post_body = nil
|
460
|
+
auth_names = ['ApiKeyAuth']
|
461
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
462
|
+
:header_params => header_params,
|
463
|
+
:query_params => query_params,
|
464
|
+
:form_params => form_params,
|
465
|
+
:body => post_body,
|
466
|
+
:auth_names => auth_names)
|
467
|
+
if @api_client.config.debugging
|
468
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_payment_term_settings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
469
|
+
end
|
470
|
+
return data, status_code, headers
|
471
|
+
end
|
472
|
+
# Get supported currencies
|
473
|
+
# Get supported currencies for your tenant
|
474
|
+
# @param [Hash] opts the optional parameters
|
475
|
+
# @return [nil]
|
476
|
+
def get_supported_currencies(opts = {})
|
477
|
+
get_supported_currencies_with_http_info(opts)
|
478
|
+
nil
|
479
|
+
end
|
480
|
+
|
481
|
+
# Get supported currencies
|
482
|
+
# Get supported currencies for your tenant
|
483
|
+
# @param [Hash] opts the optional parameters
|
484
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
485
|
+
def get_supported_currencies_with_http_info(opts = {})
|
486
|
+
if @api_client.config.debugging
|
487
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_supported_currencies ...'
|
488
|
+
end
|
489
|
+
# resource path
|
490
|
+
local_var_path = '/settings/supportedCurrencies'
|
491
|
+
|
492
|
+
# query parameters
|
493
|
+
query_params = {}
|
494
|
+
|
495
|
+
# header parameters
|
496
|
+
header_params = {}
|
497
|
+
# HTTP header 'Accept' (if needed)
|
498
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
499
|
+
|
500
|
+
# form parameters
|
501
|
+
form_params = {}
|
502
|
+
|
503
|
+
# http body (model)
|
504
|
+
post_body = nil
|
505
|
+
auth_names = ['ApiKeyAuth']
|
506
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
507
|
+
:header_params => header_params,
|
508
|
+
:query_params => query_params,
|
509
|
+
:form_params => form_params,
|
510
|
+
:body => post_body,
|
511
|
+
:auth_names => auth_names)
|
512
|
+
if @api_client.config.debugging
|
513
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_supported_currencies\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
514
|
+
end
|
515
|
+
return data, status_code, headers
|
516
|
+
end
|
517
|
+
# Get tax rate by Id
|
518
|
+
# Retrieves the tax rate object by Id
|
519
|
+
# @param id
|
520
|
+
# @param [Hash] opts the optional parameters
|
521
|
+
# @return [TaxRatePaginationResponseJson]
|
522
|
+
def get_tax_rate(id, opts = {})
|
523
|
+
data, _status_code, _headers = get_tax_rate_with_http_info(id, opts)
|
524
|
+
data
|
525
|
+
end
|
526
|
+
|
527
|
+
# Get tax rate by Id
|
528
|
+
# Retrieves the tax rate object by Id
|
529
|
+
# @param id
|
530
|
+
# @param [Hash] opts the optional parameters
|
531
|
+
# @return [Array<(TaxRatePaginationResponseJson, Fixnum, Hash)>] TaxRatePaginationResponseJson data, response status code and response headers
|
532
|
+
def get_tax_rate_with_http_info(id, opts = {})
|
533
|
+
if @api_client.config.debugging
|
534
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_tax_rate ...'
|
535
|
+
end
|
536
|
+
# verify the required parameter 'id' is set
|
537
|
+
if @api_client.config.client_side_validation && id.nil?
|
538
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.get_tax_rate"
|
539
|
+
end
|
540
|
+
# resource path
|
541
|
+
local_var_path = '/taxrates/{id}'.sub('{' + 'id' + '}', id.to_s)
|
542
|
+
|
543
|
+
# query parameters
|
544
|
+
query_params = {}
|
545
|
+
|
546
|
+
# header parameters
|
547
|
+
header_params = {}
|
548
|
+
# HTTP header 'Accept' (if needed)
|
549
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
550
|
+
|
551
|
+
# form parameters
|
552
|
+
form_params = {}
|
553
|
+
|
554
|
+
# http body (model)
|
555
|
+
post_body = nil
|
556
|
+
auth_names = ['ApiKeyAuth']
|
557
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
558
|
+
:header_params => header_params,
|
559
|
+
:query_params => query_params,
|
560
|
+
:form_params => form_params,
|
561
|
+
:body => post_body,
|
562
|
+
:auth_names => auth_names,
|
563
|
+
:return_type => 'TaxRatePaginationResponseJson')
|
564
|
+
if @api_client.config.debugging
|
565
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_tax_rate\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
566
|
+
end
|
567
|
+
return data, status_code, headers
|
568
|
+
end
|
569
|
+
# Get tax rates
|
570
|
+
# Get all available tax rates. The result is paginated. To retrieve all results pass the cursor returned from a call to the next call until all results are returned.
|
571
|
+
# @param [Hash] opts the optional parameters
|
572
|
+
# @option opts [String] :cursor
|
573
|
+
# @option opts [Integer] :limit
|
574
|
+
# @return [TaxRatePaginationResponseJson]
|
575
|
+
def get_tax_rates(opts = {})
|
576
|
+
data, _status_code, _headers = get_tax_rates_with_http_info(opts)
|
577
|
+
data
|
578
|
+
end
|
579
|
+
|
580
|
+
# Get tax rates
|
581
|
+
# Get all available tax rates. The result is paginated. To retrieve all results pass the cursor returned from a call to the next call until all results are returned.
|
582
|
+
# @param [Hash] opts the optional parameters
|
583
|
+
# @option opts [String] :cursor
|
584
|
+
# @option opts [Integer] :limit
|
585
|
+
# @return [Array<(TaxRatePaginationResponseJson, Fixnum, Hash)>] TaxRatePaginationResponseJson data, response status code and response headers
|
586
|
+
def get_tax_rates_with_http_info(opts = {})
|
587
|
+
if @api_client.config.debugging
|
588
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_tax_rates ...'
|
589
|
+
end
|
590
|
+
# resource path
|
591
|
+
local_var_path = '/taxrates'
|
592
|
+
|
593
|
+
# query parameters
|
594
|
+
query_params = {}
|
595
|
+
query_params[:'cursor'] = opts[:'cursor'] if !opts[:'cursor'].nil?
|
596
|
+
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
|
597
|
+
|
598
|
+
# header parameters
|
599
|
+
header_params = {}
|
600
|
+
# HTTP header 'Accept' (if needed)
|
601
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
602
|
+
|
603
|
+
# form parameters
|
604
|
+
form_params = {}
|
605
|
+
|
606
|
+
# http body (model)
|
607
|
+
post_body = nil
|
608
|
+
auth_names = ['ApiKeyAuth']
|
609
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
610
|
+
:header_params => header_params,
|
611
|
+
:query_params => query_params,
|
612
|
+
:form_params => form_params,
|
613
|
+
:body => post_body,
|
614
|
+
:auth_names => auth_names,
|
615
|
+
:return_type => 'TaxRatePaginationResponseJson')
|
616
|
+
if @api_client.config.debugging
|
617
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_tax_rates\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
618
|
+
end
|
619
|
+
return data, status_code, headers
|
620
|
+
end
|
621
|
+
# Get tenant details
|
622
|
+
# Get the details of the current tenant
|
623
|
+
# @param [Hash] opts the optional parameters
|
624
|
+
# @return [TenantJson]
|
625
|
+
def get_tenant(opts = {})
|
626
|
+
data, _status_code, _headers = get_tenant_with_http_info(opts)
|
627
|
+
data
|
628
|
+
end
|
629
|
+
|
630
|
+
# Get tenant details
|
631
|
+
# Get the details of the current tenant
|
632
|
+
# @param [Hash] opts the optional parameters
|
633
|
+
# @return [Array<(TenantJson, Fixnum, Hash)>] TenantJson data, response status code and response headers
|
634
|
+
def get_tenant_with_http_info(opts = {})
|
635
|
+
if @api_client.config.debugging
|
636
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_tenant ...'
|
637
|
+
end
|
638
|
+
# resource path
|
639
|
+
local_var_path = '/tenants'
|
640
|
+
|
641
|
+
# query parameters
|
642
|
+
query_params = {}
|
643
|
+
|
644
|
+
# header parameters
|
645
|
+
header_params = {}
|
646
|
+
# HTTP header 'Accept' (if needed)
|
647
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
648
|
+
|
649
|
+
# form parameters
|
650
|
+
form_params = {}
|
651
|
+
|
652
|
+
# http body (model)
|
653
|
+
post_body = nil
|
654
|
+
auth_names = ['ApiKeyAuth']
|
655
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
656
|
+
:header_params => header_params,
|
657
|
+
:query_params => query_params,
|
658
|
+
:form_params => form_params,
|
659
|
+
:body => post_body,
|
660
|
+
:auth_names => auth_names,
|
661
|
+
:return_type => 'TenantJson')
|
662
|
+
if @api_client.config.debugging
|
663
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_tenant\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
664
|
+
end
|
665
|
+
return data, status_code, headers
|
666
|
+
end
|
667
|
+
# Get tenant logo
|
668
|
+
# Get the current logo stored
|
669
|
+
# @param [Hash] opts the optional parameters
|
670
|
+
# @return [nil]
|
671
|
+
def get_tenant_logo(opts = {})
|
672
|
+
get_tenant_logo_with_http_info(opts)
|
673
|
+
nil
|
674
|
+
end
|
675
|
+
|
676
|
+
# Get tenant logo
|
677
|
+
# Get the current logo stored
|
678
|
+
# @param [Hash] opts the optional parameters
|
679
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
680
|
+
def get_tenant_logo_with_http_info(opts = {})
|
681
|
+
if @api_client.config.debugging
|
682
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_tenant_logo ...'
|
683
|
+
end
|
684
|
+
# resource path
|
685
|
+
local_var_path = '/tenants/logo'
|
686
|
+
|
687
|
+
# query parameters
|
688
|
+
query_params = {}
|
689
|
+
|
690
|
+
# header parameters
|
691
|
+
header_params = {}
|
692
|
+
# HTTP header 'Accept' (if needed)
|
693
|
+
header_params['Accept'] = @api_client.select_header_accept(['image/png', 'application/json'])
|
694
|
+
|
695
|
+
# form parameters
|
696
|
+
form_params = {}
|
697
|
+
|
698
|
+
# http body (model)
|
699
|
+
post_body = nil
|
700
|
+
auth_names = ['ApiKeyAuth']
|
701
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
702
|
+
:header_params => header_params,
|
703
|
+
:query_params => query_params,
|
704
|
+
:form_params => form_params,
|
705
|
+
:body => post_body,
|
706
|
+
:auth_names => auth_names)
|
707
|
+
if @api_client.config.debugging
|
708
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_tenant_logo\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
709
|
+
end
|
710
|
+
return data, status_code, headers
|
711
|
+
end
|
712
|
+
# Get tenant settings
|
713
|
+
# Returns all tenant settings for your tenant.
|
714
|
+
# @param [Hash] opts the optional parameters
|
715
|
+
# @return [TenantSettingJson]
|
716
|
+
def get_tenant_setting(opts = {})
|
717
|
+
data, _status_code, _headers = get_tenant_setting_with_http_info(opts)
|
718
|
+
data
|
719
|
+
end
|
720
|
+
|
721
|
+
# Get tenant settings
|
722
|
+
# Returns all tenant settings for your tenant.
|
723
|
+
# @param [Hash] opts the optional parameters
|
724
|
+
# @return [Array<(TenantSettingJson, Fixnum, Hash)>] TenantSettingJson data, response status code and response headers
|
725
|
+
def get_tenant_setting_with_http_info(opts = {})
|
726
|
+
if @api_client.config.debugging
|
727
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_tenant_setting ...'
|
728
|
+
end
|
729
|
+
# resource path
|
730
|
+
local_var_path = '/settings'
|
731
|
+
|
732
|
+
# query parameters
|
733
|
+
query_params = {}
|
734
|
+
|
735
|
+
# header parameters
|
736
|
+
header_params = {}
|
737
|
+
# HTTP header 'Accept' (if needed)
|
738
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
739
|
+
|
740
|
+
# form parameters
|
741
|
+
form_params = {}
|
742
|
+
|
743
|
+
# http body (model)
|
744
|
+
post_body = nil
|
745
|
+
auth_names = ['ApiKeyAuth']
|
746
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
747
|
+
:header_params => header_params,
|
748
|
+
:query_params => query_params,
|
749
|
+
:form_params => form_params,
|
750
|
+
:body => post_body,
|
751
|
+
:auth_names => auth_names,
|
752
|
+
:return_type => 'TenantSettingJson')
|
753
|
+
if @api_client.config.debugging
|
754
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_tenant_setting\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
755
|
+
end
|
756
|
+
return data, status_code, headers
|
757
|
+
end
|
758
|
+
# Get predefined terms section detail
|
759
|
+
# Returns predefined terms section detail.
|
760
|
+
# @param id
|
761
|
+
# @param [Hash] opts the optional parameters
|
762
|
+
# @return [DocumentSection]
|
763
|
+
def get_term_section(id, opts = {})
|
764
|
+
data, _status_code, _headers = get_term_section_with_http_info(id, opts)
|
765
|
+
data
|
766
|
+
end
|
767
|
+
|
768
|
+
# Get predefined terms section detail
|
769
|
+
# Returns predefined terms section detail.
|
770
|
+
# @param id
|
771
|
+
# @param [Hash] opts the optional parameters
|
772
|
+
# @return [Array<(DocumentSection, Fixnum, Hash)>] DocumentSection data, response status code and response headers
|
773
|
+
def get_term_section_with_http_info(id, opts = {})
|
774
|
+
if @api_client.config.debugging
|
775
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_term_section ...'
|
776
|
+
end
|
777
|
+
# verify the required parameter 'id' is set
|
778
|
+
if @api_client.config.client_side_validation && id.nil?
|
779
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.get_term_section"
|
780
|
+
end
|
781
|
+
# resource path
|
782
|
+
local_var_path = '/termsections/{id}'.sub('{' + 'id' + '}', id.to_s)
|
783
|
+
|
784
|
+
# query parameters
|
785
|
+
query_params = {}
|
786
|
+
|
787
|
+
# header parameters
|
788
|
+
header_params = {}
|
789
|
+
# HTTP header 'Accept' (if needed)
|
790
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
791
|
+
|
792
|
+
# form parameters
|
793
|
+
form_params = {}
|
794
|
+
|
795
|
+
# http body (model)
|
796
|
+
post_body = nil
|
797
|
+
auth_names = ['ApiKeyAuth']
|
798
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
799
|
+
:header_params => header_params,
|
800
|
+
:query_params => query_params,
|
801
|
+
:form_params => form_params,
|
802
|
+
:body => post_body,
|
803
|
+
:auth_names => auth_names,
|
804
|
+
:return_type => 'DocumentSection')
|
805
|
+
if @api_client.config.debugging
|
806
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_term_section\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
807
|
+
end
|
808
|
+
return data, status_code, headers
|
809
|
+
end
|
810
|
+
# Get predefined terms sections
|
811
|
+
# Returns predefined terms sections.
|
812
|
+
# @param [Hash] opts the optional parameters
|
813
|
+
# @return [DocumentSection]
|
814
|
+
def get_term_sections(opts = {})
|
815
|
+
data, _status_code, _headers = get_term_sections_with_http_info(opts)
|
816
|
+
data
|
817
|
+
end
|
818
|
+
|
819
|
+
# Get predefined terms sections
|
820
|
+
# Returns predefined terms sections.
|
821
|
+
# @param [Hash] opts the optional parameters
|
822
|
+
# @return [Array<(DocumentSection, Fixnum, Hash)>] DocumentSection data, response status code and response headers
|
823
|
+
def get_term_sections_with_http_info(opts = {})
|
824
|
+
if @api_client.config.debugging
|
825
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_term_sections ...'
|
826
|
+
end
|
827
|
+
# resource path
|
828
|
+
local_var_path = '/termsections'
|
829
|
+
|
830
|
+
# query parameters
|
831
|
+
query_params = {}
|
832
|
+
|
833
|
+
# header parameters
|
834
|
+
header_params = {}
|
835
|
+
# HTTP header 'Accept' (if needed)
|
836
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
837
|
+
|
838
|
+
# form parameters
|
839
|
+
form_params = {}
|
840
|
+
|
841
|
+
# http body (model)
|
842
|
+
post_body = nil
|
843
|
+
auth_names = ['ApiKeyAuth']
|
844
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
845
|
+
:header_params => header_params,
|
846
|
+
:query_params => query_params,
|
847
|
+
:form_params => form_params,
|
848
|
+
:body => post_body,
|
849
|
+
:auth_names => auth_names,
|
850
|
+
:return_type => 'DocumentSection')
|
851
|
+
if @api_client.config.debugging
|
852
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_term_sections\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
853
|
+
end
|
854
|
+
return data, status_code, headers
|
855
|
+
end
|
856
|
+
# Get units of measure
|
857
|
+
# Returns a paginated list of units of measure
|
858
|
+
# @param [Hash] opts the optional parameters
|
859
|
+
# @option opts [String] :cursor
|
860
|
+
# @option opts [Integer] :limit
|
861
|
+
# @return [UnitOfMeasurePaginationResponseJson]
|
862
|
+
def get_units_of_measure(opts = {})
|
863
|
+
data, _status_code, _headers = get_units_of_measure_with_http_info(opts)
|
864
|
+
data
|
865
|
+
end
|
866
|
+
|
867
|
+
# Get units of measure
|
868
|
+
# Returns a paginated list of units of measure
|
869
|
+
# @param [Hash] opts the optional parameters
|
870
|
+
# @option opts [String] :cursor
|
871
|
+
# @option opts [Integer] :limit
|
872
|
+
# @return [Array<(UnitOfMeasurePaginationResponseJson, Fixnum, Hash)>] UnitOfMeasurePaginationResponseJson data, response status code and response headers
|
873
|
+
def get_units_of_measure_with_http_info(opts = {})
|
874
|
+
if @api_client.config.debugging
|
875
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.get_units_of_measure ...'
|
876
|
+
end
|
877
|
+
# resource path
|
878
|
+
local_var_path = '/unitsOfMeasure'
|
879
|
+
|
880
|
+
# query parameters
|
881
|
+
query_params = {}
|
882
|
+
query_params[:'cursor'] = opts[:'cursor'] if !opts[:'cursor'].nil?
|
883
|
+
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
|
884
|
+
|
885
|
+
# header parameters
|
886
|
+
header_params = {}
|
887
|
+
# HTTP header 'Accept' (if needed)
|
888
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
889
|
+
|
890
|
+
# form parameters
|
891
|
+
form_params = {}
|
892
|
+
|
893
|
+
# http body (model)
|
894
|
+
post_body = nil
|
895
|
+
auth_names = ['ApiKeyAuth']
|
896
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
897
|
+
:header_params => header_params,
|
898
|
+
:query_params => query_params,
|
899
|
+
:form_params => form_params,
|
900
|
+
:body => post_body,
|
901
|
+
:auth_names => auth_names,
|
902
|
+
:return_type => 'UnitOfMeasurePaginationResponseJson')
|
903
|
+
if @api_client.config.debugging
|
904
|
+
@api_client.config.logger.debug "API called: SettingsApi#get_units_of_measure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
905
|
+
end
|
906
|
+
return data, status_code, headers
|
907
|
+
end
|
908
|
+
# Update payment term settings
|
909
|
+
#
|
910
|
+
# @param body json representation of the payment term settings
|
911
|
+
# @param [Hash] opts the optional parameters
|
912
|
+
# @return [nil]
|
913
|
+
def update_payment_term_settings(body, opts = {})
|
914
|
+
update_payment_term_settings_with_http_info(body, opts)
|
915
|
+
nil
|
916
|
+
end
|
917
|
+
|
918
|
+
# Update payment term settings
|
919
|
+
#
|
920
|
+
# @param body json representation of the payment term settings
|
921
|
+
# @param [Hash] opts the optional parameters
|
922
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
923
|
+
def update_payment_term_settings_with_http_info(body, opts = {})
|
924
|
+
if @api_client.config.debugging
|
925
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.update_payment_term_settings ...'
|
926
|
+
end
|
927
|
+
# verify the required parameter 'body' is set
|
928
|
+
if @api_client.config.client_side_validation && body.nil?
|
929
|
+
fail ArgumentError, "Missing the required parameter 'body' when calling SettingsApi.update_payment_term_settings"
|
930
|
+
end
|
931
|
+
# resource path
|
932
|
+
local_var_path = '/settings/paymentTerms'
|
933
|
+
|
934
|
+
# query parameters
|
935
|
+
query_params = {}
|
936
|
+
|
937
|
+
# header parameters
|
938
|
+
header_params = {}
|
939
|
+
# HTTP header 'Accept' (if needed)
|
940
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
941
|
+
|
942
|
+
# form parameters
|
943
|
+
form_params = {}
|
944
|
+
|
945
|
+
# http body (model)
|
946
|
+
post_body = @api_client.object_to_http_body(body)
|
947
|
+
auth_names = ['ApiKeyAuth']
|
948
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
949
|
+
:header_params => header_params,
|
950
|
+
:query_params => query_params,
|
951
|
+
:form_params => form_params,
|
952
|
+
:body => post_body,
|
953
|
+
:auth_names => auth_names)
|
954
|
+
if @api_client.config.debugging
|
955
|
+
@api_client.config.logger.debug "API called: SettingsApi#update_payment_term_settings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
956
|
+
end
|
957
|
+
return data, status_code, headers
|
958
|
+
end
|
959
|
+
# Update supported currencies
|
960
|
+
# Update supported currencies for your tenant
|
961
|
+
# @param [Hash] opts the optional parameters
|
962
|
+
# @option opts [Array<String>] :body
|
963
|
+
# @return [nil]
|
964
|
+
def update_supported_currencies(opts = {})
|
965
|
+
update_supported_currencies_with_http_info(opts)
|
966
|
+
nil
|
967
|
+
end
|
968
|
+
|
969
|
+
# Update supported currencies
|
970
|
+
# Update supported currencies for your tenant
|
971
|
+
# @param [Hash] opts the optional parameters
|
972
|
+
# @option opts [Array<String>] :body
|
973
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
974
|
+
def update_supported_currencies_with_http_info(opts = {})
|
975
|
+
if @api_client.config.debugging
|
976
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.update_supported_currencies ...'
|
977
|
+
end
|
978
|
+
# resource path
|
979
|
+
local_var_path = '/settings/supportedCurrencies'
|
980
|
+
|
981
|
+
# query parameters
|
982
|
+
query_params = {}
|
983
|
+
|
984
|
+
# header parameters
|
985
|
+
header_params = {}
|
986
|
+
# HTTP header 'Accept' (if needed)
|
987
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
988
|
+
|
989
|
+
# form parameters
|
990
|
+
form_params = {}
|
991
|
+
|
992
|
+
# http body (model)
|
993
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
994
|
+
auth_names = ['ApiKeyAuth']
|
995
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
996
|
+
:header_params => header_params,
|
997
|
+
:query_params => query_params,
|
998
|
+
:form_params => form_params,
|
999
|
+
:body => post_body,
|
1000
|
+
:auth_names => auth_names)
|
1001
|
+
if @api_client.config.debugging
|
1002
|
+
@api_client.config.logger.debug "API called: SettingsApi#update_supported_currencies\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1003
|
+
end
|
1004
|
+
return data, status_code, headers
|
1005
|
+
end
|
1006
|
+
# Update tax rate
|
1007
|
+
# Updates the specific tax rate object
|
1008
|
+
# @param id
|
1009
|
+
# @param [Hash] opts the optional parameters
|
1010
|
+
# @option opts [TaxRateJson] :body
|
1011
|
+
# @return [nil]
|
1012
|
+
def update_tax_rate(id, opts = {})
|
1013
|
+
update_tax_rate_with_http_info(id, opts)
|
1014
|
+
nil
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
# Update tax rate
|
1018
|
+
# Updates the specific tax rate object
|
1019
|
+
# @param id
|
1020
|
+
# @param [Hash] opts the optional parameters
|
1021
|
+
# @option opts [TaxRateJson] :body
|
1022
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1023
|
+
def update_tax_rate_with_http_info(id, opts = {})
|
1024
|
+
if @api_client.config.debugging
|
1025
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.update_tax_rate ...'
|
1026
|
+
end
|
1027
|
+
# verify the required parameter 'id' is set
|
1028
|
+
if @api_client.config.client_side_validation && id.nil?
|
1029
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.update_tax_rate"
|
1030
|
+
end
|
1031
|
+
# resource path
|
1032
|
+
local_var_path = '/taxrates/{id}'.sub('{' + 'id' + '}', id.to_s)
|
1033
|
+
|
1034
|
+
# query parameters
|
1035
|
+
query_params = {}
|
1036
|
+
|
1037
|
+
# header parameters
|
1038
|
+
header_params = {}
|
1039
|
+
# HTTP header 'Accept' (if needed)
|
1040
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1041
|
+
# HTTP header 'Content-Type'
|
1042
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1043
|
+
|
1044
|
+
# form parameters
|
1045
|
+
form_params = {}
|
1046
|
+
|
1047
|
+
# http body (model)
|
1048
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
1049
|
+
auth_names = ['ApiKeyAuth']
|
1050
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
1051
|
+
:header_params => header_params,
|
1052
|
+
:query_params => query_params,
|
1053
|
+
:form_params => form_params,
|
1054
|
+
:body => post_body,
|
1055
|
+
:auth_names => auth_names)
|
1056
|
+
if @api_client.config.debugging
|
1057
|
+
@api_client.config.logger.debug "API called: SettingsApi#update_tax_rate\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1058
|
+
end
|
1059
|
+
return data, status_code, headers
|
1060
|
+
end
|
1061
|
+
# Update tenant details
|
1062
|
+
# Updates the details of the current tenant based on the input
|
1063
|
+
# @param [Hash] opts the optional parameters
|
1064
|
+
# @option opts [TenantJson] :body
|
1065
|
+
# @return [nil]
|
1066
|
+
def update_tenant(opts = {})
|
1067
|
+
update_tenant_with_http_info(opts)
|
1068
|
+
nil
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
# Update tenant details
|
1072
|
+
# Updates the details of the current tenant based on the input
|
1073
|
+
# @param [Hash] opts the optional parameters
|
1074
|
+
# @option opts [TenantJson] :body
|
1075
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1076
|
+
def update_tenant_with_http_info(opts = {})
|
1077
|
+
if @api_client.config.debugging
|
1078
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.update_tenant ...'
|
1079
|
+
end
|
1080
|
+
# resource path
|
1081
|
+
local_var_path = '/tenants'
|
1082
|
+
|
1083
|
+
# query parameters
|
1084
|
+
query_params = {}
|
1085
|
+
|
1086
|
+
# header parameters
|
1087
|
+
header_params = {}
|
1088
|
+
# HTTP header 'Accept' (if needed)
|
1089
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1090
|
+
# HTTP header 'Content-Type'
|
1091
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
1092
|
+
|
1093
|
+
# form parameters
|
1094
|
+
form_params = {}
|
1095
|
+
|
1096
|
+
# http body (model)
|
1097
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
1098
|
+
auth_names = ['ApiKeyAuth']
|
1099
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
1100
|
+
:header_params => header_params,
|
1101
|
+
:query_params => query_params,
|
1102
|
+
:form_params => form_params,
|
1103
|
+
:body => post_body,
|
1104
|
+
:auth_names => auth_names)
|
1105
|
+
if @api_client.config.debugging
|
1106
|
+
@api_client.config.logger.debug "API called: SettingsApi#update_tenant\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1107
|
+
end
|
1108
|
+
return data, status_code, headers
|
1109
|
+
end
|
1110
|
+
# Update tenant settings
|
1111
|
+
# Updates settings for your tenant.
|
1112
|
+
# @param body json representation of the settings
|
1113
|
+
# @param [Hash] opts the optional parameters
|
1114
|
+
# @return [nil]
|
1115
|
+
def update_tenant_setting(body, opts = {})
|
1116
|
+
update_tenant_setting_with_http_info(body, opts)
|
1117
|
+
nil
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
# Update tenant settings
|
1121
|
+
# Updates settings for your tenant.
|
1122
|
+
# @param body json representation of the settings
|
1123
|
+
# @param [Hash] opts the optional parameters
|
1124
|
+
# @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers
|
1125
|
+
def update_tenant_setting_with_http_info(body, opts = {})
|
1126
|
+
if @api_client.config.debugging
|
1127
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.update_tenant_setting ...'
|
1128
|
+
end
|
1129
|
+
# verify the required parameter 'body' is set
|
1130
|
+
if @api_client.config.client_side_validation && body.nil?
|
1131
|
+
fail ArgumentError, "Missing the required parameter 'body' when calling SettingsApi.update_tenant_setting"
|
1132
|
+
end
|
1133
|
+
# resource path
|
1134
|
+
local_var_path = '/settings'
|
1135
|
+
|
1136
|
+
# query parameters
|
1137
|
+
query_params = {}
|
1138
|
+
|
1139
|
+
# header parameters
|
1140
|
+
header_params = {}
|
1141
|
+
# HTTP header 'Accept' (if needed)
|
1142
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1143
|
+
|
1144
|
+
# form parameters
|
1145
|
+
form_params = {}
|
1146
|
+
|
1147
|
+
# http body (model)
|
1148
|
+
post_body = @api_client.object_to_http_body(body)
|
1149
|
+
auth_names = ['ApiKeyAuth']
|
1150
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
1151
|
+
:header_params => header_params,
|
1152
|
+
:query_params => query_params,
|
1153
|
+
:form_params => form_params,
|
1154
|
+
:body => post_body,
|
1155
|
+
:auth_names => auth_names)
|
1156
|
+
if @api_client.config.debugging
|
1157
|
+
@api_client.config.logger.debug "API called: SettingsApi#update_tenant_setting\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1158
|
+
end
|
1159
|
+
return data, status_code, headers
|
1160
|
+
end
|
1161
|
+
# Update predefined terms section
|
1162
|
+
# Updates the predefined terms section specified.
|
1163
|
+
# @param id
|
1164
|
+
# @param [Hash] opts the optional parameters
|
1165
|
+
# @option opts [DocumentSection] :body
|
1166
|
+
# @return [DocumentSection]
|
1167
|
+
def update_term_section(id, opts = {})
|
1168
|
+
data, _status_code, _headers = update_term_section_with_http_info(id, opts)
|
1169
|
+
data
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
# Update predefined terms section
|
1173
|
+
# Updates the predefined terms section specified.
|
1174
|
+
# @param id
|
1175
|
+
# @param [Hash] opts the optional parameters
|
1176
|
+
# @option opts [DocumentSection] :body
|
1177
|
+
# @return [Array<(DocumentSection, Fixnum, Hash)>] DocumentSection data, response status code and response headers
|
1178
|
+
def update_term_section_with_http_info(id, opts = {})
|
1179
|
+
if @api_client.config.debugging
|
1180
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.update_term_section ...'
|
1181
|
+
end
|
1182
|
+
# verify the required parameter 'id' is set
|
1183
|
+
if @api_client.config.client_side_validation && id.nil?
|
1184
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.update_term_section"
|
1185
|
+
end
|
1186
|
+
# resource path
|
1187
|
+
local_var_path = '/termsections/{id}'.sub('{' + 'id' + '}', id.to_s)
|
1188
|
+
|
1189
|
+
# query parameters
|
1190
|
+
query_params = {}
|
1191
|
+
|
1192
|
+
# header parameters
|
1193
|
+
header_params = {}
|
1194
|
+
# HTTP header 'Accept' (if needed)
|
1195
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1196
|
+
|
1197
|
+
# form parameters
|
1198
|
+
form_params = {}
|
1199
|
+
|
1200
|
+
# http body (model)
|
1201
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
1202
|
+
auth_names = ['ApiKeyAuth']
|
1203
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
1204
|
+
:header_params => header_params,
|
1205
|
+
:query_params => query_params,
|
1206
|
+
:form_params => form_params,
|
1207
|
+
:body => post_body,
|
1208
|
+
:auth_names => auth_names,
|
1209
|
+
:return_type => 'DocumentSection')
|
1210
|
+
if @api_client.config.debugging
|
1211
|
+
@api_client.config.logger.debug "API called: SettingsApi#update_term_section\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1212
|
+
end
|
1213
|
+
return data, status_code, headers
|
1214
|
+
end
|
1215
|
+
# Update unit of measure
|
1216
|
+
# Update the unit of measure by Id provided.
|
1217
|
+
# @param id
|
1218
|
+
# @param [Hash] opts the optional parameters
|
1219
|
+
# @option opts [UnitOfMeasureJson] :body
|
1220
|
+
# @return [UnitOfMeasureJson]
|
1221
|
+
def update_unit_of_measure(id, opts = {})
|
1222
|
+
data, _status_code, _headers = update_unit_of_measure_with_http_info(id, opts)
|
1223
|
+
data
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
# Update unit of measure
|
1227
|
+
# Update the unit of measure by Id provided.
|
1228
|
+
# @param id
|
1229
|
+
# @param [Hash] opts the optional parameters
|
1230
|
+
# @option opts [UnitOfMeasureJson] :body
|
1231
|
+
# @return [Array<(UnitOfMeasureJson, Fixnum, Hash)>] UnitOfMeasureJson data, response status code and response headers
|
1232
|
+
def update_unit_of_measure_with_http_info(id, opts = {})
|
1233
|
+
if @api_client.config.debugging
|
1234
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.update_unit_of_measure ...'
|
1235
|
+
end
|
1236
|
+
# verify the required parameter 'id' is set
|
1237
|
+
if @api_client.config.client_side_validation && id.nil?
|
1238
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling SettingsApi.update_unit_of_measure"
|
1239
|
+
end
|
1240
|
+
# resource path
|
1241
|
+
local_var_path = '/unitsOfMeasure/{id}'.sub('{' + 'id' + '}', id.to_s)
|
1242
|
+
|
1243
|
+
# query parameters
|
1244
|
+
query_params = {}
|
1245
|
+
|
1246
|
+
# header parameters
|
1247
|
+
header_params = {}
|
1248
|
+
# HTTP header 'Accept' (if needed)
|
1249
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1250
|
+
|
1251
|
+
# form parameters
|
1252
|
+
form_params = {}
|
1253
|
+
|
1254
|
+
# http body (model)
|
1255
|
+
post_body = @api_client.object_to_http_body(opts[:'body'])
|
1256
|
+
auth_names = ['ApiKeyAuth']
|
1257
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
1258
|
+
:header_params => header_params,
|
1259
|
+
:query_params => query_params,
|
1260
|
+
:form_params => form_params,
|
1261
|
+
:body => post_body,
|
1262
|
+
:auth_names => auth_names,
|
1263
|
+
:return_type => 'UnitOfMeasureJson')
|
1264
|
+
if @api_client.config.debugging
|
1265
|
+
@api_client.config.logger.debug "API called: SettingsApi#update_unit_of_measure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1266
|
+
end
|
1267
|
+
return data, status_code, headers
|
1268
|
+
end
|
1269
|
+
# Update tenant logo
|
1270
|
+
# Updates the logo used in external facing communication such as order forms and invoices
|
1271
|
+
# @param [Hash] opts the optional parameters
|
1272
|
+
# @option opts [File] :file
|
1273
|
+
# @return [TenantJson]
|
1274
|
+
def upload_tenant_logo(opts = {})
|
1275
|
+
data, _status_code, _headers = upload_tenant_logo_with_http_info(opts)
|
1276
|
+
data
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
# Update tenant logo
|
1280
|
+
# Updates the logo used in external facing communication such as order forms and invoices
|
1281
|
+
# @param [Hash] opts the optional parameters
|
1282
|
+
# @option opts [File] :file
|
1283
|
+
# @return [Array<(TenantJson, Fixnum, Hash)>] TenantJson data, response status code and response headers
|
1284
|
+
def upload_tenant_logo_with_http_info(opts = {})
|
1285
|
+
if @api_client.config.debugging
|
1286
|
+
@api_client.config.logger.debug 'Calling API: SettingsApi.upload_tenant_logo ...'
|
1287
|
+
end
|
1288
|
+
# resource path
|
1289
|
+
local_var_path = '/tenants/logo'
|
1290
|
+
|
1291
|
+
# query parameters
|
1292
|
+
query_params = {}
|
1293
|
+
|
1294
|
+
# header parameters
|
1295
|
+
header_params = {}
|
1296
|
+
# HTTP header 'Accept' (if needed)
|
1297
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1298
|
+
# HTTP header 'Content-Type'
|
1299
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['multipart/form-data'])
|
1300
|
+
|
1301
|
+
# form parameters
|
1302
|
+
form_params = {}
|
1303
|
+
form_params['file'] = opts[:'file'] if !opts[:'file'].nil?
|
1304
|
+
|
1305
|
+
# http body (model)
|
1306
|
+
post_body = nil
|
1307
|
+
auth_names = ['ApiKeyAuth']
|
1308
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
|
1309
|
+
:header_params => header_params,
|
1310
|
+
:query_params => query_params,
|
1311
|
+
:form_params => form_params,
|
1312
|
+
:body => post_body,
|
1313
|
+
:auth_names => auth_names,
|
1314
|
+
:return_type => 'TenantJson')
|
1315
|
+
if @api_client.config.debugging
|
1316
|
+
@api_client.config.logger.debug "API called: SettingsApi#upload_tenant_logo\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1317
|
+
end
|
1318
|
+
return data, status_code, headers
|
1319
|
+
end
|
1320
|
+
end
|
1321
|
+
end
|