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,197 @@
|
|
1
|
+
# advanced_billing
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AdvancedBilling
|
7
|
+
# SubscriptionGroupSignupItem Model.
|
8
|
+
class SubscriptionGroupSignupItem < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# The API Handle of the product for which you are creating a subscription.
|
13
|
+
# Required, unless a `product_id` is given instead.
|
14
|
+
# @return [String]
|
15
|
+
attr_accessor :product_handle
|
16
|
+
|
17
|
+
# The Product ID of the product for which you are creating a subscription.
|
18
|
+
# You can pass either `product_id` or `product_handle`.
|
19
|
+
# @return [Integer]
|
20
|
+
attr_accessor :product_id
|
21
|
+
|
22
|
+
# The ID of the particular price point on the product.
|
23
|
+
# @return [Integer]
|
24
|
+
attr_accessor :product_price_point_id
|
25
|
+
|
26
|
+
# The user-friendly API handle of a product's particular price point.
|
27
|
+
# @return [String]
|
28
|
+
attr_accessor :product_price_point_handle
|
29
|
+
|
30
|
+
# Use in place of passing product and component information to set up the
|
31
|
+
# subscription with an existing offer. May be either the Chargify ID of the
|
32
|
+
# offer or its handle prefixed with `handle:`
|
33
|
+
# @return [Integer]
|
34
|
+
attr_accessor :offer_id
|
35
|
+
|
36
|
+
# The reference value (provided by your app) for the subscription itelf.
|
37
|
+
# @return [String]
|
38
|
+
attr_accessor :reference
|
39
|
+
|
40
|
+
# One of the subscriptions must be marked as primary in the group.
|
41
|
+
# @return [TrueClass | FalseClass]
|
42
|
+
attr_accessor :primary
|
43
|
+
|
44
|
+
# (Optional) If Multi-Currency is enabled and the currency is configured in
|
45
|
+
# Chargify, pass it at signup to create a subscription on a non-default
|
46
|
+
# currency. Note that you cannot update the currency of an existing
|
47
|
+
# subscription.
|
48
|
+
# @return [String]
|
49
|
+
attr_accessor :currency
|
50
|
+
|
51
|
+
# An array for all the coupons attached to the subscription.
|
52
|
+
# @return [Array[String]]
|
53
|
+
attr_accessor :coupon_codes
|
54
|
+
|
55
|
+
# An array for all the coupons attached to the subscription.
|
56
|
+
# @return [Array[SubscriptionGroupSignupComponent]]
|
57
|
+
attr_accessor :components
|
58
|
+
|
59
|
+
# (Optional) Used in place of `product_price_point_id` to define a custom
|
60
|
+
# price point unique to the subscription
|
61
|
+
# @return [SubscriptionCustomPrice]
|
62
|
+
attr_accessor :custom_price
|
63
|
+
|
64
|
+
# (Optional). Cannot be used when also specifying next_billing_at
|
65
|
+
# @return [CalendarBilling]
|
66
|
+
attr_accessor :calendar_billing
|
67
|
+
|
68
|
+
# (Optional) A set of key/value pairs representing custom fields and their
|
69
|
+
# values. Metafields will be created “on-the-fly” in your site for a given
|
70
|
+
# key, if they have not been created yet.
|
71
|
+
# @return [Hash[String, String]]
|
72
|
+
attr_accessor :metafields
|
73
|
+
|
74
|
+
# A mapping from model property names to API property names.
|
75
|
+
def self.names
|
76
|
+
@_hash = {} if @_hash.nil?
|
77
|
+
@_hash['product_handle'] = 'product_handle'
|
78
|
+
@_hash['product_id'] = 'product_id'
|
79
|
+
@_hash['product_price_point_id'] = 'product_price_point_id'
|
80
|
+
@_hash['product_price_point_handle'] = 'product_price_point_handle'
|
81
|
+
@_hash['offer_id'] = 'offer_id'
|
82
|
+
@_hash['reference'] = 'reference'
|
83
|
+
@_hash['primary'] = 'primary'
|
84
|
+
@_hash['currency'] = 'currency'
|
85
|
+
@_hash['coupon_codes'] = 'coupon_codes'
|
86
|
+
@_hash['components'] = 'components'
|
87
|
+
@_hash['custom_price'] = 'custom_price'
|
88
|
+
@_hash['calendar_billing'] = 'calendar_billing'
|
89
|
+
@_hash['metafields'] = 'metafields'
|
90
|
+
@_hash
|
91
|
+
end
|
92
|
+
|
93
|
+
# An array for optional fields
|
94
|
+
def self.optionals
|
95
|
+
%w[
|
96
|
+
product_handle
|
97
|
+
product_id
|
98
|
+
product_price_point_id
|
99
|
+
product_price_point_handle
|
100
|
+
offer_id
|
101
|
+
reference
|
102
|
+
primary
|
103
|
+
currency
|
104
|
+
coupon_codes
|
105
|
+
components
|
106
|
+
custom_price
|
107
|
+
calendar_billing
|
108
|
+
metafields
|
109
|
+
]
|
110
|
+
end
|
111
|
+
|
112
|
+
# An array for nullable fields
|
113
|
+
def self.nullables
|
114
|
+
[]
|
115
|
+
end
|
116
|
+
|
117
|
+
def initialize(product_handle = SKIP,
|
118
|
+
product_id = SKIP,
|
119
|
+
product_price_point_id = SKIP,
|
120
|
+
product_price_point_handle = SKIP,
|
121
|
+
offer_id = SKIP,
|
122
|
+
reference = SKIP,
|
123
|
+
primary = SKIP,
|
124
|
+
currency = SKIP,
|
125
|
+
coupon_codes = SKIP,
|
126
|
+
components = SKIP,
|
127
|
+
custom_price = SKIP,
|
128
|
+
calendar_billing = SKIP,
|
129
|
+
metafields = SKIP)
|
130
|
+
@product_handle = product_handle unless product_handle == SKIP
|
131
|
+
@product_id = product_id unless product_id == SKIP
|
132
|
+
@product_price_point_id = product_price_point_id unless product_price_point_id == SKIP
|
133
|
+
unless product_price_point_handle == SKIP
|
134
|
+
@product_price_point_handle =
|
135
|
+
product_price_point_handle
|
136
|
+
end
|
137
|
+
@offer_id = offer_id unless offer_id == SKIP
|
138
|
+
@reference = reference unless reference == SKIP
|
139
|
+
@primary = primary unless primary == SKIP
|
140
|
+
@currency = currency unless currency == SKIP
|
141
|
+
@coupon_codes = coupon_codes unless coupon_codes == SKIP
|
142
|
+
@components = components unless components == SKIP
|
143
|
+
@custom_price = custom_price unless custom_price == SKIP
|
144
|
+
@calendar_billing = calendar_billing unless calendar_billing == SKIP
|
145
|
+
@metafields = metafields unless metafields == SKIP
|
146
|
+
end
|
147
|
+
|
148
|
+
# Creates an instance of the object from a hash.
|
149
|
+
def self.from_hash(hash)
|
150
|
+
return nil unless hash
|
151
|
+
|
152
|
+
# Extract variables from the hash.
|
153
|
+
product_handle =
|
154
|
+
hash.key?('product_handle') ? hash['product_handle'] : SKIP
|
155
|
+
product_id = hash.key?('product_id') ? hash['product_id'] : SKIP
|
156
|
+
product_price_point_id =
|
157
|
+
hash.key?('product_price_point_id') ? hash['product_price_point_id'] : SKIP
|
158
|
+
product_price_point_handle =
|
159
|
+
hash.key?('product_price_point_handle') ? hash['product_price_point_handle'] : SKIP
|
160
|
+
offer_id = hash.key?('offer_id') ? hash['offer_id'] : SKIP
|
161
|
+
reference = hash.key?('reference') ? hash['reference'] : SKIP
|
162
|
+
primary = hash.key?('primary') ? hash['primary'] : SKIP
|
163
|
+
currency = hash.key?('currency') ? hash['currency'] : SKIP
|
164
|
+
coupon_codes = hash.key?('coupon_codes') ? hash['coupon_codes'] : SKIP
|
165
|
+
# Parameter is an array, so we need to iterate through it
|
166
|
+
components = nil
|
167
|
+
unless hash['components'].nil?
|
168
|
+
components = []
|
169
|
+
hash['components'].each do |structure|
|
170
|
+
components << (SubscriptionGroupSignupComponent.from_hash(structure) if structure)
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
components = SKIP unless hash.key?('components')
|
175
|
+
custom_price = SubscriptionCustomPrice.from_hash(hash['custom_price']) if
|
176
|
+
hash['custom_price']
|
177
|
+
calendar_billing = CalendarBilling.from_hash(hash['calendar_billing']) if
|
178
|
+
hash['calendar_billing']
|
179
|
+
metafields = hash.key?('metafields') ? hash['metafields'] : SKIP
|
180
|
+
|
181
|
+
# Create object from extracted values.
|
182
|
+
SubscriptionGroupSignupItem.new(product_handle,
|
183
|
+
product_id,
|
184
|
+
product_price_point_id,
|
185
|
+
product_price_point_handle,
|
186
|
+
offer_id,
|
187
|
+
reference,
|
188
|
+
primary,
|
189
|
+
currency,
|
190
|
+
coupon_codes,
|
191
|
+
components,
|
192
|
+
custom_price,
|
193
|
+
calendar_billing,
|
194
|
+
metafields)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# advanced_billing
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AdvancedBilling
|
7
|
+
# SubscriptionGroupSignupRequest Model.
|
8
|
+
class SubscriptionGroupSignupRequest < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# TODO: Write general description for this method
|
13
|
+
# @return [SubscriptionGroupSignup]
|
14
|
+
attr_accessor :subscription_group
|
15
|
+
|
16
|
+
# A mapping from model property names to API property names.
|
17
|
+
def self.names
|
18
|
+
@_hash = {} if @_hash.nil?
|
19
|
+
@_hash['subscription_group'] = 'subscription_group'
|
20
|
+
@_hash
|
21
|
+
end
|
22
|
+
|
23
|
+
# An array for optional fields
|
24
|
+
def self.optionals
|
25
|
+
[]
|
26
|
+
end
|
27
|
+
|
28
|
+
# An array for nullable fields
|
29
|
+
def self.nullables
|
30
|
+
[]
|
31
|
+
end
|
32
|
+
|
33
|
+
def initialize(subscription_group = nil)
|
34
|
+
@subscription_group = subscription_group
|
35
|
+
end
|
36
|
+
|
37
|
+
# Creates an instance of the object from a hash.
|
38
|
+
def self.from_hash(hash)
|
39
|
+
return nil unless hash
|
40
|
+
|
41
|
+
# Extract variables from the hash.
|
42
|
+
subscription_group = SubscriptionGroupSignup.from_hash(hash['subscription_group']) if
|
43
|
+
hash['subscription_group']
|
44
|
+
|
45
|
+
# Create object from extracted values.
|
46
|
+
SubscriptionGroupSignupRequest.new(subscription_group)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,171 @@
|
|
1
|
+
# advanced_billing
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AdvancedBilling
|
7
|
+
# SubscriptionGroupSignupResponse Model.
|
8
|
+
class SubscriptionGroupSignupResponse < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# TODO: Write general description for this method
|
13
|
+
# @return [String]
|
14
|
+
attr_accessor :uid
|
15
|
+
|
16
|
+
# TODO: Write general description for this method
|
17
|
+
# @return [Integer]
|
18
|
+
attr_accessor :scheme
|
19
|
+
|
20
|
+
# TODO: Write general description for this method
|
21
|
+
# @return [Integer]
|
22
|
+
attr_accessor :customer_id
|
23
|
+
|
24
|
+
# TODO: Write general description for this method
|
25
|
+
# @return [Integer]
|
26
|
+
attr_accessor :payment_profile_id
|
27
|
+
|
28
|
+
# TODO: Write general description for this method
|
29
|
+
# @return [Array[Integer]]
|
30
|
+
attr_accessor :subscription_ids
|
31
|
+
|
32
|
+
# TODO: Write general description for this method
|
33
|
+
# @return [Integer]
|
34
|
+
attr_accessor :primary_subscription_id
|
35
|
+
|
36
|
+
# TODO: Write general description for this method
|
37
|
+
# @return [String]
|
38
|
+
attr_accessor :next_assessment_at
|
39
|
+
|
40
|
+
# TODO: Write general description for this method
|
41
|
+
# @return [String]
|
42
|
+
attr_accessor :state
|
43
|
+
|
44
|
+
# TODO: Write general description for this method
|
45
|
+
# @return [TrueClass | FalseClass]
|
46
|
+
attr_accessor :cancel_at_end_of_period
|
47
|
+
|
48
|
+
# TODO: Write general description for this method
|
49
|
+
# @return [Array[SubscriptionGroupItem]]
|
50
|
+
attr_accessor :subscriptions
|
51
|
+
|
52
|
+
# The type of payment collection to be used in the subscription. For legacy
|
53
|
+
# Statements Architecture valid options are - `invoice`, `automatic`. For
|
54
|
+
# current Relationship Invoicing Architecture valid options are -
|
55
|
+
# `remittance`, `automatic`, `prepaid`.
|
56
|
+
# @return [CollectionMethod]
|
57
|
+
attr_accessor :payment_collection_method
|
58
|
+
|
59
|
+
# A mapping from model property names to API property names.
|
60
|
+
def self.names
|
61
|
+
@_hash = {} if @_hash.nil?
|
62
|
+
@_hash['uid'] = 'uid'
|
63
|
+
@_hash['scheme'] = 'scheme'
|
64
|
+
@_hash['customer_id'] = 'customer_id'
|
65
|
+
@_hash['payment_profile_id'] = 'payment_profile_id'
|
66
|
+
@_hash['subscription_ids'] = 'subscription_ids'
|
67
|
+
@_hash['primary_subscription_id'] = 'primary_subscription_id'
|
68
|
+
@_hash['next_assessment_at'] = 'next_assessment_at'
|
69
|
+
@_hash['state'] = 'state'
|
70
|
+
@_hash['cancel_at_end_of_period'] = 'cancel_at_end_of_period'
|
71
|
+
@_hash['subscriptions'] = 'subscriptions'
|
72
|
+
@_hash['payment_collection_method'] = 'payment_collection_method'
|
73
|
+
@_hash
|
74
|
+
end
|
75
|
+
|
76
|
+
# An array for optional fields
|
77
|
+
def self.optionals
|
78
|
+
%w[
|
79
|
+
uid
|
80
|
+
scheme
|
81
|
+
customer_id
|
82
|
+
payment_profile_id
|
83
|
+
subscription_ids
|
84
|
+
primary_subscription_id
|
85
|
+
next_assessment_at
|
86
|
+
state
|
87
|
+
cancel_at_end_of_period
|
88
|
+
subscriptions
|
89
|
+
payment_collection_method
|
90
|
+
]
|
91
|
+
end
|
92
|
+
|
93
|
+
# An array for nullable fields
|
94
|
+
def self.nullables
|
95
|
+
[]
|
96
|
+
end
|
97
|
+
|
98
|
+
def initialize(uid = SKIP,
|
99
|
+
scheme = SKIP,
|
100
|
+
customer_id = SKIP,
|
101
|
+
payment_profile_id = SKIP,
|
102
|
+
subscription_ids = SKIP,
|
103
|
+
primary_subscription_id = SKIP,
|
104
|
+
next_assessment_at = SKIP,
|
105
|
+
state = SKIP,
|
106
|
+
cancel_at_end_of_period = SKIP,
|
107
|
+
subscriptions = SKIP,
|
108
|
+
payment_collection_method = CollectionMethod::AUTOMATIC)
|
109
|
+
@uid = uid unless uid == SKIP
|
110
|
+
@scheme = scheme unless scheme == SKIP
|
111
|
+
@customer_id = customer_id unless customer_id == SKIP
|
112
|
+
@payment_profile_id = payment_profile_id unless payment_profile_id == SKIP
|
113
|
+
@subscription_ids = subscription_ids unless subscription_ids == SKIP
|
114
|
+
@primary_subscription_id = primary_subscription_id unless primary_subscription_id == SKIP
|
115
|
+
@next_assessment_at = next_assessment_at unless next_assessment_at == SKIP
|
116
|
+
@state = state unless state == SKIP
|
117
|
+
@cancel_at_end_of_period = cancel_at_end_of_period unless cancel_at_end_of_period == SKIP
|
118
|
+
@subscriptions = subscriptions unless subscriptions == SKIP
|
119
|
+
unless payment_collection_method == SKIP
|
120
|
+
@payment_collection_method =
|
121
|
+
payment_collection_method
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
# Creates an instance of the object from a hash.
|
126
|
+
def self.from_hash(hash)
|
127
|
+
return nil unless hash
|
128
|
+
|
129
|
+
# Extract variables from the hash.
|
130
|
+
uid = hash.key?('uid') ? hash['uid'] : SKIP
|
131
|
+
scheme = hash.key?('scheme') ? hash['scheme'] : SKIP
|
132
|
+
customer_id = hash.key?('customer_id') ? hash['customer_id'] : SKIP
|
133
|
+
payment_profile_id =
|
134
|
+
hash.key?('payment_profile_id') ? hash['payment_profile_id'] : SKIP
|
135
|
+
subscription_ids =
|
136
|
+
hash.key?('subscription_ids') ? hash['subscription_ids'] : SKIP
|
137
|
+
primary_subscription_id =
|
138
|
+
hash.key?('primary_subscription_id') ? hash['primary_subscription_id'] : SKIP
|
139
|
+
next_assessment_at =
|
140
|
+
hash.key?('next_assessment_at') ? hash['next_assessment_at'] : SKIP
|
141
|
+
state = hash.key?('state') ? hash['state'] : SKIP
|
142
|
+
cancel_at_end_of_period =
|
143
|
+
hash.key?('cancel_at_end_of_period') ? hash['cancel_at_end_of_period'] : SKIP
|
144
|
+
# Parameter is an array, so we need to iterate through it
|
145
|
+
subscriptions = nil
|
146
|
+
unless hash['subscriptions'].nil?
|
147
|
+
subscriptions = []
|
148
|
+
hash['subscriptions'].each do |structure|
|
149
|
+
subscriptions << (SubscriptionGroupItem.from_hash(structure) if structure)
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
subscriptions = SKIP unless hash.key?('subscriptions')
|
154
|
+
payment_collection_method =
|
155
|
+
hash['payment_collection_method'] ||= CollectionMethod::AUTOMATIC
|
156
|
+
|
157
|
+
# Create object from extracted values.
|
158
|
+
SubscriptionGroupSignupResponse.new(uid,
|
159
|
+
scheme,
|
160
|
+
customer_id,
|
161
|
+
payment_profile_id,
|
162
|
+
subscription_ids,
|
163
|
+
primary_subscription_id,
|
164
|
+
next_assessment_at,
|
165
|
+
state,
|
166
|
+
cancel_at_end_of_period,
|
167
|
+
subscriptions,
|
168
|
+
payment_collection_method)
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# advanced_billing
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AdvancedBilling
|
7
|
+
# SubscriptionGroupSignupSuccess Model.
|
8
|
+
class SubscriptionGroupSignupSuccess < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# TODO: Write general description for this method
|
13
|
+
# @return [SubscriptionGroupSignupSuccessData]
|
14
|
+
attr_accessor :subscription_group
|
15
|
+
|
16
|
+
# TODO: Write general description for this method
|
17
|
+
# @return [Customer]
|
18
|
+
attr_accessor :customer
|
19
|
+
|
20
|
+
# A mapping from model property names to API property names.
|
21
|
+
def self.names
|
22
|
+
@_hash = {} if @_hash.nil?
|
23
|
+
@_hash['subscription_group'] = 'subscription_group'
|
24
|
+
@_hash['customer'] = 'customer'
|
25
|
+
@_hash
|
26
|
+
end
|
27
|
+
|
28
|
+
# An array for optional fields
|
29
|
+
def self.optionals
|
30
|
+
[]
|
31
|
+
end
|
32
|
+
|
33
|
+
# An array for nullable fields
|
34
|
+
def self.nullables
|
35
|
+
[]
|
36
|
+
end
|
37
|
+
|
38
|
+
def initialize(subscription_group = nil,
|
39
|
+
customer = nil)
|
40
|
+
@subscription_group = subscription_group
|
41
|
+
@customer = customer
|
42
|
+
end
|
43
|
+
|
44
|
+
# Creates an instance of the object from a hash.
|
45
|
+
def self.from_hash(hash)
|
46
|
+
return nil unless hash
|
47
|
+
|
48
|
+
# Extract variables from the hash.
|
49
|
+
if hash['subscription_group']
|
50
|
+
subscription_group = SubscriptionGroupSignupSuccessData.from_hash(hash['subscription_group'])
|
51
|
+
end
|
52
|
+
customer = Customer.from_hash(hash['customer']) if hash['customer']
|
53
|
+
|
54
|
+
# Create object from extracted values.
|
55
|
+
SubscriptionGroupSignupSuccess.new(subscription_group,
|
56
|
+
customer)
|
57
|
+
end
|
58
|
+
|
59
|
+
# Validates an instance of the object from a given value.
|
60
|
+
# @param [SubscriptionGroupSignupSuccess | Hash] The value against the validation is performed.
|
61
|
+
def self.validate(value)
|
62
|
+
if value.instance_of? self
|
63
|
+
return (
|
64
|
+
APIHelper.valid_type?(value.subscription_group,
|
65
|
+
->(val) { SubscriptionGroupSignupSuccessData.validate(val) }) and
|
66
|
+
APIHelper.valid_type?(value.customer,
|
67
|
+
->(val) { Customer.validate(val) })
|
68
|
+
)
|
69
|
+
end
|
70
|
+
|
71
|
+
return false unless value.instance_of? Hash
|
72
|
+
|
73
|
+
(
|
74
|
+
APIHelper.valid_type?(value['subscription_group'],
|
75
|
+
->(val) { SubscriptionGroupSignupSuccessData.validate(val) }) and
|
76
|
+
APIHelper.valid_type?(value['customer'],
|
77
|
+
->(val) { Customer.validate(val) })
|
78
|
+
)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,125 @@
|
|
1
|
+
# advanced_billing
|
2
|
+
#
|
3
|
+
# This file was automatically generated by APIMATIC v2.0
|
4
|
+
# ( https://apimatic.io ).
|
5
|
+
|
6
|
+
module AdvancedBilling
|
7
|
+
# SubscriptionGroupSignupSuccessData Model.
|
8
|
+
class SubscriptionGroupSignupSuccessData < BaseModel
|
9
|
+
SKIP = Object.new
|
10
|
+
private_constant :SKIP
|
11
|
+
|
12
|
+
# TODO: Write general description for this method
|
13
|
+
# @return [String]
|
14
|
+
attr_accessor :uid
|
15
|
+
|
16
|
+
# TODO: Write general description for this method
|
17
|
+
# @return [Integer]
|
18
|
+
attr_accessor :scheme
|
19
|
+
|
20
|
+
# TODO: Write general description for this method
|
21
|
+
# @return [Integer]
|
22
|
+
attr_accessor :customer_id
|
23
|
+
|
24
|
+
# TODO: Write general description for this method
|
25
|
+
# @return [Integer]
|
26
|
+
attr_accessor :payment_profile_id
|
27
|
+
|
28
|
+
# TODO: Write general description for this method
|
29
|
+
# @return [Array[Integer]]
|
30
|
+
attr_accessor :subscription_ids
|
31
|
+
|
32
|
+
# TODO: Write general description for this method
|
33
|
+
# @return [Integer]
|
34
|
+
attr_accessor :primary_subscription_id
|
35
|
+
|
36
|
+
# TODO: Write general description for this method
|
37
|
+
# @return [String]
|
38
|
+
attr_accessor :next_assessment_at
|
39
|
+
|
40
|
+
# TODO: Write general description for this method
|
41
|
+
# @return [String]
|
42
|
+
attr_accessor :state
|
43
|
+
|
44
|
+
# TODO: Write general description for this method
|
45
|
+
# @return [TrueClass | FalseClass]
|
46
|
+
attr_accessor :cancel_at_end_of_period
|
47
|
+
|
48
|
+
# A mapping from model property names to API property names.
|
49
|
+
def self.names
|
50
|
+
@_hash = {} if @_hash.nil?
|
51
|
+
@_hash['uid'] = 'uid'
|
52
|
+
@_hash['scheme'] = 'scheme'
|
53
|
+
@_hash['customer_id'] = 'customer_id'
|
54
|
+
@_hash['payment_profile_id'] = 'payment_profile_id'
|
55
|
+
@_hash['subscription_ids'] = 'subscription_ids'
|
56
|
+
@_hash['primary_subscription_id'] = 'primary_subscription_id'
|
57
|
+
@_hash['next_assessment_at'] = 'next_assessment_at'
|
58
|
+
@_hash['state'] = 'state'
|
59
|
+
@_hash['cancel_at_end_of_period'] = 'cancel_at_end_of_period'
|
60
|
+
@_hash
|
61
|
+
end
|
62
|
+
|
63
|
+
# An array for optional fields
|
64
|
+
def self.optionals
|
65
|
+
[]
|
66
|
+
end
|
67
|
+
|
68
|
+
# An array for nullable fields
|
69
|
+
def self.nullables
|
70
|
+
[]
|
71
|
+
end
|
72
|
+
|
73
|
+
def initialize(uid = nil,
|
74
|
+
scheme = nil,
|
75
|
+
customer_id = nil,
|
76
|
+
payment_profile_id = nil,
|
77
|
+
subscription_ids = nil,
|
78
|
+
primary_subscription_id = nil,
|
79
|
+
next_assessment_at = nil,
|
80
|
+
state = nil,
|
81
|
+
cancel_at_end_of_period = nil)
|
82
|
+
@uid = uid
|
83
|
+
@scheme = scheme
|
84
|
+
@customer_id = customer_id
|
85
|
+
@payment_profile_id = payment_profile_id
|
86
|
+
@subscription_ids = subscription_ids
|
87
|
+
@primary_subscription_id = primary_subscription_id
|
88
|
+
@next_assessment_at = next_assessment_at
|
89
|
+
@state = state
|
90
|
+
@cancel_at_end_of_period = cancel_at_end_of_period
|
91
|
+
end
|
92
|
+
|
93
|
+
# Creates an instance of the object from a hash.
|
94
|
+
def self.from_hash(hash)
|
95
|
+
return nil unless hash
|
96
|
+
|
97
|
+
# Extract variables from the hash.
|
98
|
+
uid = hash.key?('uid') ? hash['uid'] : nil
|
99
|
+
scheme = hash.key?('scheme') ? hash['scheme'] : nil
|
100
|
+
customer_id = hash.key?('customer_id') ? hash['customer_id'] : nil
|
101
|
+
payment_profile_id =
|
102
|
+
hash.key?('payment_profile_id') ? hash['payment_profile_id'] : nil
|
103
|
+
subscription_ids =
|
104
|
+
hash.key?('subscription_ids') ? hash['subscription_ids'] : nil
|
105
|
+
primary_subscription_id =
|
106
|
+
hash.key?('primary_subscription_id') ? hash['primary_subscription_id'] : nil
|
107
|
+
next_assessment_at =
|
108
|
+
hash.key?('next_assessment_at') ? hash['next_assessment_at'] : nil
|
109
|
+
state = hash.key?('state') ? hash['state'] : nil
|
110
|
+
cancel_at_end_of_period =
|
111
|
+
hash.key?('cancel_at_end_of_period') ? hash['cancel_at_end_of_period'] : nil
|
112
|
+
|
113
|
+
# Create object from extracted values.
|
114
|
+
SubscriptionGroupSignupSuccessData.new(uid,
|
115
|
+
scheme,
|
116
|
+
customer_id,
|
117
|
+
payment_profile_id,
|
118
|
+
subscription_ids,
|
119
|
+
primary_subscription_id,
|
120
|
+
next_assessment_at,
|
121
|
+
state,
|
122
|
+
cancel_at_end_of_period)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|