maxio-advanced-billing-sdk 0.0.3 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +28 -0
- data/README.md +374 -0
- data/lib/advanced_billing/api_helper.rb +10 -0
- data/lib/advanced_billing/client.rb +242 -0
- data/lib/advanced_billing/configuration.rb +123 -0
- data/lib/advanced_billing/controllers/advance_invoice_controller.rb +115 -0
- data/lib/advanced_billing/controllers/api_exports_controller.rb +262 -0
- data/lib/advanced_billing/controllers/base_controller.rb +75 -0
- data/lib/advanced_billing/controllers/billing_portal_controller.rb +162 -0
- data/lib/advanced_billing/controllers/components_controller.rb +908 -0
- data/lib/advanced_billing/controllers/coupons_controller.rb +667 -0
- data/lib/advanced_billing/controllers/custom_fields_controller.rb +448 -0
- data/lib/advanced_billing/controllers/customers_controller.rb +246 -0
- data/lib/advanced_billing/controllers/events_based_billing_segments_controller.rb +298 -0
- data/lib/advanced_billing/controllers/events_controller.rb +226 -0
- data/lib/advanced_billing/controllers/insights_controller.rb +161 -0
- data/lib/advanced_billing/controllers/invoices_controller.rb +947 -0
- data/lib/advanced_billing/controllers/offers_controller.rb +135 -0
- data/lib/advanced_billing/controllers/payment_profiles_controller.rb +745 -0
- data/lib/advanced_billing/controllers/product_families_controller.rb +187 -0
- data/lib/advanced_billing/controllers/product_price_points_controller.rb +461 -0
- data/lib/advanced_billing/controllers/products_controller.rb +224 -0
- data/lib/advanced_billing/controllers/proforma_invoices_controller.rb +359 -0
- data/lib/advanced_billing/controllers/reason_codes_controller.rb +154 -0
- data/lib/advanced_billing/controllers/referral_codes_controller.rb +41 -0
- data/lib/advanced_billing/controllers/sales_commissions_controller.rb +189 -0
- data/lib/advanced_billing/controllers/sites_controller.rb +90 -0
- data/lib/advanced_billing/controllers/subscription_components_controller.rb +982 -0
- data/lib/advanced_billing/controllers/subscription_group_invoice_account_controller.rb +155 -0
- data/lib/advanced_billing/controllers/subscription_group_status_controller.rb +157 -0
- data/lib/advanced_billing/controllers/subscription_groups_controller.rb +295 -0
- data/lib/advanced_billing/controllers/subscription_invoice_account_controller.rb +216 -0
- data/lib/advanced_billing/controllers/subscription_notes_controller.rb +156 -0
- data/lib/advanced_billing/controllers/subscription_products_controller.rb +166 -0
- data/lib/advanced_billing/controllers/subscription_status_controller.rb +479 -0
- data/lib/advanced_billing/controllers/subscriptions_controller.rb +1345 -0
- data/lib/advanced_billing/controllers/webhooks_controller.rb +206 -0
- data/lib/advanced_billing/exceptions/api_exception.rb +10 -0
- data/lib/advanced_billing/exceptions/component_allocation_error_exception.rb +41 -0
- data/lib/advanced_billing/exceptions/component_price_point_error_exception.rb +41 -0
- data/lib/advanced_billing/exceptions/customer_error_response_exception.rb +34 -0
- data/lib/advanced_billing/exceptions/error_array_map_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/error_list_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/error_string_map_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/event_based_billing_list_segments_errors_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/event_based_billing_segment_errors_exception.rb +35 -0
- data/lib/advanced_billing/exceptions/event_based_billing_segment_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/product_price_point_error_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/proforma_bad_request_error_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/refund_prepayment_aggregated_errors_response_exception.rb +33 -0
- data/lib/advanced_billing/exceptions/refund_prepayment_base_errors_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/single_error_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/single_string_error_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/subscription_add_coupon_error_exception.rb +47 -0
- data/lib/advanced_billing/exceptions/subscription_component_allocation_error_exception.rb +41 -0
- data/lib/advanced_billing/exceptions/subscription_group_signup_error_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/subscription_group_update_error_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/subscription_remove_coupon_errors_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/subscriptions_mrr_error_response_exception.rb +32 -0
- data/lib/advanced_billing/exceptions/too_many_management_link_requests_error_exception.rb +32 -0
- data/lib/advanced_billing/http/auth/basic_auth.rb +29 -0
- data/lib/advanced_billing/http/http_call_back.rb +10 -0
- data/lib/advanced_billing/http/http_method_enum.rb +10 -0
- data/lib/advanced_billing/http/http_request.rb +10 -0
- data/lib/advanced_billing/http/http_response.rb +10 -0
- data/lib/advanced_billing/models/account_balance.rb +51 -0
- data/lib/advanced_billing/models/account_balances.rb +83 -0
- data/lib/advanced_billing/models/ach_agreement.rb +88 -0
- data/lib/advanced_billing/models/activate_subscription_request.rb +57 -0
- data/lib/advanced_billing/models/add_coupons_request.rb +50 -0
- data/lib/advanced_billing/models/add_subscription_to_a_group.rb +62 -0
- data/lib/advanced_billing/models/address_change.rb +79 -0
- data/lib/advanced_billing/models/agreement_acceptance.rb +117 -0
- data/lib/advanced_billing/models/allocate_components.rb +151 -0
- data/lib/advanced_billing/models/allocation.rb +340 -0
- data/lib/advanced_billing/models/allocation_expiration_date.rb +50 -0
- data/lib/advanced_billing/models/allocation_preview.rb +197 -0
- data/lib/advanced_billing/models/allocation_preview_direction.rb +23 -0
- data/lib/advanced_billing/models/allocation_preview_item.rb +272 -0
- data/lib/advanced_billing/models/allocation_preview_line_item.rb +135 -0
- data/lib/advanced_billing/models/allocation_preview_line_item_kind.rb +29 -0
- data/lib/advanced_billing/models/allocation_preview_response.rb +49 -0
- data/lib/advanced_billing/models/allocation_response.rb +50 -0
- data/lib/advanced_billing/models/allocation_settings.rb +79 -0
- data/lib/advanced_billing/models/applied_credit_note_data.rb +60 -0
- data/lib/advanced_billing/models/apply_credit_note_event_data.rb +198 -0
- data/lib/advanced_billing/models/apply_debit_note_event_data.rb +111 -0
- data/lib/advanced_billing/models/apply_payment_event_data.rb +198 -0
- data/lib/advanced_billing/models/attribute_error.rb +48 -0
- data/lib/advanced_billing/models/auto_invite.rb +23 -0
- data/lib/advanced_billing/models/auto_resume.rb +61 -0
- data/lib/advanced_billing/models/bank_account_attributes.rb +175 -0
- data/lib/advanced_billing/models/bank_account_holder_type.rb +23 -0
- data/lib/advanced_billing/models/bank_account_payment_profile.rb +310 -0
- data/lib/advanced_billing/models/bank_account_response.rb +49 -0
- data/lib/advanced_billing/models/bank_account_type.rb +23 -0
- data/lib/advanced_billing/models/bank_account_vault.rb +32 -0
- data/lib/advanced_billing/models/bank_account_verification.rb +62 -0
- data/lib/advanced_billing/models/bank_account_verification_request.rb +50 -0
- data/lib/advanced_billing/models/base_model.rb +62 -0
- data/lib/advanced_billing/models/base_refund_error.rb +50 -0
- data/lib/advanced_billing/models/base_string_error.rb +50 -0
- data/lib/advanced_billing/models/basic_date_field.rb +23 -0
- data/lib/advanced_billing/models/batch_job.rb +94 -0
- data/lib/advanced_billing/models/batch_job_response.rb +48 -0
- data/lib/advanced_billing/models/billing_address.rb +107 -0
- data/lib/advanced_billing/models/billing_manifest.rb +147 -0
- data/lib/advanced_billing/models/billing_manifest_item.rb +189 -0
- data/lib/advanced_billing/models/billing_manifest_line_item_kind.rb +35 -0
- data/lib/advanced_billing/models/billing_schedule.rb +55 -0
- data/lib/advanced_billing/models/breakouts.rb +84 -0
- data/lib/advanced_billing/models/bulk_component_s_price_point_assignment.rb +59 -0
- data/lib/advanced_billing/models/bulk_create_product_price_points_request.rb +57 -0
- data/lib/advanced_billing/models/bulk_create_product_price_points_response.rb +59 -0
- data/lib/advanced_billing/models/bulk_create_segments.rb +59 -0
- data/lib/advanced_billing/models/bulk_update_segments.rb +59 -0
- data/lib/advanced_billing/models/bulk_update_segments_item.rb +80 -0
- data/lib/advanced_billing/models/calendar_billing.rb +79 -0
- data/lib/advanced_billing/models/cancel_grouped_subscriptions_request.rb +51 -0
- data/lib/advanced_billing/models/cancellation_method.rb +33 -0
- data/lib/advanced_billing/models/cancellation_options.rb +63 -0
- data/lib/advanced_billing/models/cancellation_request.rb +48 -0
- data/lib/advanced_billing/models/card_type.rb +125 -0
- data/lib/advanced_billing/models/change_invoice_collection_method_event_data.rb +81 -0
- data/lib/advanced_billing/models/chargify_ebb.rb +116 -0
- data/lib/advanced_billing/models/cleanup_scope.rb +26 -0
- data/lib/advanced_billing/models/collection_method.rb +32 -0
- data/lib/advanced_billing/models/component.rb +495 -0
- data/lib/advanced_billing/models/component_allocation_change.rb +147 -0
- data/lib/advanced_billing/models/component_allocation_error_item.rb +80 -0
- data/lib/advanced_billing/models/component_cost_data.rb +128 -0
- data/lib/advanced_billing/models/component_cost_data_rate_tier.rb +94 -0
- data/lib/advanced_billing/models/component_currency_price.rb +102 -0
- data/lib/advanced_billing/models/component_currency_prices_response.rb +57 -0
- data/lib/advanced_billing/models/component_custom_price.rb +96 -0
- data/lib/advanced_billing/models/component_kind.rb +32 -0
- data/lib/advanced_billing/models/component_price.rb +127 -0
- data/lib/advanced_billing/models/component_price_point.rb +304 -0
- data/lib/advanced_billing/models/component_price_point_error_item.rb +70 -0
- data/lib/advanced_billing/models/component_price_point_item.rb +119 -0
- data/lib/advanced_billing/models/component_price_point_response.rb +48 -0
- data/lib/advanced_billing/models/component_price_points_response.rb +69 -0
- data/lib/advanced_billing/models/component_response.rb +48 -0
- data/lib/advanced_billing/models/component_s_price_point_assignment.rb +72 -0
- data/lib/advanced_billing/models/compounding_strategy.rb +23 -0
- data/lib/advanced_billing/models/consolidated_invoice.rb +59 -0
- data/lib/advanced_billing/models/count_response.rb +50 -0
- data/lib/advanced_billing/models/coupon.rb +384 -0
- data/lib/advanced_billing/models/coupon_currency.rb +80 -0
- data/lib/advanced_billing/models/coupon_currency_request.rb +57 -0
- data/lib/advanced_billing/models/coupon_currency_response.rb +59 -0
- data/lib/advanced_billing/models/coupon_response.rb +50 -0
- data/lib/advanced_billing/models/coupon_restriction.rb +92 -0
- data/lib/advanced_billing/models/coupon_subcodes.rb +50 -0
- data/lib/advanced_billing/models/coupon_subcodes_response.rb +71 -0
- data/lib/advanced_billing/models/coupon_usage.rb +118 -0
- data/lib/advanced_billing/models/create_allocation.rb +198 -0
- data/lib/advanced_billing/models/create_allocation_request.rb +48 -0
- data/lib/advanced_billing/models/create_component_price_point.rb +163 -0
- data/lib/advanced_billing/models/create_component_price_point_request.rb +64 -0
- data/lib/advanced_billing/models/create_component_price_points_request.rb +64 -0
- data/lib/advanced_billing/models/create_currency_price.rb +70 -0
- data/lib/advanced_billing/models/create_currency_prices_request.rb +57 -0
- data/lib/advanced_billing/models/create_customer.rb +221 -0
- data/lib/advanced_billing/models/create_customer_request.rb +48 -0
- data/lib/advanced_billing/models/create_ebb_component.rb +49 -0
- data/lib/advanced_billing/models/create_invoice.rb +168 -0
- data/lib/advanced_billing/models/create_invoice_address.rb +130 -0
- data/lib/advanced_billing/models/create_invoice_coupon.rb +117 -0
- data/lib/advanced_billing/models/create_invoice_item.rb +192 -0
- data/lib/advanced_billing/models/create_invoice_payment.rb +92 -0
- data/lib/advanced_billing/models/create_invoice_payment_application.rb +58 -0
- data/lib/advanced_billing/models/create_invoice_payment_request.rb +59 -0
- data/lib/advanced_billing/models/create_invoice_request.rb +48 -0
- data/lib/advanced_billing/models/create_invoice_status.rb +23 -0
- data/lib/advanced_billing/models/create_metadata.rb +60 -0
- data/lib/advanced_billing/models/create_metadata_request.rb +57 -0
- data/lib/advanced_billing/models/create_metafield.rb +96 -0
- data/lib/advanced_billing/models/create_metafields_request.rb +64 -0
- data/lib/advanced_billing/models/create_metered_component.rb +49 -0
- data/lib/advanced_billing/models/create_multi_invoice_payment.rb +133 -0
- data/lib/advanced_billing/models/create_multi_invoice_payment_request.rb +48 -0
- data/lib/advanced_billing/models/create_offer.rb +117 -0
- data/lib/advanced_billing/models/create_offer_component.rb +61 -0
- data/lib/advanced_billing/models/create_offer_request.rb +48 -0
- data/lib/advanced_billing/models/create_on_off_component.rb +49 -0
- data/lib/advanced_billing/models/create_or_update_coupon.rb +86 -0
- data/lib/advanced_billing/models/create_or_update_flat_amount_coupon.rb +228 -0
- data/lib/advanced_billing/models/create_or_update_percentage_coupon.rb +229 -0
- data/lib/advanced_billing/models/create_or_update_product.rb +146 -0
- data/lib/advanced_billing/models/create_or_update_product_request.rb +48 -0
- data/lib/advanced_billing/models/create_or_update_segment_price.rb +88 -0
- data/lib/advanced_billing/models/create_payment.rb +77 -0
- data/lib/advanced_billing/models/create_payment_profile.rb +430 -0
- data/lib/advanced_billing/models/create_payment_profile_request.rb +49 -0
- data/lib/advanced_billing/models/create_prepaid_component.rb +49 -0
- data/lib/advanced_billing/models/create_prepaid_usage_component_price_point.rb +197 -0
- data/lib/advanced_billing/models/create_prepayment.rb +93 -0
- data/lib/advanced_billing/models/create_prepayment_request.rb +48 -0
- data/lib/advanced_billing/models/create_prepayment_response.rb +48 -0
- data/lib/advanced_billing/models/create_product_currency_price.rb +66 -0
- data/lib/advanced_billing/models/create_product_currency_prices_request.rb +57 -0
- data/lib/advanced_billing/models/create_product_family.rb +62 -0
- data/lib/advanced_billing/models/create_product_family_request.rb +49 -0
- data/lib/advanced_billing/models/create_product_price_point.rb +198 -0
- data/lib/advanced_billing/models/create_product_price_point_request.rb +48 -0
- data/lib/advanced_billing/models/create_quantity_based_component.rb +50 -0
- data/lib/advanced_billing/models/create_reason_code.rb +68 -0
- data/lib/advanced_billing/models/create_reason_code_request.rb +48 -0
- data/lib/advanced_billing/models/create_segment.rb +143 -0
- data/lib/advanced_billing/models/create_segment_request.rb +48 -0
- data/lib/advanced_billing/models/create_subscription.rb +756 -0
- data/lib/advanced_billing/models/create_subscription_component.rb +127 -0
- data/lib/advanced_billing/models/create_subscription_group.rb +75 -0
- data/lib/advanced_billing/models/create_subscription_group_request.rb +49 -0
- data/lib/advanced_billing/models/create_subscription_request.rb +48 -0
- data/lib/advanced_billing/models/create_usage.rb +88 -0
- data/lib/advanced_billing/models/create_usage_request.rb +48 -0
- data/lib/advanced_billing/models/created_prepayment.rb +117 -0
- data/lib/advanced_billing/models/credit_account_balance_changed.rb +122 -0
- data/lib/advanced_billing/models/credit_card_attributes.rb +72 -0
- data/lib/advanced_billing/models/credit_card_payment_profile.rb +306 -0
- data/lib/advanced_billing/models/credit_note.rb +417 -0
- data/lib/advanced_billing/models/credit_note1.rb +409 -0
- data/lib/advanced_billing/models/credit_note_application.rb +92 -0
- data/lib/advanced_billing/models/credit_note_line_item.rb +245 -0
- data/lib/advanced_billing/models/credit_note_status.rb +23 -0
- data/lib/advanced_billing/models/credit_scheme.rb +26 -0
- data/lib/advanced_billing/models/credit_scheme_request.rb +48 -0
- data/lib/advanced_billing/models/credit_type.rb +28 -0
- data/lib/advanced_billing/models/currency_price.rb +102 -0
- data/lib/advanced_billing/models/currency_price_role.rb +26 -0
- data/lib/advanced_billing/models/currency_prices_response.rb +57 -0
- data/lib/advanced_billing/models/current_vault.rb +99 -0
- data/lib/advanced_billing/models/custom_field_owner.rb +23 -0
- data/lib/advanced_billing/models/custom_field_value_change.rb +148 -0
- data/lib/advanced_billing/models/customer.rb +358 -0
- data/lib/advanced_billing/models/customer1.rb +114 -0
- data/lib/advanced_billing/models/customer_attributes.rb +243 -0
- data/lib/advanced_billing/models/customer_change.rb +103 -0
- data/lib/advanced_billing/models/customer_changes_preview_response.rb +48 -0
- data/lib/advanced_billing/models/customer_custom_fields_change.rb +97 -0
- data/lib/advanced_billing/models/customer_error.rb +60 -0
- data/lib/advanced_billing/models/customer_payer_change.rb +79 -0
- data/lib/advanced_billing/models/customer_response.rb +48 -0
- data/lib/advanced_billing/models/deduct_service_credit.rb +81 -0
- data/lib/advanced_billing/models/deduct_service_credit_request.rb +48 -0
- data/lib/advanced_billing/models/delayed_cancellation_response.rb +50 -0
- data/lib/advanced_billing/models/delete_subscription_group_response.rb +60 -0
- data/lib/advanced_billing/models/direction.rb +23 -0
- data/lib/advanced_billing/models/discount_type.rb +23 -0
- data/lib/advanced_billing/models/dunner_data.rb +96 -0
- data/lib/advanced_billing/models/dunning_step_data.rb +120 -0
- data/lib/advanced_billing/models/dunning_step_reached.rb +92 -0
- data/lib/advanced_billing/models/ebb_component.rb +301 -0
- data/lib/advanced_billing/models/ebb_event.rb +50 -0
- data/lib/advanced_billing/models/enable_webhooks_request.rb +49 -0
- data/lib/advanced_billing/models/enable_webhooks_response.rb +51 -0
- data/lib/advanced_billing/models/endpoint.rb +91 -0
- data/lib/advanced_billing/models/endpoint_response.rb +50 -0
- data/lib/advanced_billing/models/errors.rb +60 -0
- data/lib/advanced_billing/models/event.rb +150 -0
- data/lib/advanced_billing/models/event_based_billing_segment_error.rb +51 -0
- data/lib/advanced_billing/models/event_response.rb +48 -0
- data/lib/advanced_billing/models/event_type.rb +121 -0
- data/lib/advanced_billing/models/extended_interval_unit.rb +26 -0
- data/lib/advanced_billing/models/failed_payment_action.rb +37 -0
- data/lib/advanced_billing/models/first_charge_type.rb +26 -0
- data/lib/advanced_billing/models/full_subscription_group_response.rb +171 -0
- data/lib/advanced_billing/models/get_one_time_token_payment_profile.rb +261 -0
- data/lib/advanced_billing/models/get_one_time_token_request.rb +49 -0
- data/lib/advanced_billing/models/group_billing.rb +77 -0
- data/lib/advanced_billing/models/group_settings.rb +75 -0
- data/lib/advanced_billing/models/group_target.rb +62 -0
- data/lib/advanced_billing/models/group_target_type.rb +32 -0
- data/lib/advanced_billing/models/include_not_null.rb +20 -0
- data/lib/advanced_billing/models/include_option.rb +23 -0
- data/lib/advanced_billing/models/interval_unit.rb +23 -0
- data/lib/advanced_billing/models/invoice.rb +734 -0
- data/lib/advanced_billing/models/invoice_address.rb +107 -0
- data/lib/advanced_billing/models/invoice_balance_item.rb +71 -0
- data/lib/advanced_billing/models/invoice_consolidation_level.rb +34 -0
- data/lib/advanced_billing/models/invoice_credit.rb +123 -0
- data/lib/advanced_billing/models/invoice_custom_field.rb +90 -0
- data/lib/advanced_billing/models/invoice_customer.rb +115 -0
- data/lib/advanced_billing/models/invoice_date_field.rb +32 -0
- data/lib/advanced_billing/models/invoice_discount.rb +174 -0
- data/lib/advanced_billing/models/invoice_discount_breakout.rb +72 -0
- data/lib/advanced_billing/models/invoice_display_settings.rb +65 -0
- data/lib/advanced_billing/models/invoice_event.rb +105 -0
- data/lib/advanced_billing/models/invoice_event_data.rb +437 -0
- data/lib/advanced_billing/models/invoice_event_payment.rb +158 -0
- data/lib/advanced_billing/models/invoice_event_payment1.rb +150 -0
- data/lib/advanced_billing/models/invoice_event_payment_method.rb +32 -0
- data/lib/advanced_billing/models/invoice_event_type.rb +59 -0
- data/lib/advanced_billing/models/invoice_issued.rb +258 -0
- data/lib/advanced_billing/models/invoice_line_item.rb +332 -0
- data/lib/advanced_billing/models/invoice_line_item_component_cost_data.rb +69 -0
- data/lib/advanced_billing/models/invoice_line_item_event_data.rb +266 -0
- data/lib/advanced_billing/models/invoice_line_item_pricing_detail.rb +60 -0
- data/lib/advanced_billing/models/invoice_payer.rb +103 -0
- data/lib/advanced_billing/models/invoice_payer_change.rb +80 -0
- data/lib/advanced_billing/models/invoice_payment.rb +158 -0
- data/lib/advanced_billing/models/invoice_payment_application.rb +74 -0
- data/lib/advanced_billing/models/invoice_payment_method.rb +124 -0
- data/lib/advanced_billing/models/invoice_payment_method_type.rb +35 -0
- data/lib/advanced_billing/models/invoice_payment_type.rb +29 -0
- data/lib/advanced_billing/models/invoice_pre_payment.rb +75 -0
- data/lib/advanced_billing/models/invoice_previous_balance.rb +78 -0
- data/lib/advanced_billing/models/invoice_refund.rb +106 -0
- data/lib/advanced_billing/models/invoice_response.rb +48 -0
- data/lib/advanced_billing/models/invoice_role.rb +47 -0
- data/lib/advanced_billing/models/invoice_seller.rb +83 -0
- data/lib/advanced_billing/models/invoice_sort_field.rb +41 -0
- data/lib/advanced_billing/models/invoice_status.rb +37 -0
- data/lib/advanced_billing/models/invoice_tax.rb +172 -0
- data/lib/advanced_billing/models/invoice_tax_breakout.rb +71 -0
- data/lib/advanced_billing/models/invoice_tax_component_breakout.rb +81 -0
- data/lib/advanced_billing/models/issue_advance_invoice_request.rb +50 -0
- data/lib/advanced_billing/models/issue_invoice_event_data.rb +136 -0
- data/lib/advanced_billing/models/issue_invoice_request.rb +63 -0
- data/lib/advanced_billing/models/issue_service_credit.rb +81 -0
- data/lib/advanced_billing/models/issue_service_credit_request.rb +49 -0
- data/lib/advanced_billing/models/item_category.rb +33 -0
- data/lib/advanced_billing/models/item_price_point_changed.rb +133 -0
- data/lib/advanced_billing/models/item_price_point_data.rb +70 -0
- data/lib/advanced_billing/models/line_item_kind.rb +47 -0
- data/lib/advanced_billing/models/line_item_transaction_type.rb +38 -0
- data/lib/advanced_billing/models/list_components_price_points_include.rb +20 -0
- data/lib/advanced_billing/models/list_components_price_points_response.rb +57 -0
- data/lib/advanced_billing/models/list_credit_notes_response.rb +57 -0
- data/lib/advanced_billing/models/list_events_date_field.rb +20 -0
- data/lib/advanced_billing/models/list_invoice_events_response.rb +89 -0
- data/lib/advanced_billing/models/list_invoices_response.rb +57 -0
- data/lib/advanced_billing/models/list_metafields_response.rb +99 -0
- data/lib/advanced_billing/models/list_mrr_response.rb +48 -0
- data/lib/advanced_billing/models/list_mrr_response_result.rb +120 -0
- data/lib/advanced_billing/models/list_offers_response.rb +59 -0
- data/lib/advanced_billing/models/list_product_price_points_response.rb +57 -0
- data/lib/advanced_billing/models/list_products_include.rb +20 -0
- data/lib/advanced_billing/models/list_products_price_points_include.rb +20 -0
- data/lib/advanced_billing/models/list_public_keys_meta.rb +80 -0
- data/lib/advanced_billing/models/list_public_keys_response.rb +69 -0
- data/lib/advanced_billing/models/list_sale_rep_item.rb +93 -0
- data/lib/advanced_billing/models/list_segments_response.rb +59 -0
- data/lib/advanced_billing/models/list_subcription_group_prepayment_item.rb +142 -0
- data/lib/advanced_billing/models/list_subscription_components_include.rb +20 -0
- data/lib/advanced_billing/models/list_subscription_components_response.rb +57 -0
- data/lib/advanced_billing/models/list_subscription_components_sort.rb +23 -0
- data/lib/advanced_billing/models/list_subscription_group_prepayment.rb +49 -0
- data/lib/advanced_billing/models/list_subscription_group_prepayment_date_field.rb +23 -0
- data/lib/advanced_billing/models/list_subscription_group_prepayment_response.rb +57 -0
- data/lib/advanced_billing/models/list_subscription_groups_item.rb +146 -0
- data/lib/advanced_billing/models/list_subscription_groups_meta.rb +60 -0
- data/lib/advanced_billing/models/list_subscription_groups_response.rb +69 -0
- data/lib/advanced_billing/models/metadata.rb +106 -0
- data/lib/advanced_billing/models/metafield.rb +124 -0
- data/lib/advanced_billing/models/metafield_input.rb +33 -0
- data/lib/advanced_billing/models/metafield_scope.rb +113 -0
- data/lib/advanced_billing/models/metered_component.rb +323 -0
- data/lib/advanced_billing/models/metered_usage.rb +135 -0
- data/lib/advanced_billing/models/movement.rb +143 -0
- data/lib/advanced_billing/models/movement_line_item.rb +148 -0
- data/lib/advanced_billing/models/mrr.rb +103 -0
- data/lib/advanced_billing/models/mrr_movement.rb +81 -0
- data/lib/advanced_billing/models/mrr_response.rb +48 -0
- data/lib/advanced_billing/models/multi_invoice_payment.rb +92 -0
- data/lib/advanced_billing/models/multi_invoice_payment_response.rb +48 -0
- data/lib/advanced_billing/models/nested_subscription_group.rb +94 -0
- data/lib/advanced_billing/models/net_terms.rb +95 -0
- data/lib/advanced_billing/models/offer.rb +266 -0
- data/lib/advanced_billing/models/offer_discount.rb +70 -0
- data/lib/advanced_billing/models/offer_item.rb +159 -0
- data/lib/advanced_billing/models/offer_response.rb +50 -0
- data/lib/advanced_billing/models/offer_signup_page.rb +100 -0
- data/lib/advanced_billing/models/on_off_component.rb +287 -0
- data/lib/advanced_billing/models/organization_address.rb +129 -0
- data/lib/advanced_billing/models/origin_invoice.rb +60 -0
- data/lib/advanced_billing/models/overage_pricing.rb +73 -0
- data/lib/advanced_billing/models/override_subscription.rb +134 -0
- data/lib/advanced_billing/models/override_subscription_request.rb +48 -0
- data/lib/advanced_billing/models/paginated_metadata.rb +99 -0
- data/lib/advanced_billing/models/pause_request.rb +50 -0
- data/lib/advanced_billing/models/payer_attributes.rb +223 -0
- data/lib/advanced_billing/models/payer_error.rb +70 -0
- data/lib/advanced_billing/models/payment.rb +82 -0
- data/lib/advanced_billing/models/payment_collection_method_changed.rb +80 -0
- data/lib/advanced_billing/models/payment_for_allocation.rb +91 -0
- data/lib/advanced_billing/models/payment_method_apple_pay.rb +62 -0
- data/lib/advanced_billing/models/payment_method_bank_account.rb +94 -0
- data/lib/advanced_billing/models/payment_method_credit_card.rb +117 -0
- data/lib/advanced_billing/models/payment_method_external.rb +108 -0
- data/lib/advanced_billing/models/payment_method_paypal.rb +79 -0
- data/lib/advanced_billing/models/payment_profile_attributes.rb +370 -0
- data/lib/advanced_billing/models/payment_profile_response.rb +64 -0
- data/lib/advanced_billing/models/payment_related_events.rb +80 -0
- data/lib/advanced_billing/models/payment_response.rb +69 -0
- data/lib/advanced_billing/models/payment_type.rb +26 -0
- data/lib/advanced_billing/models/pending_cancellation_change.rb +80 -0
- data/lib/advanced_billing/models/portal_management_link.rb +104 -0
- data/lib/advanced_billing/models/prepaid_component_price_point.rb +107 -0
- data/lib/advanced_billing/models/prepaid_configuration.rb +105 -0
- data/lib/advanced_billing/models/prepaid_configuration_response.rb +49 -0
- data/lib/advanced_billing/models/prepaid_subscription_balance_changed.rb +111 -0
- data/lib/advanced_billing/models/prepaid_usage.rb +200 -0
- data/lib/advanced_billing/models/prepaid_usage_allocation_detail.rb +71 -0
- data/lib/advanced_billing/models/prepaid_usage_component.rb +358 -0
- data/lib/advanced_billing/models/prepayment.rb +137 -0
- data/lib/advanced_billing/models/prepayment_account_balance_changed.rb +109 -0
- data/lib/advanced_billing/models/prepayment_aggregated_error.rb +71 -0
- data/lib/advanced_billing/models/prepayment_method.rb +41 -0
- data/lib/advanced_billing/models/prepayment_response.rb +48 -0
- data/lib/advanced_billing/models/prepayments_response.rb +59 -0
- data/lib/advanced_billing/models/preview_allocations_request.rb +99 -0
- data/lib/advanced_billing/models/price.rb +99 -0
- data/lib/advanced_billing/models/price_point.rb +206 -0
- data/lib/advanced_billing/models/price_point_type.rb +30 -0
- data/lib/advanced_billing/models/pricing_scheme.rb +31 -0
- data/lib/advanced_billing/models/product.rb +547 -0
- data/lib/advanced_billing/models/product_family.rb +114 -0
- data/lib/advanced_billing/models/product_family_response.rb +50 -0
- data/lib/advanced_billing/models/product_price_point.rb +346 -0
- data/lib/advanced_billing/models/product_price_point_errors.rb +101 -0
- data/lib/advanced_billing/models/product_price_point_response.rb +48 -0
- data/lib/advanced_billing/models/product_response.rb +48 -0
- data/lib/advanced_billing/models/proforma_error.rb +51 -0
- data/lib/advanced_billing/models/proforma_invoice.rb +484 -0
- data/lib/advanced_billing/models/proforma_invoice_credit.rb +82 -0
- data/lib/advanced_billing/models/proforma_invoice_discount.rb +111 -0
- data/lib/advanced_billing/models/proforma_invoice_discount_breakout.rb +62 -0
- data/lib/advanced_billing/models/proforma_invoice_issued.rb +205 -0
- data/lib/advanced_billing/models/proforma_invoice_payment.rb +82 -0
- data/lib/advanced_billing/models/proforma_invoice_preview.rb +484 -0
- data/lib/advanced_billing/models/proforma_invoice_tax.rb +120 -0
- data/lib/advanced_billing/models/proforma_invoice_tax_breakout.rb +61 -0
- data/lib/advanced_billing/models/proration.rb +52 -0
- data/lib/advanced_billing/models/public_key.rb +71 -0
- data/lib/advanced_billing/models/public_signup_page.rb +84 -0
- data/lib/advanced_billing/models/quantity_based_component.rb +333 -0
- data/lib/advanced_billing/models/reactivate_subscription_group_request.rb +61 -0
- data/lib/advanced_billing/models/reactivate_subscription_group_response.rb +135 -0
- data/lib/advanced_billing/models/reactivate_subscription_request.rb +125 -0
- data/lib/advanced_billing/models/reactivation_billing.rb +56 -0
- data/lib/advanced_billing/models/reactivation_charge.rb +30 -0
- data/lib/advanced_billing/models/reason_code.rb +110 -0
- data/lib/advanced_billing/models/reason_code_response.rb +48 -0
- data/lib/advanced_billing/models/reason_codes_json_response.rb +50 -0
- data/lib/advanced_billing/models/record_payment_request.rb +48 -0
- data/lib/advanced_billing/models/recurring_scheme.rb +26 -0
- data/lib/advanced_billing/models/referral_code.rb +81 -0
- data/lib/advanced_billing/models/referral_validation_response.rb +50 -0
- data/lib/advanced_billing/models/refund.rb +128 -0
- data/lib/advanced_billing/models/refund_consolidated_invoice.rb +129 -0
- data/lib/advanced_billing/models/refund_invoice.rb +128 -0
- data/lib/advanced_billing/models/refund_invoice_event_data.rb +195 -0
- data/lib/advanced_billing/models/refund_invoice_request.rb +64 -0
- data/lib/advanced_billing/models/refund_prepayment.rb +108 -0
- data/lib/advanced_billing/models/refund_prepayment_aggregated_error.rb +50 -0
- data/lib/advanced_billing/models/refund_prepayment_base_refund_error.rb +50 -0
- data/lib/advanced_billing/models/refund_prepayment_request.rb +48 -0
- data/lib/advanced_billing/models/refund_success.rb +93 -0
- data/lib/advanced_billing/models/remove_payment_event_data.rb +155 -0
- data/lib/advanced_billing/models/renewal_preview.rb +161 -0
- data/lib/advanced_billing/models/renewal_preview_component.rb +93 -0
- data/lib/advanced_billing/models/renewal_preview_line_item.rb +189 -0
- data/lib/advanced_billing/models/renewal_preview_request.rb +62 -0
- data/lib/advanced_billing/models/renewal_preview_response.rb +49 -0
- data/lib/advanced_billing/models/replay_webhooks_request.rb +48 -0
- data/lib/advanced_billing/models/replay_webhooks_response.rb +50 -0
- data/lib/advanced_billing/models/resent_invitation.rb +83 -0
- data/lib/advanced_billing/models/resource_type.rb +23 -0
- data/lib/advanced_billing/models/restriction_type.rb +23 -0
- data/lib/advanced_billing/models/resume_options.rb +76 -0
- data/lib/advanced_billing/models/resumption_charge.rb +27 -0
- data/lib/advanced_billing/models/revoked_invitation.rb +72 -0
- data/lib/advanced_billing/models/sale_rep.rb +100 -0
- data/lib/advanced_billing/models/sale_rep_item_mrr.rb +70 -0
- data/lib/advanced_billing/models/sale_rep_settings.rb +113 -0
- data/lib/advanced_billing/models/sale_rep_subscription.rb +143 -0
- data/lib/advanced_billing/models/segment.rb +210 -0
- data/lib/advanced_billing/models/segment_price.rb +126 -0
- data/lib/advanced_billing/models/segment_response.rb +50 -0
- data/lib/advanced_billing/models/seller.rb +82 -0
- data/lib/advanced_billing/models/send_invoice_request.rb +73 -0
- data/lib/advanced_billing/models/service_credit.rb +92 -0
- data/lib/advanced_billing/models/service_credit_response.rb +48 -0
- data/lib/advanced_billing/models/service_credit_type.rb +23 -0
- data/lib/advanced_billing/models/shipping_address.rb +107 -0
- data/lib/advanced_billing/models/signup_proforma_preview.rb +62 -0
- data/lib/advanced_billing/models/signup_proforma_preview_response.rb +50 -0
- data/lib/advanced_billing/models/site.rb +220 -0
- data/lib/advanced_billing/models/site_response.rb +48 -0
- data/lib/advanced_billing/models/site_statistics.rb +174 -0
- data/lib/advanced_billing/models/site_summary.rb +90 -0
- data/lib/advanced_billing/models/snap_day.rb +21 -0
- data/lib/advanced_billing/models/sorting_direction.rb +23 -0
- data/lib/advanced_billing/models/subscription.rb +1014 -0
- data/lib/advanced_billing/models/subscription_component.rb +460 -0
- data/lib/advanced_billing/models/subscription_component_allocation_error_item.rb +60 -0
- data/lib/advanced_billing/models/subscription_component_response.rb +50 -0
- data/lib/advanced_billing/models/subscription_component_subscription.rb +197 -0
- data/lib/advanced_billing/models/subscription_custom_price.rb +212 -0
- data/lib/advanced_billing/models/subscription_date_field.rb +44 -0
- data/lib/advanced_billing/models/subscription_group.rb +96 -0
- data/lib/advanced_billing/models/subscription_group_balances.rb +82 -0
- data/lib/advanced_billing/models/subscription_group_bank_account.rb +216 -0
- data/lib/advanced_billing/models/subscription_group_component_custom_price.rb +96 -0
- data/lib/advanced_billing/models/subscription_group_credit_card.rb +273 -0
- data/lib/advanced_billing/models/subscription_group_customer.rb +90 -0
- data/lib/advanced_billing/models/subscription_group_item.rb +152 -0
- data/lib/advanced_billing/models/subscription_group_member_error.rb +70 -0
- data/lib/advanced_billing/models/subscription_group_payment_profile.rb +81 -0
- data/lib/advanced_billing/models/subscription_group_prepayment.rb +75 -0
- data/lib/advanced_billing/models/subscription_group_prepayment_method.rb +35 -0
- data/lib/advanced_billing/models/subscription_group_prepayment_request.rb +48 -0
- data/lib/advanced_billing/models/subscription_group_prepayment_response.rb +92 -0
- data/lib/advanced_billing/models/subscription_group_response.rb +49 -0
- data/lib/advanced_billing/models/subscription_group_signup.rb +154 -0
- data/lib/advanced_billing/models/subscription_group_signup_component.rb +110 -0
- data/lib/advanced_billing/models/subscription_group_signup_error.rb +112 -0
- data/lib/advanced_billing/models/subscription_group_signup_failure.rb +83 -0
- data/lib/advanced_billing/models/subscription_group_signup_failure_data.rb +140 -0
- data/lib/advanced_billing/models/subscription_group_signup_item.rb +197 -0
- data/lib/advanced_billing/models/subscription_group_signup_request.rb +49 -0
- data/lib/advanced_billing/models/subscription_group_signup_response.rb +171 -0
- data/lib/advanced_billing/models/subscription_group_signup_success.rb +81 -0
- data/lib/advanced_billing/models/subscription_group_signup_success_data.rb +125 -0
- data/lib/advanced_billing/models/subscription_group_subscription_error.rb +87 -0
- data/lib/advanced_billing/models/subscription_group_update_error.rb +59 -0
- data/lib/advanced_billing/models/subscription_include.rb +23 -0
- data/lib/advanced_billing/models/subscription_included_coupon.rb +115 -0
- data/lib/advanced_billing/models/subscription_list_date_field.rb +20 -0
- data/lib/advanced_billing/models/subscription_list_include.rb +20 -0
- data/lib/advanced_billing/models/subscription_migration_preview.rb +90 -0
- data/lib/advanced_billing/models/subscription_migration_preview_options.rb +163 -0
- data/lib/advanced_billing/models/subscription_migration_preview_request.rb +49 -0
- data/lib/advanced_billing/models/subscription_migration_preview_response.rb +48 -0
- data/lib/advanced_billing/models/subscription_mrr.rb +70 -0
- data/lib/advanced_billing/models/subscription_mrr_breakout.rb +59 -0
- data/lib/advanced_billing/models/subscription_mrr_response.rb +57 -0
- data/lib/advanced_billing/models/subscription_note.rb +101 -0
- data/lib/advanced_billing/models/subscription_note_response.rb +48 -0
- data/lib/advanced_billing/models/subscription_preview.rb +62 -0
- data/lib/advanced_billing/models/subscription_preview_response.rb +49 -0
- data/lib/advanced_billing/models/subscription_product_change.rb +81 -0
- data/lib/advanced_billing/models/subscription_product_migration.rb +152 -0
- data/lib/advanced_billing/models/subscription_product_migration_request.rb +48 -0
- data/lib/advanced_billing/models/subscription_purge_type.rb +23 -0
- data/lib/advanced_billing/models/subscription_response.rb +50 -0
- data/lib/advanced_billing/models/subscription_sort.rb +35 -0
- data/lib/advanced_billing/models/subscription_state.rb +118 -0
- data/lib/advanced_billing/models/subscription_state_change.rb +81 -0
- data/lib/advanced_billing/models/subscription_state_filter.rb +53 -0
- data/lib/advanced_billing/models/tax_configuration.rb +74 -0
- data/lib/advanced_billing/models/tax_configuration_kind.rb +29 -0
- data/lib/advanced_billing/models/tax_destination_address.rb +29 -0
- data/lib/advanced_billing/models/too_many_management_link_requests.rb +64 -0
- data/lib/advanced_billing/models/update_allocation_expiration_date.rb +50 -0
- data/lib/advanced_billing/models/update_component.rb +146 -0
- data/lib/advanced_billing/models/update_component_price_point.rb +141 -0
- data/lib/advanced_billing/models/update_component_price_point_request.rb +51 -0
- data/lib/advanced_billing/models/update_component_request.rb +48 -0
- data/lib/advanced_billing/models/update_coupon_currency.rb +57 -0
- data/lib/advanced_billing/models/update_currency_price.rb +57 -0
- data/lib/advanced_billing/models/update_currency_prices_request.rb +57 -0
- data/lib/advanced_billing/models/update_customer.rb +223 -0
- data/lib/advanced_billing/models/update_customer_request.rb +48 -0
- data/lib/advanced_billing/models/update_endpoint.rb +58 -0
- data/lib/advanced_billing/models/update_endpoint_request.rb +48 -0
- data/lib/advanced_billing/models/update_metadata.rb +70 -0
- data/lib/advanced_billing/models/update_metadata_request.rb +50 -0
- data/lib/advanced_billing/models/update_metafield.rb +106 -0
- data/lib/advanced_billing/models/update_metafields_request.rb +62 -0
- data/lib/advanced_billing/models/update_payment_profile.rb +194 -0
- data/lib/advanced_billing/models/update_payment_profile_request.rb +49 -0
- data/lib/advanced_billing/models/update_price.rb +109 -0
- data/lib/advanced_billing/models/update_product_price_point.rb +61 -0
- data/lib/advanced_billing/models/update_product_price_point_request.rb +48 -0
- data/lib/advanced_billing/models/update_reason_code.rb +70 -0
- data/lib/advanced_billing/models/update_reason_code_request.rb +48 -0
- data/lib/advanced_billing/models/update_segment.rb +73 -0
- data/lib/advanced_billing/models/update_segment_request.rb +48 -0
- data/lib/advanced_billing/models/update_subscription.rb +278 -0
- data/lib/advanced_billing/models/update_subscription_component.rb +61 -0
- data/lib/advanced_billing/models/update_subscription_group.rb +50 -0
- data/lib/advanced_billing/models/update_subscription_group_request.rb +49 -0
- data/lib/advanced_billing/models/update_subscription_note.rb +57 -0
- data/lib/advanced_billing/models/update_subscription_note_request.rb +48 -0
- data/lib/advanced_billing/models/update_subscription_request.rb +48 -0
- data/lib/advanced_billing/models/upsert_prepaid_configuration.rb +95 -0
- data/lib/advanced_billing/models/upsert_prepaid_configuration_request.rb +49 -0
- data/lib/advanced_billing/models/usage.rb +155 -0
- data/lib/advanced_billing/models/usage_response.rb +48 -0
- data/lib/advanced_billing/models/void_invoice.rb +48 -0
- data/lib/advanced_billing/models/void_invoice_event_data.rb +148 -0
- data/lib/advanced_billing/models/void_invoice_request.rb +48 -0
- data/lib/advanced_billing/models/void_remainder_event_data.rb +115 -0
- data/lib/advanced_billing/models/webhook.rb +173 -0
- data/lib/advanced_billing/models/webhook_order.rb +23 -0
- data/lib/advanced_billing/models/webhook_response.rb +50 -0
- data/lib/advanced_billing/models/webhook_status.rb +29 -0
- data/lib/advanced_billing/models/webhook_subscription.rb +124 -0
- data/lib/advanced_billing/utilities/date_time_helper.rb +11 -0
- data/lib/advanced_billing/utilities/file_wrapper.rb +16 -0
- data/lib/advanced_billing/utilities/union_type_lookup.rb +1143 -0
- data/lib/advanced_billing.rb +671 -0
- metadata +608 -105
- data/bin/arch +0 -1
- data/bin/ash +0 -1
- data/bin/base64 +0 -1
- data/bin/bbconfig +0 -1
- data/bin/busybox +0 -0
- data/bin/cat +0 -1
- data/bin/chattr +0 -1
- data/bin/chgrp +0 -1
- data/bin/chmod +0 -1
- data/bin/chown +0 -1
- data/bin/cp +0 -1
- data/bin/date +0 -1
- data/bin/dd +0 -1
- data/bin/df +0 -1
- data/bin/dmesg +0 -1
- data/bin/dnsdomainname +0 -1
- data/bin/dumpkmap +0 -1
- data/bin/echo +0 -1
- data/bin/ed +0 -1
- data/bin/egrep +0 -1
- data/bin/false +0 -1
- data/bin/fatattr +0 -1
- data/bin/fdflush +0 -1
- data/bin/fgrep +0 -1
- data/bin/fsync +0 -1
- data/bin/getopt +0 -1
- data/bin/grep +0 -1
- data/bin/gunzip +0 -1
- data/bin/gzip +0 -1
- data/bin/hostname +0 -1
- data/bin/ionice +0 -1
- data/bin/iostat +0 -1
- data/bin/ipcalc +0 -1
- data/bin/kbd_mode +0 -1
- data/bin/kill +0 -1
- data/bin/link +0 -1
- data/bin/linux32 +0 -1
- data/bin/linux64 +0 -1
- data/bin/ln +0 -1
- data/bin/login +0 -1
- data/bin/ls +0 -1
- data/bin/lsattr +0 -1
- data/bin/lzop +0 -1
- data/bin/makemime +0 -1
- data/bin/mkdir +0 -1
- data/bin/mknod +0 -1
- data/bin/mktemp +0 -1
- data/bin/more +0 -1
- data/bin/mount +0 -1
- data/bin/mountpoint +0 -1
- data/bin/mpstat +0 -1
- data/bin/mv +0 -1
- data/bin/netstat +0 -1
- data/bin/nice +0 -1
- data/bin/pidof +0 -0
- data/bin/ping +0 -1
- data/bin/ping6 +0 -1
- data/bin/pipe_progress +0 -1
- data/bin/printenv +0 -1
- data/bin/ps +0 -0
- data/bin/pwait +0 -0
- data/bin/pwd +0 -1
- data/bin/reformime +0 -1
- data/bin/rev +0 -1
- data/bin/rm +0 -1
- data/bin/rmdir +0 -1
- data/bin/run-parts +0 -1
- data/bin/sed +0 -1
- data/bin/setpriv +0 -1
- data/bin/setserial +0 -1
- data/bin/sh +0 -1
- data/bin/slabtop +0 -0
- data/bin/sleep +0 -1
- data/bin/stat +0 -1
- data/bin/stty +0 -1
- data/bin/su +0 -1
- data/bin/sync +0 -1
- data/bin/tar +0 -1
- data/bin/tload +0 -0
- data/bin/touch +0 -1
- data/bin/true +0 -1
- data/bin/umount +0 -1
- data/bin/uname +0 -1
- data/bin/usleep +0 -1
- data/bin/vmstat +0 -0
- data/bin/w +0 -0
- data/bin/watch +0 -0
- data/bin/zcat +0 -1
- data/lib/apk/db/installed +0 -3582
- data/lib/apk/db/lock +0 -0
- data/lib/apk/db/scripts.tar +0 -0
- data/lib/apk/db/triggers +0 -2
- data/lib/ld-musl-x86_64.so.1 +0 -0
- data/lib/libapk.so.3.12.0 +0 -0
- data/lib/libc.musl-x86_64.so.1 +0 -1
- data/lib/libcrypto.so.1.1 +0 -0
- data/lib/libprocps.so.8 +0 -1
- data/lib/libprocps.so.8.0.3 +0 -0
- data/lib/libssl.so.1.1 +0 -0
- data/lib/libz.so +0 -1
- data/lib/libz.so.1 +0 -1
- data/lib/libz.so.1.2.12 +0 -0
- data/lib/sysctl.d/00-alpine.conf +0 -40
@@ -0,0 +1,908 @@
|
|
1
|
+
# advanced_billing
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AdvancedBilling
|
7
|
+
# ComponentsController
|
8
|
+
class ComponentsController < BaseController
|
9
|
+
# This request will create a component definition of kind
|
10
|
+
# **metered_component** under the specified product family. Metered
|
11
|
+
# component can then be added and “allocated” for a subscription.
|
12
|
+
# Metered components are used to bill for any type of unit that resets to 0
|
13
|
+
# at the end of the billing period (think daily Google Adwords clicks or
|
14
|
+
# monthly cell phone minutes). This is most commonly associated with
|
15
|
+
# usage-based billing and many other pricing schemes.
|
16
|
+
# Note that this is different from recurring quantity-based components,
|
17
|
+
# which DO NOT reset to zero at the start of every billing period. If you
|
18
|
+
# want to bill for a quantity of something that does not change unless you
|
19
|
+
# change it, then you want quantity components, instead.
|
20
|
+
# For more information on components, please see our documentation
|
21
|
+
# [here](https://maxio-chargify.zendesk.com/hc/en-us/articles/5405020625677)
|
22
|
+
# .
|
23
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
24
|
+
# the product family to which the component belongs
|
25
|
+
# @param [CreateMeteredComponent] body Optional parameter: Example:
|
26
|
+
# @return [ComponentResponse] response from the API call
|
27
|
+
def create_metered_component(product_family_id,
|
28
|
+
body: nil)
|
29
|
+
new_api_call_builder
|
30
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
31
|
+
'/product_families/{product_family_id}/metered_components.json',
|
32
|
+
Server::DEFAULT)
|
33
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
34
|
+
.is_required(true)
|
35
|
+
.should_encode(true))
|
36
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
37
|
+
.body_param(new_parameter(body))
|
38
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
39
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
40
|
+
.auth(Single.new('global')))
|
41
|
+
.response(new_response_handler
|
42
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
43
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
44
|
+
.local_error_template('404',
|
45
|
+
'Not Found:\'{$response.body}\'',
|
46
|
+
APIException)
|
47
|
+
.local_error_template('422',
|
48
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
49
|
+
' Response: \'{$response.body}\'.',
|
50
|
+
ErrorListResponseException))
|
51
|
+
.execute
|
52
|
+
end
|
53
|
+
|
54
|
+
# This request will create a component definition of kind
|
55
|
+
# **quantity_based_component** under the specified product family. Quantity
|
56
|
+
# Based component can then be added and “allocated” for a subscription.
|
57
|
+
# When defining Quantity Based component, You can choose one of 2 types:
|
58
|
+
# #### Recurring
|
59
|
+
# Recurring quantity-based components are used to bill for the number of
|
60
|
+
# some unit (think monthly software user licenses or the number of pairs of
|
61
|
+
# socks in a box-a-month club). This is most commonly associated with
|
62
|
+
# billing for user licenses, number of users, number of employees, etc.
|
63
|
+
# #### One-time
|
64
|
+
# One-time quantity-based components are used to create ad hoc usage charges
|
65
|
+
# that do not recur. For example, at the time of signup, you might want to
|
66
|
+
# charge your customer a one-time fee for onboarding or other services.
|
67
|
+
# The allocated quantity for one-time quantity-based components immediately
|
68
|
+
# gets reset back to zero after the allocation is made.
|
69
|
+
# For more information on components, please see our documentation
|
70
|
+
# [here](https://maxio-chargify.zendesk.com/hc/en-us/articles/5405020625677)
|
71
|
+
# .
|
72
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
73
|
+
# the product family to which the component belongs
|
74
|
+
# @param [CreateQuantityBasedComponent] body Optional parameter: Example:
|
75
|
+
# @return [ComponentResponse] response from the API call
|
76
|
+
def create_quantity_based_component(product_family_id,
|
77
|
+
body: nil)
|
78
|
+
new_api_call_builder
|
79
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
80
|
+
'/product_families/{product_family_id}/quantity_based_components.json',
|
81
|
+
Server::DEFAULT)
|
82
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
83
|
+
.is_required(true)
|
84
|
+
.should_encode(true))
|
85
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
86
|
+
.body_param(new_parameter(body))
|
87
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
88
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
89
|
+
.auth(Single.new('global')))
|
90
|
+
.response(new_response_handler
|
91
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
92
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
93
|
+
.local_error_template('404',
|
94
|
+
'Not Found:\'{$response.body}\'',
|
95
|
+
APIException)
|
96
|
+
.local_error_template('422',
|
97
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
98
|
+
' Response: \'{$response.body}\'.',
|
99
|
+
ErrorListResponseException))
|
100
|
+
.execute
|
101
|
+
end
|
102
|
+
|
103
|
+
# This request will create a component definition of kind
|
104
|
+
# **on_off_component** under the specified product family. On/Off component
|
105
|
+
# can then be added and “allocated” for a subscription.
|
106
|
+
# On/off components are used for any flat fee, recurring add on (think
|
107
|
+
# $99/month for tech support or a flat add on shipping fee).
|
108
|
+
# For more information on components, please see our documentation
|
109
|
+
# [here](https://maxio-chargify.zendesk.com/hc/en-us/articles/5405020625677)
|
110
|
+
# .
|
111
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
112
|
+
# the product family to which the component belongs
|
113
|
+
# @param [CreateOnOffComponent] body Optional parameter: Example:
|
114
|
+
# @return [ComponentResponse] response from the API call
|
115
|
+
def create_on_off_component(product_family_id,
|
116
|
+
body: nil)
|
117
|
+
new_api_call_builder
|
118
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
119
|
+
'/product_families/{product_family_id}/on_off_components.json',
|
120
|
+
Server::DEFAULT)
|
121
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
122
|
+
.is_required(true)
|
123
|
+
.should_encode(true))
|
124
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
125
|
+
.body_param(new_parameter(body))
|
126
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
127
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
128
|
+
.auth(Single.new('global')))
|
129
|
+
.response(new_response_handler
|
130
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
131
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
132
|
+
.local_error_template('404',
|
133
|
+
'Not Found:\'{$response.body}\'',
|
134
|
+
APIException)
|
135
|
+
.local_error_template('422',
|
136
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
137
|
+
' Response: \'{$response.body}\'.',
|
138
|
+
ErrorListResponseException))
|
139
|
+
.execute
|
140
|
+
end
|
141
|
+
|
142
|
+
# This request will create a component definition of kind
|
143
|
+
# **prepaid_usage_component** under the specified product family. Prepaid
|
144
|
+
# component can then be added and “allocated” for a subscription.
|
145
|
+
# Prepaid components allow customers to pre-purchase units that can be used
|
146
|
+
# up over time on their subscription. In a sense, they are the mirror image
|
147
|
+
# of metered components; while metered components charge at the end of the
|
148
|
+
# period for the amount of units used, prepaid components are charged for at
|
149
|
+
# the time of purchase, and we subsequently keep track of the usage against
|
150
|
+
# the amount purchased.
|
151
|
+
# For more information on components, please see our documentation
|
152
|
+
# [here](https://maxio-chargify.zendesk.com/hc/en-us/articles/5405020625677)
|
153
|
+
# .
|
154
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
155
|
+
# the product family to which the component belongs
|
156
|
+
# @param [CreatePrepaidComponent] body Optional parameter: Example:
|
157
|
+
# @return [ComponentResponse] response from the API call
|
158
|
+
def create_prepaid_usage_component(product_family_id,
|
159
|
+
body: nil)
|
160
|
+
new_api_call_builder
|
161
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
162
|
+
'/product_families/{product_family_id}/prepaid_usage_components.json',
|
163
|
+
Server::DEFAULT)
|
164
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
165
|
+
.is_required(true)
|
166
|
+
.should_encode(true))
|
167
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
168
|
+
.body_param(new_parameter(body))
|
169
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
170
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
171
|
+
.auth(Single.new('global')))
|
172
|
+
.response(new_response_handler
|
173
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
174
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
175
|
+
.local_error_template('404',
|
176
|
+
'Not Found:\'{$response.body}\'',
|
177
|
+
APIException)
|
178
|
+
.local_error_template('422',
|
179
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
180
|
+
' Response: \'{$response.body}\'.',
|
181
|
+
ErrorListResponseException))
|
182
|
+
.execute
|
183
|
+
end
|
184
|
+
|
185
|
+
# This request will create a component definition of kind
|
186
|
+
# **event_based_component** under the specified product family. Event-based
|
187
|
+
# component can then be added and “allocated” for a subscription.
|
188
|
+
# Event-based components are similar to other component types, in that you
|
189
|
+
# define the component parameters (such as name and taxability) and the
|
190
|
+
# pricing. A key difference for the event-based component is that it must be
|
191
|
+
# attached to a metric. This is because the metric provides the component
|
192
|
+
# with the actual quantity used in computing what and how much will be
|
193
|
+
# billed each period for each subscription.
|
194
|
+
# So, instead of reporting usage directly for each component (as you would
|
195
|
+
# with metered components), the usage is derived from analysis of your
|
196
|
+
# events.
|
197
|
+
# For more information on components, please see our documentation
|
198
|
+
# [here](https://maxio-chargify.zendesk.com/hc/en-us/articles/5405020625677)
|
199
|
+
# .
|
200
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
201
|
+
# the product family to which the component belongs
|
202
|
+
# @param [CreateEBBComponent] body Optional parameter: Example:
|
203
|
+
# @return [ComponentResponse] response from the API call
|
204
|
+
def create_event_based_component(product_family_id,
|
205
|
+
body: nil)
|
206
|
+
new_api_call_builder
|
207
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
208
|
+
'/product_families/{product_family_id}/event_based_components.json',
|
209
|
+
Server::DEFAULT)
|
210
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
211
|
+
.is_required(true)
|
212
|
+
.should_encode(true))
|
213
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
214
|
+
.body_param(new_parameter(body))
|
215
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
216
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
217
|
+
.auth(Single.new('global')))
|
218
|
+
.response(new_response_handler
|
219
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
220
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
221
|
+
.local_error_template('404',
|
222
|
+
'Not Found:\'{$response.body}\'',
|
223
|
+
APIException)
|
224
|
+
.local_error_template('422',
|
225
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
226
|
+
' Response: \'{$response.body}\'.',
|
227
|
+
ErrorListResponseException))
|
228
|
+
.execute
|
229
|
+
end
|
230
|
+
|
231
|
+
# This request will return information regarding a component having the
|
232
|
+
# handle you provide. You can identify your components with a handle so you
|
233
|
+
# don't have to save or reference the IDs we generate.
|
234
|
+
# @param [String] handle Required parameter: The handle of the component to
|
235
|
+
# find
|
236
|
+
# @return [ComponentResponse] response from the API call
|
237
|
+
def find_component(handle)
|
238
|
+
new_api_call_builder
|
239
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
240
|
+
'/components/lookup.json',
|
241
|
+
Server::DEFAULT)
|
242
|
+
.query_param(new_parameter(handle, key: 'handle')
|
243
|
+
.is_required(true))
|
244
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
245
|
+
.auth(Single.new('global')))
|
246
|
+
.response(new_response_handler
|
247
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
248
|
+
.deserialize_into(ComponentResponse.method(:from_hash)))
|
249
|
+
.execute
|
250
|
+
end
|
251
|
+
|
252
|
+
# This request will return information regarding a component from a specific
|
253
|
+
# product family.
|
254
|
+
# You may read the component by either the component's id or handle. When
|
255
|
+
# using the handle, it must be prefixed with `handle:`.
|
256
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
257
|
+
# the product family to which the component belongs
|
258
|
+
# @param [String] component_id Required parameter: Either the Chargify id of
|
259
|
+
# the component or the handle for the component prefixed with `handle:`
|
260
|
+
# @return [ComponentResponse] response from the API call
|
261
|
+
def read_component(product_family_id,
|
262
|
+
component_id)
|
263
|
+
new_api_call_builder
|
264
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
265
|
+
'/product_families/{product_family_id}/components/{component_id}.json',
|
266
|
+
Server::DEFAULT)
|
267
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
268
|
+
.is_required(true)
|
269
|
+
.should_encode(true))
|
270
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
271
|
+
.is_required(true)
|
272
|
+
.should_encode(true))
|
273
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
274
|
+
.auth(Single.new('global')))
|
275
|
+
.response(new_response_handler
|
276
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
277
|
+
.deserialize_into(ComponentResponse.method(:from_hash)))
|
278
|
+
.execute
|
279
|
+
end
|
280
|
+
|
281
|
+
# This request will update a component from a specific product family.
|
282
|
+
# You may read the component by either the component's id or handle. When
|
283
|
+
# using the handle, it must be prefixed with `handle:`.
|
284
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
285
|
+
# the product family to which the component belongs
|
286
|
+
# @param [String] component_id Required parameter: Either the Chargify id of
|
287
|
+
# the component or the handle for the component prefixed with `handle:`
|
288
|
+
# @param [UpdateComponentRequest] body Optional parameter: Example:
|
289
|
+
# @return [ComponentResponse] response from the API call
|
290
|
+
def update_product_family_component(product_family_id,
|
291
|
+
component_id,
|
292
|
+
body: nil)
|
293
|
+
new_api_call_builder
|
294
|
+
.request(new_request_builder(HttpMethodEnum::PUT,
|
295
|
+
'/product_families/{product_family_id}/components/{component_id}.json',
|
296
|
+
Server::DEFAULT)
|
297
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
298
|
+
.is_required(true)
|
299
|
+
.should_encode(true))
|
300
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
301
|
+
.is_required(true)
|
302
|
+
.should_encode(true))
|
303
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
304
|
+
.body_param(new_parameter(body))
|
305
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
306
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
307
|
+
.auth(Single.new('global')))
|
308
|
+
.response(new_response_handler
|
309
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
310
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
311
|
+
.local_error_template('422',
|
312
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
313
|
+
' Response: \'{$response.body}\'.',
|
314
|
+
ErrorListResponseException))
|
315
|
+
.execute
|
316
|
+
end
|
317
|
+
|
318
|
+
# Sending a DELETE request to this endpoint will archive the component. All
|
319
|
+
# current subscribers will be unffected; their subscription/purchase will
|
320
|
+
# continue to be charged as usual.
|
321
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
322
|
+
# the product family to which the component belongs
|
323
|
+
# @param [String] component_id Required parameter: Either the Chargify id of
|
324
|
+
# the component or the handle for the component prefixed with `handle:`
|
325
|
+
# @return [Component] response from the API call
|
326
|
+
def archive_component(product_family_id,
|
327
|
+
component_id)
|
328
|
+
new_api_call_builder
|
329
|
+
.request(new_request_builder(HttpMethodEnum::DELETE,
|
330
|
+
'/product_families/{product_family_id}/components/{component_id}.json',
|
331
|
+
Server::DEFAULT)
|
332
|
+
.template_param(new_parameter(product_family_id, key: 'product_family_id')
|
333
|
+
.is_required(true)
|
334
|
+
.should_encode(true))
|
335
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
336
|
+
.is_required(true)
|
337
|
+
.should_encode(true))
|
338
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
339
|
+
.auth(Single.new('global')))
|
340
|
+
.response(new_response_handler
|
341
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
342
|
+
.deserialize_into(Component.method(:from_hash))
|
343
|
+
.local_error_template('422',
|
344
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
345
|
+
' Response: \'{$response.body}\'.',
|
346
|
+
ErrorListResponseException))
|
347
|
+
.execute
|
348
|
+
end
|
349
|
+
|
350
|
+
# This request will return a list of components for a site.
|
351
|
+
# @param [BasicDateField] date_field Optional parameter: The type of filter
|
352
|
+
# you would like to apply to your search.
|
353
|
+
# @param [String] start_date Optional parameter: The start date (format
|
354
|
+
# YYYY-MM-DD) with which to filter the date_field. Returns components with a
|
355
|
+
# timestamp at or after midnight (12:00:00 AM) in your site’s time zone on
|
356
|
+
# the date specified.
|
357
|
+
# @param [String] end_date Optional parameter: The end date (format
|
358
|
+
# YYYY-MM-DD) with which to filter the date_field. Returns components with a
|
359
|
+
# timestamp up to and including 11:59:59PM in your site’s time zone on the
|
360
|
+
# date specified.
|
361
|
+
# @param [String] start_datetime Optional parameter: The start date and time
|
362
|
+
# (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
|
363
|
+
# components with a timestamp at or after exact time provided in query. You
|
364
|
+
# can specify timezone in query - otherwise your site's time zone will be
|
365
|
+
# used. If provided, this parameter will be used instead of start_date.
|
366
|
+
# @param [String] end_datetime Optional parameter: The end date and time
|
367
|
+
# (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
|
368
|
+
# components with a timestamp at or before exact time provided in query. You
|
369
|
+
# can specify timezone in query - otherwise your site's time zone will be
|
370
|
+
# used. If provided, this parameter will be used instead of end_date.
|
371
|
+
# optional
|
372
|
+
# @param [TrueClass | FalseClass] include_archived Optional parameter:
|
373
|
+
# Include archived items
|
374
|
+
# @param [Integer] page Optional parameter: Result records are organized in
|
375
|
+
# pages. By default, the first page of results is displayed. The page
|
376
|
+
# parameter specifies a page number of results to fetch. You can start
|
377
|
+
# navigating through the pages to consume the results. You do this by
|
378
|
+
# passing in a page parameter. Retrieve the next page by adding ?page=2 to
|
379
|
+
# the query string. If there are no results to return, then an empty result
|
380
|
+
# set will be returned. Use in query `page=1`.
|
381
|
+
# @param [Integer] per_page Optional parameter: This parameter indicates how
|
382
|
+
# many records to fetch in each request. Default value is 20. The maximum
|
383
|
+
# allowed values is 200; any per_page value over 200 will be changed to 200.
|
384
|
+
# Use in query `per_page=200`.
|
385
|
+
# @param [Array[String]] filter_ids Optional parameter: Allows fetching
|
386
|
+
# components with matching id based on provided value. Use in query
|
387
|
+
# `filter[ids]=1,2,3`.
|
388
|
+
# @param [TrueClass | FalseClass] filter_use_site_exchange_rate Optional
|
389
|
+
# parameter: Allows fetching components with matching use_site_exchange_rate
|
390
|
+
# based on provided value (refers to default price point). Use in query
|
391
|
+
# `filter[use_site_exchange_rate]=true`.
|
392
|
+
# @return [Array[ComponentResponse]] response from the API call
|
393
|
+
def list_components(options = {})
|
394
|
+
new_api_call_builder
|
395
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
396
|
+
'/components.json',
|
397
|
+
Server::DEFAULT)
|
398
|
+
.query_param(new_parameter(options['date_field'], key: 'date_field'))
|
399
|
+
.query_param(new_parameter(options['start_date'], key: 'start_date'))
|
400
|
+
.query_param(new_parameter(options['end_date'], key: 'end_date'))
|
401
|
+
.query_param(new_parameter(options['start_datetime'], key: 'start_datetime'))
|
402
|
+
.query_param(new_parameter(options['end_datetime'], key: 'end_datetime'))
|
403
|
+
.query_param(new_parameter(options['include_archived'], key: 'include_archived'))
|
404
|
+
.query_param(new_parameter(options['page'], key: 'page'))
|
405
|
+
.query_param(new_parameter(options['per_page'], key: 'per_page'))
|
406
|
+
.query_param(new_parameter(options['filter_ids'], key: 'filter[ids]'))
|
407
|
+
.query_param(new_parameter(options['filter_use_site_exchange_rate'], key: 'filter[use_site_exchange_rate]'))
|
408
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
409
|
+
.auth(Single.new('global'))
|
410
|
+
.array_serialization_format(ArraySerializationFormat::CSV))
|
411
|
+
.response(new_response_handler
|
412
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
413
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
414
|
+
.is_response_array(true))
|
415
|
+
.execute
|
416
|
+
end
|
417
|
+
|
418
|
+
# This request will update a component.
|
419
|
+
# You may read the component by either the component's id or handle. When
|
420
|
+
# using the handle, it must be prefixed with `handle:`.
|
421
|
+
# @param [String] component_id Required parameter: The id or handle of the
|
422
|
+
# component
|
423
|
+
# @param [UpdateComponentRequest] body Optional parameter: Example:
|
424
|
+
# @return [ComponentResponse] response from the API call
|
425
|
+
def update_component(component_id,
|
426
|
+
body: nil)
|
427
|
+
new_api_call_builder
|
428
|
+
.request(new_request_builder(HttpMethodEnum::PUT,
|
429
|
+
'/components/{component_id}.json',
|
430
|
+
Server::DEFAULT)
|
431
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
432
|
+
.is_required(true)
|
433
|
+
.should_encode(true))
|
434
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
435
|
+
.body_param(new_parameter(body))
|
436
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
437
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
438
|
+
.auth(Single.new('global')))
|
439
|
+
.response(new_response_handler
|
440
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
441
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
442
|
+
.local_error_template('422',
|
443
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
444
|
+
' Response: \'{$response.body}\'.',
|
445
|
+
ErrorListResponseException))
|
446
|
+
.execute
|
447
|
+
end
|
448
|
+
|
449
|
+
# Sets a new default price point for the component. This new default will
|
450
|
+
# apply to all new subscriptions going forward - existing subscriptions will
|
451
|
+
# remain on their current price point.
|
452
|
+
# See [Price Points
|
453
|
+
# Documentation](https://chargify.zendesk.com/hc/en-us/articles/440775586588
|
454
|
+
# 3#price-points) for more information on price points and moving
|
455
|
+
# subscriptions between price points.
|
456
|
+
# Note: Custom price points are not able to be set as the default for a
|
457
|
+
# component.
|
458
|
+
# @param [Integer] component_id Required parameter: The Chargify id of the
|
459
|
+
# component to which the price point belongs
|
460
|
+
# @param [Integer] price_point_id Required parameter: The Chargify id of the
|
461
|
+
# price point
|
462
|
+
# @return [ComponentResponse] response from the API call
|
463
|
+
def promote_component_price_point_to_default(component_id,
|
464
|
+
price_point_id)
|
465
|
+
new_api_call_builder
|
466
|
+
.request(new_request_builder(HttpMethodEnum::PUT,
|
467
|
+
'/components/{component_id}/price_points/{price_point_id}/default.json',
|
468
|
+
Server::DEFAULT)
|
469
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
470
|
+
.is_required(true)
|
471
|
+
.should_encode(true))
|
472
|
+
.template_param(new_parameter(price_point_id, key: 'price_point_id')
|
473
|
+
.is_required(true)
|
474
|
+
.should_encode(true))
|
475
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
476
|
+
.auth(Single.new('global')))
|
477
|
+
.response(new_response_handler
|
478
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
479
|
+
.deserialize_into(ComponentResponse.method(:from_hash)))
|
480
|
+
.execute
|
481
|
+
end
|
482
|
+
|
483
|
+
# This request will return a list of components for a particular product
|
484
|
+
# family.
|
485
|
+
# @param [Integer] product_family_id Required parameter: The Chargify id of
|
486
|
+
# the product family
|
487
|
+
# @param [TrueClass | FalseClass] include_archived Optional parameter:
|
488
|
+
# Include archived items.
|
489
|
+
# @param [Array[Integer]] filter_ids Optional parameter: Allows fetching
|
490
|
+
# components with matching id based on provided value. Use in query
|
491
|
+
# `filter[ids]=1,2`.
|
492
|
+
# @param [Integer] page Optional parameter: Result records are organized in
|
493
|
+
# pages. By default, the first page of results is displayed. The page
|
494
|
+
# parameter specifies a page number of results to fetch. You can start
|
495
|
+
# navigating through the pages to consume the results. You do this by
|
496
|
+
# passing in a page parameter. Retrieve the next page by adding ?page=2 to
|
497
|
+
# the query string. If there are no results to return, then an empty result
|
498
|
+
# set will be returned. Use in query `page=1`.
|
499
|
+
# @param [Integer] per_page Optional parameter: This parameter indicates how
|
500
|
+
# many records to fetch in each request. Default value is 20. The maximum
|
501
|
+
# allowed values is 200; any per_page value over 200 will be changed to 200.
|
502
|
+
# Use in query `per_page=200`.
|
503
|
+
# @param [BasicDateField] date_field Optional parameter: The type of filter
|
504
|
+
# you would like to apply to your search. Use in query
|
505
|
+
# `date_field=created_at`.
|
506
|
+
# @param [String] end_date Optional parameter: The end date (format
|
507
|
+
# YYYY-MM-DD) with which to filter the date_field. Returns components with a
|
508
|
+
# timestamp up to and including 11:59:59PM in your site’s time zone on the
|
509
|
+
# date specified.
|
510
|
+
# @param [String] end_datetime Optional parameter: The end date and time
|
511
|
+
# (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
|
512
|
+
# components with a timestamp at or before exact time provided in query. You
|
513
|
+
# can specify timezone in query - otherwise your site's time zone will be
|
514
|
+
# used. If provided, this parameter will be used instead of end_date.
|
515
|
+
# optional.
|
516
|
+
# @param [String] start_date Optional parameter: The start date (format
|
517
|
+
# YYYY-MM-DD) with which to filter the date_field. Returns components with a
|
518
|
+
# timestamp at or after midnight (12:00:00 AM) in your site’s time zone on
|
519
|
+
# the date specified.
|
520
|
+
# @param [String] start_datetime Optional parameter: The start date and time
|
521
|
+
# (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
|
522
|
+
# components with a timestamp at or after exact time provided in query. You
|
523
|
+
# can specify timezone in query - otherwise your site's time zone will be
|
524
|
+
# used. If provided, this parameter will be used instead of start_date.
|
525
|
+
# @param [TrueClass | FalseClass] filter_use_site_exchange_rate Optional
|
526
|
+
# parameter: Allows fetching components with matching use_site_exchange_rate
|
527
|
+
# based on provided value (refers to default price point). Use in query
|
528
|
+
# `filter[use_site_exchange_rate]=true`.
|
529
|
+
# @return [Array[ComponentResponse]] response from the API call
|
530
|
+
def list_components_for_product_family(options = {})
|
531
|
+
new_api_call_builder
|
532
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
533
|
+
'/product_families/{product_family_id}/components.json',
|
534
|
+
Server::DEFAULT)
|
535
|
+
.template_param(new_parameter(options['product_family_id'], key: 'product_family_id')
|
536
|
+
.is_required(true)
|
537
|
+
.should_encode(true))
|
538
|
+
.query_param(new_parameter(options['include_archived'], key: 'include_archived'))
|
539
|
+
.query_param(new_parameter(options['filter_ids'], key: 'filter[ids]'))
|
540
|
+
.query_param(new_parameter(options['page'], key: 'page'))
|
541
|
+
.query_param(new_parameter(options['per_page'], key: 'per_page'))
|
542
|
+
.query_param(new_parameter(options['date_field'], key: 'date_field'))
|
543
|
+
.query_param(new_parameter(options['end_date'], key: 'end_date'))
|
544
|
+
.query_param(new_parameter(options['end_datetime'], key: 'end_datetime'))
|
545
|
+
.query_param(new_parameter(options['start_date'], key: 'start_date'))
|
546
|
+
.query_param(new_parameter(options['start_datetime'], key: 'start_datetime'))
|
547
|
+
.query_param(new_parameter(options['filter_use_site_exchange_rate'], key: 'filter[use_site_exchange_rate]'))
|
548
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
549
|
+
.auth(Single.new('global'))
|
550
|
+
.array_serialization_format(ArraySerializationFormat::CSV))
|
551
|
+
.response(new_response_handler
|
552
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
553
|
+
.deserialize_into(ComponentResponse.method(:from_hash))
|
554
|
+
.is_response_array(true))
|
555
|
+
.execute
|
556
|
+
end
|
557
|
+
|
558
|
+
# This endpoint can be used to create a new price point for an existing
|
559
|
+
# component.
|
560
|
+
# @param [Integer] component_id Required parameter: The Chargify id of the
|
561
|
+
# component
|
562
|
+
# @param [CreateComponentPricePointRequest] body Optional parameter:
|
563
|
+
# Example:
|
564
|
+
# @return [ComponentPricePointResponse] response from the API call
|
565
|
+
def create_component_price_point(component_id,
|
566
|
+
body: nil)
|
567
|
+
new_api_call_builder
|
568
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
569
|
+
'/components/{component_id}/price_points.json',
|
570
|
+
Server::DEFAULT)
|
571
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
572
|
+
.is_required(true)
|
573
|
+
.should_encode(true))
|
574
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
575
|
+
.body_param(new_parameter(body))
|
576
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
577
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
578
|
+
.auth(Single.new('global')))
|
579
|
+
.response(new_response_handler
|
580
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
581
|
+
.deserialize_into(ComponentPricePointResponse.method(:from_hash)))
|
582
|
+
.execute
|
583
|
+
end
|
584
|
+
|
585
|
+
# Use this endpoint to read current price points that are associated with a
|
586
|
+
# component.
|
587
|
+
# You may specify the component by using either the numeric id or the
|
588
|
+
# `handle:gold` syntax.
|
589
|
+
# When fetching a component's price points, if you have defined multiple
|
590
|
+
# currencies at the site level, you can optionally pass the
|
591
|
+
# `?currency_prices=true` query param to include an array of currency price
|
592
|
+
# data in the response.
|
593
|
+
# If the price point is set to `use_site_exchange_rate: true`, it will
|
594
|
+
# return pricing based on the current exchange rate. If the flag is set to
|
595
|
+
# false, it will return all of the defined prices for each currency.
|
596
|
+
# @param [Integer] component_id Required parameter: The Chargify id of the
|
597
|
+
# component
|
598
|
+
# @param [TrueClass | FalseClass] currency_prices Optional parameter:
|
599
|
+
# Include an array of currency price data
|
600
|
+
# @param [Integer] page Optional parameter: Result records are organized in
|
601
|
+
# pages. By default, the first page of results is displayed. The page
|
602
|
+
# parameter specifies a page number of results to fetch. You can start
|
603
|
+
# navigating through the pages to consume the results. You do this by
|
604
|
+
# passing in a page parameter. Retrieve the next page by adding ?page=2 to
|
605
|
+
# the query string. If there are no results to return, then an empty result
|
606
|
+
# set will be returned. Use in query `page=1`.
|
607
|
+
# @param [Integer] per_page Optional parameter: This parameter indicates how
|
608
|
+
# many records to fetch in each request. Default value is 20. The maximum
|
609
|
+
# allowed values is 200; any per_page value over 200 will be changed to 200.
|
610
|
+
# Use in query `per_page=200`.
|
611
|
+
# @param [Array[PricePointType]] filter_type Optional parameter: Use in
|
612
|
+
# query: `filter[type]=catalog,default`.
|
613
|
+
# @return [ComponentPricePointsResponse] response from the API call
|
614
|
+
def list_component_price_points(options = {})
|
615
|
+
new_api_call_builder
|
616
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
617
|
+
'/components/{component_id}/price_points.json',
|
618
|
+
Server::DEFAULT)
|
619
|
+
.template_param(new_parameter(options['component_id'], key: 'component_id')
|
620
|
+
.is_required(true)
|
621
|
+
.should_encode(true))
|
622
|
+
.query_param(new_parameter(options['currency_prices'], key: 'currency_prices'))
|
623
|
+
.query_param(new_parameter(options['page'], key: 'page'))
|
624
|
+
.query_param(new_parameter(options['per_page'], key: 'per_page'))
|
625
|
+
.query_param(new_parameter(options['filter_type'], key: 'filter[type]'))
|
626
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
627
|
+
.auth(Single.new('global'))
|
628
|
+
.array_serialization_format(ArraySerializationFormat::CSV))
|
629
|
+
.response(new_response_handler
|
630
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
631
|
+
.deserialize_into(ComponentPricePointsResponse.method(:from_hash)))
|
632
|
+
.execute
|
633
|
+
end
|
634
|
+
|
635
|
+
# Use this endpoint to create multiple component price points in one
|
636
|
+
# request.
|
637
|
+
# @param [String] component_id Required parameter: The Chargify id of the
|
638
|
+
# component for which you want to fetch price points.
|
639
|
+
# @param [CreateComponentPricePointsRequest] body Optional parameter:
|
640
|
+
# Example:
|
641
|
+
# @return [ComponentPricePointsResponse] response from the API call
|
642
|
+
def bulk_create_component_price_points(component_id,
|
643
|
+
body: nil)
|
644
|
+
new_api_call_builder
|
645
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
646
|
+
'/components/{component_id}/price_points/bulk.json',
|
647
|
+
Server::DEFAULT)
|
648
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
649
|
+
.is_required(true)
|
650
|
+
.should_encode(true))
|
651
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
652
|
+
.body_param(new_parameter(body))
|
653
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
654
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
655
|
+
.auth(Single.new('global')))
|
656
|
+
.response(new_response_handler
|
657
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
658
|
+
.deserialize_into(ComponentPricePointsResponse.method(:from_hash)))
|
659
|
+
.execute
|
660
|
+
end
|
661
|
+
|
662
|
+
# When updating a price point, it's prices can be updated as well by
|
663
|
+
# creating new prices or editing / removing existing ones.
|
664
|
+
# Passing in a price bracket without an `id` will attempt to create a new
|
665
|
+
# price.
|
666
|
+
# Including an `id` will update the corresponding price, and including the
|
667
|
+
# `_destroy` flag set to true along with the `id` will remove that price.
|
668
|
+
# Note: Custom price points cannot be updated directly. They must be edited
|
669
|
+
# through the Subscription.
|
670
|
+
# @param [Integer] component_id Required parameter: The Chargify id of the
|
671
|
+
# component to which the price point belongs
|
672
|
+
# @param [Integer] price_point_id Required parameter: The Chargify id of the
|
673
|
+
# price point
|
674
|
+
# @param [UpdateComponentPricePointRequest] body Optional parameter:
|
675
|
+
# Example:
|
676
|
+
# @return [ComponentPricePointResponse] response from the API call
|
677
|
+
def update_component_price_point(component_id,
|
678
|
+
price_point_id,
|
679
|
+
body: nil)
|
680
|
+
new_api_call_builder
|
681
|
+
.request(new_request_builder(HttpMethodEnum::PUT,
|
682
|
+
'/components/{component_id}/price_points/{price_point_id}.json',
|
683
|
+
Server::DEFAULT)
|
684
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
685
|
+
.is_required(true)
|
686
|
+
.should_encode(true))
|
687
|
+
.template_param(new_parameter(price_point_id, key: 'price_point_id')
|
688
|
+
.is_required(true)
|
689
|
+
.should_encode(true))
|
690
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
691
|
+
.body_param(new_parameter(body))
|
692
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
693
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
694
|
+
.auth(Single.new('global')))
|
695
|
+
.response(new_response_handler
|
696
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
697
|
+
.deserialize_into(ComponentPricePointResponse.method(:from_hash))
|
698
|
+
.local_error_template('422',
|
699
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
700
|
+
' Response: \'{$response.body}\'.',
|
701
|
+
ErrorArrayMapResponseException))
|
702
|
+
.execute
|
703
|
+
end
|
704
|
+
|
705
|
+
# A price point can be archived at any time. Subscriptions using a price
|
706
|
+
# point that has been archived will continue using it until they're moved to
|
707
|
+
# another price point.
|
708
|
+
# @param [Integer] component_id Required parameter: The Chargify id of the
|
709
|
+
# component to which the price point belongs
|
710
|
+
# @param [Integer] price_point_id Required parameter: The Chargify id of the
|
711
|
+
# price point
|
712
|
+
# @return [ComponentPricePointResponse] response from the API call
|
713
|
+
def archive_component_price_point(component_id,
|
714
|
+
price_point_id)
|
715
|
+
new_api_call_builder
|
716
|
+
.request(new_request_builder(HttpMethodEnum::DELETE,
|
717
|
+
'/components/{component_id}/price_points/{price_point_id}.json',
|
718
|
+
Server::DEFAULT)
|
719
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
720
|
+
.is_required(true)
|
721
|
+
.should_encode(true))
|
722
|
+
.template_param(new_parameter(price_point_id, key: 'price_point_id')
|
723
|
+
.is_required(true)
|
724
|
+
.should_encode(true))
|
725
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
726
|
+
.auth(Single.new('global')))
|
727
|
+
.response(new_response_handler
|
728
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
729
|
+
.deserialize_into(ComponentPricePointResponse.method(:from_hash))
|
730
|
+
.local_error_template('422',
|
731
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
732
|
+
' Response: \'{$response.body}\'.',
|
733
|
+
ErrorListResponseException))
|
734
|
+
.execute
|
735
|
+
end
|
736
|
+
|
737
|
+
# Use this endpoint to unarchive a component price point.
|
738
|
+
# @param [Integer] component_id Required parameter: The Chargify id of the
|
739
|
+
# component to which the price point belongs
|
740
|
+
# @param [Integer] price_point_id Required parameter: The Chargify id of the
|
741
|
+
# price point
|
742
|
+
# @return [ComponentPricePointResponse] response from the API call
|
743
|
+
def unarchive_component_price_point(component_id,
|
744
|
+
price_point_id)
|
745
|
+
new_api_call_builder
|
746
|
+
.request(new_request_builder(HttpMethodEnum::PUT,
|
747
|
+
'/components/{component_id}/price_points/{price_point_id}/unarchive.json',
|
748
|
+
Server::DEFAULT)
|
749
|
+
.template_param(new_parameter(component_id, key: 'component_id')
|
750
|
+
.is_required(true)
|
751
|
+
.should_encode(true))
|
752
|
+
.template_param(new_parameter(price_point_id, key: 'price_point_id')
|
753
|
+
.is_required(true)
|
754
|
+
.should_encode(true))
|
755
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
756
|
+
.auth(Single.new('global')))
|
757
|
+
.response(new_response_handler
|
758
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
759
|
+
.deserialize_into(ComponentPricePointResponse.method(:from_hash)))
|
760
|
+
.execute
|
761
|
+
end
|
762
|
+
|
763
|
+
# This endpoint allows you to create currency prices for a given currency
|
764
|
+
# that has been defined on the site level in your settings.
|
765
|
+
# When creating currency prices, they need to mirror the structure of your
|
766
|
+
# primary pricing. For each price level defined on the component price
|
767
|
+
# point, there should be a matching price level created in the given
|
768
|
+
# currency.
|
769
|
+
# Note: Currency Prices are not able to be created for custom price points.
|
770
|
+
# @param [Integer] price_point_id Required parameter: The Chargify id of the
|
771
|
+
# price point
|
772
|
+
# @param [CreateCurrencyPricesRequest] body Optional parameter: Example:
|
773
|
+
# @return [ComponentCurrencyPricesResponse] response from the API call
|
774
|
+
def create_currency_prices(price_point_id,
|
775
|
+
body: nil)
|
776
|
+
new_api_call_builder
|
777
|
+
.request(new_request_builder(HttpMethodEnum::POST,
|
778
|
+
'/price_points/{price_point_id}/currency_prices.json',
|
779
|
+
Server::DEFAULT)
|
780
|
+
.template_param(new_parameter(price_point_id, key: 'price_point_id')
|
781
|
+
.is_required(true)
|
782
|
+
.should_encode(true))
|
783
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
784
|
+
.body_param(new_parameter(body))
|
785
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
786
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
787
|
+
.auth(Single.new('global')))
|
788
|
+
.response(new_response_handler
|
789
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
790
|
+
.deserialize_into(ComponentCurrencyPricesResponse.method(:from_hash))
|
791
|
+
.local_error('422',
|
792
|
+
'Unprocessable Entity (WebDAV)',
|
793
|
+
ErrorArrayMapResponseException))
|
794
|
+
.execute
|
795
|
+
end
|
796
|
+
|
797
|
+
# This endpoint allows you to update currency prices for a given currency
|
798
|
+
# that has been defined on the site level in your settings.
|
799
|
+
# Note: Currency Prices are not able to be updated for custom price points.
|
800
|
+
# @param [Integer] price_point_id Required parameter: The Chargify id of the
|
801
|
+
# price point
|
802
|
+
# @param [UpdateCurrencyPricesRequest] body Optional parameter: Example:
|
803
|
+
# @return [ComponentCurrencyPricesResponse] response from the API call
|
804
|
+
def update_currency_prices(price_point_id,
|
805
|
+
body: nil)
|
806
|
+
new_api_call_builder
|
807
|
+
.request(new_request_builder(HttpMethodEnum::PUT,
|
808
|
+
'/price_points/{price_point_id}/currency_prices.json',
|
809
|
+
Server::DEFAULT)
|
810
|
+
.template_param(new_parameter(price_point_id, key: 'price_point_id')
|
811
|
+
.is_required(true)
|
812
|
+
.should_encode(true))
|
813
|
+
.header_param(new_parameter('application/json', key: 'Content-Type'))
|
814
|
+
.body_param(new_parameter(body))
|
815
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
816
|
+
.body_serializer(proc do |param| param.to_json unless param.nil? end)
|
817
|
+
.auth(Single.new('global')))
|
818
|
+
.response(new_response_handler
|
819
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
820
|
+
.deserialize_into(ComponentCurrencyPricesResponse.method(:from_hash))
|
821
|
+
.local_error('422',
|
822
|
+
'Unprocessable Entity (WebDAV)',
|
823
|
+
ErrorArrayMapResponseException))
|
824
|
+
.execute
|
825
|
+
end
|
826
|
+
|
827
|
+
# This method allows to retrieve a list of Components Price Points belonging
|
828
|
+
# to a Site.
|
829
|
+
# @param [BasicDateField] filter_date_field Optional parameter: The type of
|
830
|
+
# filter you would like to apply to your search. Use in query:
|
831
|
+
# `filter[date_field]=created_at`.
|
832
|
+
# @param [Date] filter_end_date Optional parameter: The end date (format
|
833
|
+
# YYYY-MM-DD) with which to filter the date_field. Returns price points with
|
834
|
+
# a timestamp up to and including 11:59:59PM in your site’s time zone on the
|
835
|
+
# date specified.
|
836
|
+
# @param [DateTime] filter_end_datetime Optional parameter: The end date and
|
837
|
+
# time (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field.
|
838
|
+
# Returns price points with a timestamp at or before exact time provided in
|
839
|
+
# query. You can specify timezone in query - otherwise your site's time zone
|
840
|
+
# will be used. If provided, this parameter will be used instead of
|
841
|
+
# end_date.
|
842
|
+
# @param [ListComponentsPricePointsInclude] include Optional parameter:
|
843
|
+
# Allows including additional data in the response. Use in query:
|
844
|
+
# `include=currency_prices`.
|
845
|
+
# @param [Integer] page Optional parameter: Result records are organized in
|
846
|
+
# pages. By default, the first page of results is displayed. The page
|
847
|
+
# parameter specifies a page number of results to fetch. You can start
|
848
|
+
# navigating through the pages to consume the results. You do this by
|
849
|
+
# passing in a page parameter. Retrieve the next page by adding ?page=2 to
|
850
|
+
# the query string. If there are no results to return, then an empty result
|
851
|
+
# set will be returned. Use in query `page=1`.
|
852
|
+
# @param [Integer] per_page Optional parameter: This parameter indicates how
|
853
|
+
# many records to fetch in each request. Default value is 20. The maximum
|
854
|
+
# allowed values is 200; any per_page value over 200 will be changed to 200.
|
855
|
+
# Use in query `per_page=200`.
|
856
|
+
# @param [Date] filter_start_date Optional parameter: The start date (format
|
857
|
+
# YYYY-MM-DD) with which to filter the date_field. Returns price points with
|
858
|
+
# a timestamp at or after midnight (12:00:00 AM) in your site’s time zone on
|
859
|
+
# the date specified.
|
860
|
+
# @param [DateTime] filter_start_datetime Optional parameter: The start date
|
861
|
+
# and time (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field.
|
862
|
+
# Returns price points with a timestamp at or after exact time provided in
|
863
|
+
# query. You can specify timezone in query - otherwise your site's time zone
|
864
|
+
# will be used. If provided, this parameter will be used instead of
|
865
|
+
# start_date.
|
866
|
+
# @param [Array[PricePointType]] filter_type Optional parameter: Allows
|
867
|
+
# fetching price points with matching type. Use in query:
|
868
|
+
# `filter[type]=custom,catalog`.
|
869
|
+
# @param [SortingDirection] direction Optional parameter: Controls the order
|
870
|
+
# in which results are returned. Use in query `direction=asc`.
|
871
|
+
# @param [Array[Integer]] filter_ids Optional parameter: Allows fetching
|
872
|
+
# price points with matching id based on provided values. Use in query:
|
873
|
+
# `filter[ids]=1,2,3`.
|
874
|
+
# @param [IncludeNotNull] filter_archived_at Optional parameter: Allows
|
875
|
+
# fetching price points only if archived_at is present or not. Use in query:
|
876
|
+
# `filter[archived_at]=not_null`.
|
877
|
+
# @return [ListComponentsPricePointsResponse] response from the API call
|
878
|
+
def list_all_component_price_points(options = {})
|
879
|
+
new_api_call_builder
|
880
|
+
.request(new_request_builder(HttpMethodEnum::GET,
|
881
|
+
'/components_price_points.json',
|
882
|
+
Server::DEFAULT)
|
883
|
+
.query_param(new_parameter(options['filter_date_field'], key: 'filter[date_field]'))
|
884
|
+
.query_param(new_parameter(options['filter_end_date'], key: 'filter[end_date]'))
|
885
|
+
.query_param(new_parameter(options['filter_end_datetime'], key: 'filter[end_datetime]'))
|
886
|
+
.query_param(new_parameter(options['include'], key: 'include'))
|
887
|
+
.query_param(new_parameter(options['page'], key: 'page'))
|
888
|
+
.query_param(new_parameter(options['per_page'], key: 'per_page'))
|
889
|
+
.query_param(new_parameter(options['filter_start_date'], key: 'filter[start_date]'))
|
890
|
+
.query_param(new_parameter(options['filter_start_datetime'], key: 'filter[start_datetime]'))
|
891
|
+
.query_param(new_parameter(options['filter_type'], key: 'filter[type]'))
|
892
|
+
.query_param(new_parameter(options['direction'], key: 'direction'))
|
893
|
+
.query_param(new_parameter(options['filter_ids'], key: 'filter[ids]'))
|
894
|
+
.query_param(new_parameter(options['filter_archived_at'], key: 'filter[archived_at]'))
|
895
|
+
.header_param(new_parameter('application/json', key: 'accept'))
|
896
|
+
.auth(Single.new('global'))
|
897
|
+
.array_serialization_format(ArraySerializationFormat::CSV))
|
898
|
+
.response(new_response_handler
|
899
|
+
.deserializer(APIHelper.method(:custom_type_deserializer))
|
900
|
+
.deserialize_into(ListComponentsPricePointsResponse.method(:from_hash))
|
901
|
+
.local_error_template('422',
|
902
|
+
'HTTP Response Not OK. Status code: {$statusCode}.'\
|
903
|
+
' Response: \'{$response.body}\'.',
|
904
|
+
ErrorListResponseException))
|
905
|
+
.execute
|
906
|
+
end
|
907
|
+
end
|
908
|
+
end
|