whop-sdk 0.0.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- whop_sdk/__init__.py +94 -0
- whop_sdk/_base_client.py +1995 -0
- whop_sdk/_client.py +800 -0
- whop_sdk/_compat.py +219 -0
- whop_sdk/_constants.py +14 -0
- whop_sdk/_exceptions.py +112 -0
- whop_sdk/_files.py +123 -0
- whop_sdk/_models.py +857 -0
- whop_sdk/_qs.py +150 -0
- whop_sdk/_resource.py +43 -0
- whop_sdk/_response.py +830 -0
- whop_sdk/_streaming.py +333 -0
- whop_sdk/_types.py +260 -0
- whop_sdk/_utils/__init__.py +64 -0
- whop_sdk/_utils/_compat.py +45 -0
- whop_sdk/_utils/_datetime_parse.py +136 -0
- whop_sdk/_utils/_logs.py +25 -0
- whop_sdk/_utils/_proxy.py +65 -0
- whop_sdk/_utils/_reflection.py +42 -0
- whop_sdk/_utils/_resources_proxy.py +24 -0
- whop_sdk/_utils/_streams.py +12 -0
- whop_sdk/_utils/_sync.py +58 -0
- whop_sdk/_utils/_transform.py +457 -0
- whop_sdk/_utils/_typing.py +156 -0
- whop_sdk/_utils/_utils.py +421 -0
- whop_sdk/_version.py +4 -0
- whop_sdk/lib/.keep +4 -0
- whop_sdk/pagination.py +61 -0
- whop_sdk/py.typed +0 -0
- whop_sdk/resources/__init__.py +540 -0
- whop_sdk/resources/access_tokens.py +341 -0
- whop_sdk/resources/account_links.py +211 -0
- whop_sdk/resources/app_builds.py +587 -0
- whop_sdk/resources/apps.py +684 -0
- whop_sdk/resources/authorized_users.py +353 -0
- whop_sdk/resources/chat_channels.py +469 -0
- whop_sdk/resources/checkout_configurations.py +776 -0
- whop_sdk/resources/companies.py +465 -0
- whop_sdk/resources/course_chapters.py +602 -0
- whop_sdk/resources/course_lesson_interactions.py +343 -0
- whop_sdk/resources/course_lessons.py +1040 -0
- whop_sdk/resources/course_students.py +327 -0
- whop_sdk/resources/courses.py +776 -0
- whop_sdk/resources/disputes.py +693 -0
- whop_sdk/resources/entries.py +556 -0
- whop_sdk/resources/experiences.py +983 -0
- whop_sdk/resources/forum_posts.py +656 -0
- whop_sdk/resources/forums.py +446 -0
- whop_sdk/resources/invoices.py +1099 -0
- whop_sdk/resources/ledger_accounts.py +171 -0
- whop_sdk/resources/members.py +429 -0
- whop_sdk/resources/memberships.py +818 -0
- whop_sdk/resources/messages.py +558 -0
- whop_sdk/resources/notifications.py +388 -0
- whop_sdk/resources/payment_tokens.py +359 -0
- whop_sdk/resources/payments.py +1040 -0
- whop_sdk/resources/plans.py +1001 -0
- whop_sdk/resources/products.py +970 -0
- whop_sdk/resources/promo_codes.py +668 -0
- whop_sdk/resources/reactions.py +423 -0
- whop_sdk/resources/refunds.py +347 -0
- whop_sdk/resources/reviews.py +332 -0
- whop_sdk/resources/setup_intents.py +349 -0
- whop_sdk/resources/shipments.py +451 -0
- whop_sdk/resources/support_channels.py +455 -0
- whop_sdk/resources/transfers.py +513 -0
- whop_sdk/resources/users.py +248 -0
- whop_sdk/resources/webhooks.py +69 -0
- whop_sdk/resources/withdrawals.py +341 -0
- whop_sdk/types/__init__.py +262 -0
- whop_sdk/types/access_token_create_params.py +64 -0
- whop_sdk/types/access_token_create_response.py +15 -0
- whop_sdk/types/account_link_create_params.py +27 -0
- whop_sdk/types/account_link_create_response.py +15 -0
- whop_sdk/types/app_build_create_params.py +72 -0
- whop_sdk/types/app_build_list_params.py +42 -0
- whop_sdk/types/app_build_list_response.py +50 -0
- whop_sdk/types/app_create_params.py +19 -0
- whop_sdk/types/app_list_params.py +59 -0
- whop_sdk/types/app_list_response.py +110 -0
- whop_sdk/types/app_type.py +7 -0
- whop_sdk/types/app_update_params.py +67 -0
- whop_sdk/types/assessment_question_types.py +7 -0
- whop_sdk/types/authorized_user_list_params.py +41 -0
- whop_sdk/types/authorized_user_list_response.py +33 -0
- whop_sdk/types/authorized_user_retrieve_response.py +33 -0
- whop_sdk/types/billing_reasons.py +9 -0
- whop_sdk/types/card_brands.py +25 -0
- whop_sdk/types/chat_channel_list_params.py +28 -0
- whop_sdk/types/chat_channel_list_response.py +43 -0
- whop_sdk/types/chat_channel_update_params.py +32 -0
- whop_sdk/types/checkout_configuration_create_params.py +373 -0
- whop_sdk/types/checkout_configuration_list_params.py +41 -0
- whop_sdk/types/checkout_configuration_list_response.py +104 -0
- whop_sdk/types/checkout_modes.py +7 -0
- whop_sdk/types/company_create_params.py +22 -0
- whop_sdk/types/company_list_params.py +38 -0
- whop_sdk/types/company_list_response.py +76 -0
- whop_sdk/types/course.py +122 -0
- whop_sdk/types/course_chapter.py +32 -0
- whop_sdk/types/course_chapter_create_params.py +16 -0
- whop_sdk/types/course_chapter_delete_response.py +7 -0
- whop_sdk/types/course_chapter_list_params.py +25 -0
- whop_sdk/types/course_chapter_list_response.py +16 -0
- whop_sdk/types/course_chapter_update_params.py +12 -0
- whop_sdk/types/course_create_params.py +78 -0
- whop_sdk/types/course_delete_response.py +7 -0
- whop_sdk/types/course_lesson_create_params.py +63 -0
- whop_sdk/types/course_lesson_delete_response.py +7 -0
- whop_sdk/types/course_lesson_interaction_completed_webhook_event.py +26 -0
- whop_sdk/types/course_lesson_interaction_list_params.py +34 -0
- whop_sdk/types/course_lesson_list_params.py +28 -0
- whop_sdk/types/course_lesson_list_response.py +57 -0
- whop_sdk/types/course_lesson_mark_as_completed_response.py +7 -0
- whop_sdk/types/course_lesson_start_response.py +7 -0
- whop_sdk/types/course_lesson_submit_assessment_params.py +26 -0
- whop_sdk/types/course_lesson_submit_assessment_response.py +62 -0
- whop_sdk/types/course_lesson_update_params.py +222 -0
- whop_sdk/types/course_list_params.py +28 -0
- whop_sdk/types/course_list_response.py +90 -0
- whop_sdk/types/course_student_list_params.py +28 -0
- whop_sdk/types/course_student_list_response.py +42 -0
- whop_sdk/types/course_student_retrieve_response.py +61 -0
- whop_sdk/types/course_update_params.py +114 -0
- whop_sdk/types/course_visibilities.py +7 -0
- whop_sdk/types/dispute.py +284 -0
- whop_sdk/types/dispute_created_webhook_event.py +26 -0
- whop_sdk/types/dispute_list_params.py +38 -0
- whop_sdk/types/dispute_list_response.py +77 -0
- whop_sdk/types/dispute_statuses.py +17 -0
- whop_sdk/types/dispute_update_evidence_params.py +159 -0
- whop_sdk/types/dispute_updated_webhook_event.py +26 -0
- whop_sdk/types/embed_type.py +7 -0
- whop_sdk/types/entry_approve_response.py +10 -0
- whop_sdk/types/entry_approved_webhook_event.py +26 -0
- whop_sdk/types/entry_created_webhook_event.py +26 -0
- whop_sdk/types/entry_deleted_webhook_event.py +26 -0
- whop_sdk/types/entry_denied_webhook_event.py +26 -0
- whop_sdk/types/entry_list_params.py +52 -0
- whop_sdk/types/entry_list_response.py +56 -0
- whop_sdk/types/experience_attach_params.py +12 -0
- whop_sdk/types/experience_create_params.py +22 -0
- whop_sdk/types/experience_delete_response.py +7 -0
- whop_sdk/types/experience_detach_params.py +12 -0
- whop_sdk/types/experience_duplicate_params.py +13 -0
- whop_sdk/types/experience_list_params.py +40 -0
- whop_sdk/types/experience_list_response.py +73 -0
- whop_sdk/types/experience_update_params.py +46 -0
- whop_sdk/types/forum_list_params.py +28 -0
- whop_sdk/types/forum_list_response.py +33 -0
- whop_sdk/types/forum_post_create_params.py +101 -0
- whop_sdk/types/forum_post_list_params.py +31 -0
- whop_sdk/types/forum_post_list_response.py +60 -0
- whop_sdk/types/forum_post_update_params.py +56 -0
- whop_sdk/types/forum_post_visibility_type.py +7 -0
- whop_sdk/types/forum_update_params.py +23 -0
- whop_sdk/types/invoice_create_params.py +515 -0
- whop_sdk/types/invoice_created_webhook_event.py +26 -0
- whop_sdk/types/invoice_list_params.py +53 -0
- whop_sdk/types/invoice_paid_webhook_event.py +26 -0
- whop_sdk/types/invoice_past_due_webhook_event.py +26 -0
- whop_sdk/types/invoice_void_response.py +7 -0
- whop_sdk/types/invoice_voided_webhook_event.py +26 -0
- whop_sdk/types/languages.py +30 -0
- whop_sdk/types/ledger_account_retrieve_response.py +93 -0
- whop_sdk/types/lesson.py +219 -0
- whop_sdk/types/lesson_types.py +7 -0
- whop_sdk/types/lesson_visibilities.py +7 -0
- whop_sdk/types/member_list_params.py +73 -0
- whop_sdk/types/member_list_response.py +65 -0
- whop_sdk/types/member_retrieve_response.py +79 -0
- whop_sdk/types/membership_activated_webhook_event.py +29 -0
- whop_sdk/types/membership_cancel_params.py +13 -0
- whop_sdk/types/membership_deactivated_webhook_event.py +29 -0
- whop_sdk/types/membership_list_params.py +73 -0
- whop_sdk/types/membership_list_response.py +128 -0
- whop_sdk/types/membership_pause_params.py +16 -0
- whop_sdk/types/membership_update_params.py +13 -0
- whop_sdk/types/message_create_params.py +63 -0
- whop_sdk/types/message_list_params.py +30 -0
- whop_sdk/types/message_list_response.py +90 -0
- whop_sdk/types/message_update_params.py +45 -0
- whop_sdk/types/notification_create_params.py +93 -0
- whop_sdk/types/notification_create_response.py +10 -0
- whop_sdk/types/payment_create_params.py +162 -0
- whop_sdk/types/payment_failed_webhook_event.py +26 -0
- whop_sdk/types/payment_list_params.py +67 -0
- whop_sdk/types/payment_list_response.py +273 -0
- whop_sdk/types/payment_method_types.py +94 -0
- whop_sdk/types/payment_pending_webhook_event.py +26 -0
- whop_sdk/types/payment_provider.py +9 -0
- whop_sdk/types/payment_refund_params.py +13 -0
- whop_sdk/types/payment_succeeded_webhook_event.py +26 -0
- whop_sdk/types/payment_token_list_params.py +38 -0
- whop_sdk/types/payment_token_list_response.py +41 -0
- whop_sdk/types/payment_token_retrieve_params.py +12 -0
- whop_sdk/types/payment_token_retrieve_response.py +41 -0
- whop_sdk/types/plan_create_params.py +162 -0
- whop_sdk/types/plan_delete_response.py +7 -0
- whop_sdk/types/plan_list_params.py +57 -0
- whop_sdk/types/plan_list_response.py +128 -0
- whop_sdk/types/plan_update_params.py +155 -0
- whop_sdk/types/product_create_params.py +147 -0
- whop_sdk/types/product_delete_response.py +7 -0
- whop_sdk/types/product_list_params.py +49 -0
- whop_sdk/types/product_update_params.py +82 -0
- whop_sdk/types/promo_code.py +90 -0
- whop_sdk/types/promo_code_create_params.py +70 -0
- whop_sdk/types/promo_code_delete_response.py +7 -0
- whop_sdk/types/promo_code_list_params.py +45 -0
- whop_sdk/types/promo_code_list_response.py +79 -0
- whop_sdk/types/promo_code_status.py +7 -0
- whop_sdk/types/promo_duration.py +7 -0
- whop_sdk/types/reaction_create_params.py +19 -0
- whop_sdk/types/reaction_list_params.py +25 -0
- whop_sdk/types/reaction_list_response.py +32 -0
- whop_sdk/types/refund_created_webhook_event.py +154 -0
- whop_sdk/types/refund_list_params.py +38 -0
- whop_sdk/types/refund_list_response.py +53 -0
- whop_sdk/types/refund_reference_status.py +7 -0
- whop_sdk/types/refund_reference_type.py +9 -0
- whop_sdk/types/refund_retrieve_response.py +129 -0
- whop_sdk/types/refund_status.py +7 -0
- whop_sdk/types/refund_updated_webhook_event.py +154 -0
- whop_sdk/types/review_list_params.py +40 -0
- whop_sdk/types/review_list_response.py +78 -0
- whop_sdk/types/review_retrieve_response.py +103 -0
- whop_sdk/types/review_status.py +7 -0
- whop_sdk/types/setup_intent.py +111 -0
- whop_sdk/types/setup_intent_canceled_webhook_event.py +29 -0
- whop_sdk/types/setup_intent_list_params.py +38 -0
- whop_sdk/types/setup_intent_list_response.py +111 -0
- whop_sdk/types/setup_intent_requires_action_webhook_event.py +29 -0
- whop_sdk/types/setup_intent_status.py +7 -0
- whop_sdk/types/setup_intent_succeeded_webhook_event.py +29 -0
- whop_sdk/types/shared/__init__.py +62 -0
- whop_sdk/types/shared/access_level.py +7 -0
- whop_sdk/types/shared/access_pass_type.py +7 -0
- whop_sdk/types/shared/app.py +187 -0
- whop_sdk/types/shared/app_build.py +50 -0
- whop_sdk/types/shared/app_build_platforms.py +7 -0
- whop_sdk/types/shared/app_build_statuses.py +7 -0
- whop_sdk/types/shared/app_statuses.py +7 -0
- whop_sdk/types/shared/app_view_type.py +7 -0
- whop_sdk/types/shared/authorized_user_roles.py +9 -0
- whop_sdk/types/shared/business_types.py +22 -0
- whop_sdk/types/shared/chat_channel.py +43 -0
- whop_sdk/types/shared/checkout_configuration.py +104 -0
- whop_sdk/types/shared/collection_method.py +7 -0
- whop_sdk/types/shared/company.py +91 -0
- whop_sdk/types/shared/course_lesson_interaction.py +63 -0
- whop_sdk/types/shared/course_lesson_interaction_list_item.py +44 -0
- whop_sdk/types/shared/currency.py +93 -0
- whop_sdk/types/shared/custom_cta.py +21 -0
- whop_sdk/types/shared/direction.py +7 -0
- whop_sdk/types/shared/dms_post_types.py +7 -0
- whop_sdk/types/shared/email_notification_preferences.py +7 -0
- whop_sdk/types/shared/entry.py +70 -0
- whop_sdk/types/shared/entry_status.py +7 -0
- whop_sdk/types/shared/experience.py +91 -0
- whop_sdk/types/shared/forum.py +33 -0
- whop_sdk/types/shared/forum_post.py +60 -0
- whop_sdk/types/shared/friendly_receipt_status.py +24 -0
- whop_sdk/types/shared/global_affiliate_status.py +7 -0
- whop_sdk/types/shared/industry_types.py +67 -0
- whop_sdk/types/shared/invoice.py +64 -0
- whop_sdk/types/shared/invoice_list_item.py +64 -0
- whop_sdk/types/shared/invoice_status.py +7 -0
- whop_sdk/types/shared/member_most_recent_actions.py +22 -0
- whop_sdk/types/shared/member_statuses.py +7 -0
- whop_sdk/types/shared/membership.py +128 -0
- whop_sdk/types/shared/membership_status.py +9 -0
- whop_sdk/types/shared/message.py +90 -0
- whop_sdk/types/shared/page_info.py +21 -0
- whop_sdk/types/shared/payment.py +273 -0
- whop_sdk/types/shared/plan.py +159 -0
- whop_sdk/types/shared/plan_type.py +7 -0
- whop_sdk/types/shared/product.py +132 -0
- whop_sdk/types/shared/product_list_item.py +57 -0
- whop_sdk/types/shared/promo_type.py +7 -0
- whop_sdk/types/shared/reaction.py +32 -0
- whop_sdk/types/shared/receipt_status.py +7 -0
- whop_sdk/types/shared/release_method.py +7 -0
- whop_sdk/types/shared/shipment.py +48 -0
- whop_sdk/types/shared/shipment_carrier.py +84 -0
- whop_sdk/types/shared/shipment_status.py +18 -0
- whop_sdk/types/shared/shipment_substatus.py +36 -0
- whop_sdk/types/shared/support_channel.py +39 -0
- whop_sdk/types/shared/tax_type.py +7 -0
- whop_sdk/types/shared/transfer.py +112 -0
- whop_sdk/types/shared/visibility.py +7 -0
- whop_sdk/types/shared/visibility_filter.py +9 -0
- whop_sdk/types/shared/who_can_comment_types.py +7 -0
- whop_sdk/types/shared/who_can_post.py +7 -0
- whop_sdk/types/shared/who_can_post_types.py +7 -0
- whop_sdk/types/shared/who_can_react.py +7 -0
- whop_sdk/types/shared_params/__init__.py +34 -0
- whop_sdk/types/shared_params/access_level.py +9 -0
- whop_sdk/types/shared_params/access_pass_type.py +9 -0
- whop_sdk/types/shared_params/app_build_platforms.py +9 -0
- whop_sdk/types/shared_params/app_build_statuses.py +9 -0
- whop_sdk/types/shared_params/app_statuses.py +9 -0
- whop_sdk/types/shared_params/app_view_type.py +9 -0
- whop_sdk/types/shared_params/authorized_user_roles.py +11 -0
- whop_sdk/types/shared_params/business_types.py +24 -0
- whop_sdk/types/shared_params/collection_method.py +9 -0
- whop_sdk/types/shared_params/currency.py +95 -0
- whop_sdk/types/shared_params/custom_cta.py +23 -0
- whop_sdk/types/shared_params/direction.py +9 -0
- whop_sdk/types/shared_params/email_notification_preferences.py +9 -0
- whop_sdk/types/shared_params/entry_status.py +9 -0
- whop_sdk/types/shared_params/friendly_receipt_status.py +26 -0
- whop_sdk/types/shared_params/global_affiliate_status.py +9 -0
- whop_sdk/types/shared_params/industry_types.py +69 -0
- whop_sdk/types/shared_params/invoice_status.py +9 -0
- whop_sdk/types/shared_params/member_most_recent_actions.py +24 -0
- whop_sdk/types/shared_params/member_statuses.py +9 -0
- whop_sdk/types/shared_params/membership_status.py +11 -0
- whop_sdk/types/shared_params/plan_type.py +9 -0
- whop_sdk/types/shared_params/promo_type.py +9 -0
- whop_sdk/types/shared_params/receipt_status.py +9 -0
- whop_sdk/types/shared_params/release_method.py +9 -0
- whop_sdk/types/shared_params/tax_type.py +9 -0
- whop_sdk/types/shared_params/visibility.py +9 -0
- whop_sdk/types/shared_params/visibility_filter.py +11 -0
- whop_sdk/types/shared_params/who_can_comment_types.py +9 -0
- whop_sdk/types/shared_params/who_can_post.py +9 -0
- whop_sdk/types/shared_params/who_can_post_types.py +9 -0
- whop_sdk/types/shared_params/who_can_react.py +9 -0
- whop_sdk/types/shipment_create_params.py +18 -0
- whop_sdk/types/shipment_list_params.py +31 -0
- whop_sdk/types/shipment_list_response.py +48 -0
- whop_sdk/types/support_channel_create_params.py +15 -0
- whop_sdk/types/support_channel_list_params.py +40 -0
- whop_sdk/types/support_channel_list_response.py +39 -0
- whop_sdk/types/transfer_create_params.py +39 -0
- whop_sdk/types/transfer_list_params.py +50 -0
- whop_sdk/types/transfer_list_response.py +38 -0
- whop_sdk/types/unwrap_webhook_event.py +52 -0
- whop_sdk/types/user_check_access_response.py +14 -0
- whop_sdk/types/user_retrieve_response.py +36 -0
- whop_sdk/types/withdrawal_fee_types.py +7 -0
- whop_sdk/types/withdrawal_list_params.py +38 -0
- whop_sdk/types/withdrawal_list_response.py +45 -0
- whop_sdk/types/withdrawal_retrieve_response.py +154 -0
- whop_sdk/types/withdrawal_speeds.py +7 -0
- whop_sdk/types/withdrawal_status.py +9 -0
- whop_sdk/types/withdrawal_types.py +7 -0
- whop_sdk-0.0.10.dist-info/METADATA +509 -0
- whop_sdk-0.0.10.dist-info/RECORD +352 -0
- whop_sdk-0.0.10.dist-info/WHEEL +4 -0
- whop_sdk-0.0.10.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,776 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict, Union, Optional
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from typing_extensions import Literal, overload
|
|
8
|
+
|
|
9
|
+
import httpx
|
|
10
|
+
|
|
11
|
+
from ..types import checkout_configuration_list_params, checkout_configuration_create_params
|
|
12
|
+
from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
|
|
13
|
+
from .._utils import required_args, maybe_transform, async_maybe_transform
|
|
14
|
+
from .._compat import cached_property
|
|
15
|
+
from .._resource import SyncAPIResource, AsyncAPIResource
|
|
16
|
+
from .._response import (
|
|
17
|
+
to_raw_response_wrapper,
|
|
18
|
+
to_streamed_response_wrapper,
|
|
19
|
+
async_to_raw_response_wrapper,
|
|
20
|
+
async_to_streamed_response_wrapper,
|
|
21
|
+
)
|
|
22
|
+
from ..pagination import SyncCursorPage, AsyncCursorPage
|
|
23
|
+
from .._base_client import AsyncPaginator, make_request_options
|
|
24
|
+
from ..types.shared.direction import Direction
|
|
25
|
+
from ..types.shared.checkout_configuration import CheckoutConfiguration
|
|
26
|
+
from ..types.checkout_configuration_list_response import CheckoutConfigurationListResponse
|
|
27
|
+
|
|
28
|
+
__all__ = ["CheckoutConfigurationsResource", "AsyncCheckoutConfigurationsResource"]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class CheckoutConfigurationsResource(SyncAPIResource):
|
|
32
|
+
@cached_property
|
|
33
|
+
def with_raw_response(self) -> CheckoutConfigurationsResourceWithRawResponse:
|
|
34
|
+
"""
|
|
35
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
36
|
+
the raw response object instead of the parsed content.
|
|
37
|
+
|
|
38
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#accessing-raw-response-data-eg-headers
|
|
39
|
+
"""
|
|
40
|
+
return CheckoutConfigurationsResourceWithRawResponse(self)
|
|
41
|
+
|
|
42
|
+
@cached_property
|
|
43
|
+
def with_streaming_response(self) -> CheckoutConfigurationsResourceWithStreamingResponse:
|
|
44
|
+
"""
|
|
45
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
46
|
+
|
|
47
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#with_streaming_response
|
|
48
|
+
"""
|
|
49
|
+
return CheckoutConfigurationsResourceWithStreamingResponse(self)
|
|
50
|
+
|
|
51
|
+
@overload
|
|
52
|
+
def create(
|
|
53
|
+
self,
|
|
54
|
+
*,
|
|
55
|
+
plan: checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPlan,
|
|
56
|
+
affiliate_code: Optional[str] | Omit = omit,
|
|
57
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
58
|
+
mode: Literal["payment"] | Omit = omit,
|
|
59
|
+
payment_method_configuration: Optional[
|
|
60
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPaymentMethodConfiguration
|
|
61
|
+
]
|
|
62
|
+
| Omit = omit,
|
|
63
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
64
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
65
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
66
|
+
extra_headers: Headers | None = None,
|
|
67
|
+
extra_query: Query | None = None,
|
|
68
|
+
extra_body: Body | None = None,
|
|
69
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
70
|
+
) -> CheckoutConfiguration:
|
|
71
|
+
"""
|
|
72
|
+
Creates a new checkout configuration
|
|
73
|
+
|
|
74
|
+
Required permissions:
|
|
75
|
+
|
|
76
|
+
- `checkout_configuration:create`
|
|
77
|
+
- `plan:create`
|
|
78
|
+
- `access_pass:create`
|
|
79
|
+
- `access_pass:update`
|
|
80
|
+
- `checkout_configuration:basic:read`
|
|
81
|
+
|
|
82
|
+
Args:
|
|
83
|
+
plan: Pass this object to create a new plan for this checkout configuration
|
|
84
|
+
|
|
85
|
+
affiliate_code: The affiliate code to use for the checkout configuration
|
|
86
|
+
|
|
87
|
+
metadata: The metadata to use for the checkout configuration
|
|
88
|
+
|
|
89
|
+
payment_method_configuration: This currently only works for configurations made in 'setup' mode. The explicit
|
|
90
|
+
payment method configuration for the checkout session. If not provided, the
|
|
91
|
+
platform or company's defaults will apply.
|
|
92
|
+
|
|
93
|
+
redirect_url: The URL to redirect the user to after the checkout configuration is created
|
|
94
|
+
|
|
95
|
+
extra_headers: Send extra headers
|
|
96
|
+
|
|
97
|
+
extra_query: Add additional query parameters to the request
|
|
98
|
+
|
|
99
|
+
extra_body: Add additional JSON properties to the request
|
|
100
|
+
|
|
101
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
102
|
+
"""
|
|
103
|
+
...
|
|
104
|
+
|
|
105
|
+
@overload
|
|
106
|
+
def create(
|
|
107
|
+
self,
|
|
108
|
+
*,
|
|
109
|
+
plan_id: str,
|
|
110
|
+
affiliate_code: Optional[str] | Omit = omit,
|
|
111
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
112
|
+
mode: Literal["payment"] | Omit = omit,
|
|
113
|
+
payment_method_configuration: Optional[
|
|
114
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanIDPaymentMethodConfiguration
|
|
115
|
+
]
|
|
116
|
+
| Omit = omit,
|
|
117
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
118
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
119
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
120
|
+
extra_headers: Headers | None = None,
|
|
121
|
+
extra_query: Query | None = None,
|
|
122
|
+
extra_body: Body | None = None,
|
|
123
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
124
|
+
) -> CheckoutConfiguration:
|
|
125
|
+
"""
|
|
126
|
+
Creates a new checkout configuration
|
|
127
|
+
|
|
128
|
+
Required permissions:
|
|
129
|
+
|
|
130
|
+
- `checkout_configuration:create`
|
|
131
|
+
- `plan:create`
|
|
132
|
+
- `access_pass:create`
|
|
133
|
+
- `access_pass:update`
|
|
134
|
+
- `checkout_configuration:basic:read`
|
|
135
|
+
|
|
136
|
+
Args:
|
|
137
|
+
plan_id: The ID of the plan to use for the checkout configuration
|
|
138
|
+
|
|
139
|
+
affiliate_code: The affiliate code to use for the checkout configuration
|
|
140
|
+
|
|
141
|
+
metadata: The metadata to use for the checkout configuration
|
|
142
|
+
|
|
143
|
+
payment_method_configuration: This currently only works for configurations made in 'setup' mode. The explicit
|
|
144
|
+
payment method configuration for the checkout session. If not provided, the
|
|
145
|
+
platform or company's defaults will apply.
|
|
146
|
+
|
|
147
|
+
redirect_url: The URL to redirect the user to after the checkout configuration is created
|
|
148
|
+
|
|
149
|
+
extra_headers: Send extra headers
|
|
150
|
+
|
|
151
|
+
extra_query: Add additional query parameters to the request
|
|
152
|
+
|
|
153
|
+
extra_body: Add additional JSON properties to the request
|
|
154
|
+
|
|
155
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
156
|
+
"""
|
|
157
|
+
...
|
|
158
|
+
|
|
159
|
+
@overload
|
|
160
|
+
def create(
|
|
161
|
+
self,
|
|
162
|
+
*,
|
|
163
|
+
company_id: str,
|
|
164
|
+
mode: Literal["setup"],
|
|
165
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
166
|
+
payment_method_configuration: Optional[
|
|
167
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModeSetupPaymentMethodConfiguration
|
|
168
|
+
]
|
|
169
|
+
| Omit = omit,
|
|
170
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
171
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
172
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
173
|
+
extra_headers: Headers | None = None,
|
|
174
|
+
extra_query: Query | None = None,
|
|
175
|
+
extra_body: Body | None = None,
|
|
176
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
177
|
+
) -> CheckoutConfiguration:
|
|
178
|
+
"""
|
|
179
|
+
Creates a new checkout configuration
|
|
180
|
+
|
|
181
|
+
Required permissions:
|
|
182
|
+
|
|
183
|
+
- `checkout_configuration:create`
|
|
184
|
+
- `plan:create`
|
|
185
|
+
- `access_pass:create`
|
|
186
|
+
- `access_pass:update`
|
|
187
|
+
- `checkout_configuration:basic:read`
|
|
188
|
+
|
|
189
|
+
Args:
|
|
190
|
+
company_id: The ID of the company for which to generate the checkout configuration. Only
|
|
191
|
+
required in setup mode.
|
|
192
|
+
|
|
193
|
+
metadata: The metadata to use for the checkout configuration
|
|
194
|
+
|
|
195
|
+
payment_method_configuration: This currently only works for configurations made in 'setup' mode. The explicit
|
|
196
|
+
payment method configuration for the checkout session. If not provided, the
|
|
197
|
+
platform or company's defaults will apply.
|
|
198
|
+
|
|
199
|
+
redirect_url: The URL to redirect the user to after the checkout configuration is created
|
|
200
|
+
|
|
201
|
+
extra_headers: Send extra headers
|
|
202
|
+
|
|
203
|
+
extra_query: Add additional query parameters to the request
|
|
204
|
+
|
|
205
|
+
extra_body: Add additional JSON properties to the request
|
|
206
|
+
|
|
207
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
208
|
+
"""
|
|
209
|
+
...
|
|
210
|
+
|
|
211
|
+
@required_args(["plan"], ["plan_id"], ["company_id", "mode"])
|
|
212
|
+
def create(
|
|
213
|
+
self,
|
|
214
|
+
*,
|
|
215
|
+
plan: checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPlan | Omit = omit,
|
|
216
|
+
affiliate_code: Optional[str] | Omit = omit,
|
|
217
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
218
|
+
mode: Literal["payment"] | Literal["setup"] | Omit = omit,
|
|
219
|
+
payment_method_configuration: Optional[
|
|
220
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPaymentMethodConfiguration
|
|
221
|
+
]
|
|
222
|
+
| Optional[
|
|
223
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanIDPaymentMethodConfiguration
|
|
224
|
+
]
|
|
225
|
+
| Optional[checkout_configuration_create_params.CreateCheckoutSessionInputModeSetupPaymentMethodConfiguration]
|
|
226
|
+
| Omit = omit,
|
|
227
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
228
|
+
plan_id: str | Omit = omit,
|
|
229
|
+
company_id: str | Omit = omit,
|
|
230
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
231
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
232
|
+
extra_headers: Headers | None = None,
|
|
233
|
+
extra_query: Query | None = None,
|
|
234
|
+
extra_body: Body | None = None,
|
|
235
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
236
|
+
) -> CheckoutConfiguration:
|
|
237
|
+
return self._post(
|
|
238
|
+
"/checkout_configurations",
|
|
239
|
+
body=maybe_transform(
|
|
240
|
+
{
|
|
241
|
+
"plan": plan,
|
|
242
|
+
"affiliate_code": affiliate_code,
|
|
243
|
+
"metadata": metadata,
|
|
244
|
+
"mode": mode,
|
|
245
|
+
"payment_method_configuration": payment_method_configuration,
|
|
246
|
+
"redirect_url": redirect_url,
|
|
247
|
+
"plan_id": plan_id,
|
|
248
|
+
"company_id": company_id,
|
|
249
|
+
},
|
|
250
|
+
checkout_configuration_create_params.CheckoutConfigurationCreateParams,
|
|
251
|
+
),
|
|
252
|
+
options=make_request_options(
|
|
253
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
254
|
+
),
|
|
255
|
+
cast_to=CheckoutConfiguration,
|
|
256
|
+
)
|
|
257
|
+
|
|
258
|
+
def retrieve(
|
|
259
|
+
self,
|
|
260
|
+
id: str,
|
|
261
|
+
*,
|
|
262
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
263
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
264
|
+
extra_headers: Headers | None = None,
|
|
265
|
+
extra_query: Query | None = None,
|
|
266
|
+
extra_body: Body | None = None,
|
|
267
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
268
|
+
) -> CheckoutConfiguration:
|
|
269
|
+
"""
|
|
270
|
+
Retrieves a checkout configuration by ID
|
|
271
|
+
|
|
272
|
+
Required permissions:
|
|
273
|
+
|
|
274
|
+
- `checkout_configuration:basic:read`
|
|
275
|
+
|
|
276
|
+
Args:
|
|
277
|
+
extra_headers: Send extra headers
|
|
278
|
+
|
|
279
|
+
extra_query: Add additional query parameters to the request
|
|
280
|
+
|
|
281
|
+
extra_body: Add additional JSON properties to the request
|
|
282
|
+
|
|
283
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
284
|
+
"""
|
|
285
|
+
if not id:
|
|
286
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
287
|
+
return self._get(
|
|
288
|
+
f"/checkout_configurations/{id}",
|
|
289
|
+
options=make_request_options(
|
|
290
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
291
|
+
),
|
|
292
|
+
cast_to=CheckoutConfiguration,
|
|
293
|
+
)
|
|
294
|
+
|
|
295
|
+
def list(
|
|
296
|
+
self,
|
|
297
|
+
*,
|
|
298
|
+
company_id: str,
|
|
299
|
+
after: Optional[str] | Omit = omit,
|
|
300
|
+
before: Optional[str] | Omit = omit,
|
|
301
|
+
created_after: Union[str, datetime, None] | Omit = omit,
|
|
302
|
+
created_before: Union[str, datetime, None] | Omit = omit,
|
|
303
|
+
direction: Optional[Direction] | Omit = omit,
|
|
304
|
+
first: Optional[int] | Omit = omit,
|
|
305
|
+
last: Optional[int] | Omit = omit,
|
|
306
|
+
plan_id: Optional[str] | Omit = omit,
|
|
307
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
308
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
309
|
+
extra_headers: Headers | None = None,
|
|
310
|
+
extra_query: Query | None = None,
|
|
311
|
+
extra_body: Body | None = None,
|
|
312
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
313
|
+
) -> SyncCursorPage[CheckoutConfigurationListResponse]:
|
|
314
|
+
"""
|
|
315
|
+
Lists checkout configurations
|
|
316
|
+
|
|
317
|
+
Required permissions:
|
|
318
|
+
|
|
319
|
+
- `checkout_configuration:basic:read`
|
|
320
|
+
|
|
321
|
+
Args:
|
|
322
|
+
company_id: The ID of the company to list checkout configurations for
|
|
323
|
+
|
|
324
|
+
after: Returns the elements in the list that come after the specified cursor.
|
|
325
|
+
|
|
326
|
+
before: Returns the elements in the list that come before the specified cursor.
|
|
327
|
+
|
|
328
|
+
created_after: The minimum creation date to filter by
|
|
329
|
+
|
|
330
|
+
created_before: The maximum creation date to filter by
|
|
331
|
+
|
|
332
|
+
direction: The direction of the sort.
|
|
333
|
+
|
|
334
|
+
first: Returns the first _n_ elements from the list.
|
|
335
|
+
|
|
336
|
+
last: Returns the last _n_ elements from the list.
|
|
337
|
+
|
|
338
|
+
plan_id: The ID of the plan to filter checkout configurations by
|
|
339
|
+
|
|
340
|
+
extra_headers: Send extra headers
|
|
341
|
+
|
|
342
|
+
extra_query: Add additional query parameters to the request
|
|
343
|
+
|
|
344
|
+
extra_body: Add additional JSON properties to the request
|
|
345
|
+
|
|
346
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
347
|
+
"""
|
|
348
|
+
return self._get_api_list(
|
|
349
|
+
"/checkout_configurations",
|
|
350
|
+
page=SyncCursorPage[CheckoutConfigurationListResponse],
|
|
351
|
+
options=make_request_options(
|
|
352
|
+
extra_headers=extra_headers,
|
|
353
|
+
extra_query=extra_query,
|
|
354
|
+
extra_body=extra_body,
|
|
355
|
+
timeout=timeout,
|
|
356
|
+
query=maybe_transform(
|
|
357
|
+
{
|
|
358
|
+
"company_id": company_id,
|
|
359
|
+
"after": after,
|
|
360
|
+
"before": before,
|
|
361
|
+
"created_after": created_after,
|
|
362
|
+
"created_before": created_before,
|
|
363
|
+
"direction": direction,
|
|
364
|
+
"first": first,
|
|
365
|
+
"last": last,
|
|
366
|
+
"plan_id": plan_id,
|
|
367
|
+
},
|
|
368
|
+
checkout_configuration_list_params.CheckoutConfigurationListParams,
|
|
369
|
+
),
|
|
370
|
+
),
|
|
371
|
+
model=CheckoutConfigurationListResponse,
|
|
372
|
+
)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class AsyncCheckoutConfigurationsResource(AsyncAPIResource):
|
|
376
|
+
@cached_property
|
|
377
|
+
def with_raw_response(self) -> AsyncCheckoutConfigurationsResourceWithRawResponse:
|
|
378
|
+
"""
|
|
379
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
380
|
+
the raw response object instead of the parsed content.
|
|
381
|
+
|
|
382
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#accessing-raw-response-data-eg-headers
|
|
383
|
+
"""
|
|
384
|
+
return AsyncCheckoutConfigurationsResourceWithRawResponse(self)
|
|
385
|
+
|
|
386
|
+
@cached_property
|
|
387
|
+
def with_streaming_response(self) -> AsyncCheckoutConfigurationsResourceWithStreamingResponse:
|
|
388
|
+
"""
|
|
389
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
390
|
+
|
|
391
|
+
For more information, see https://www.github.com/whopio/whopsdk-python#with_streaming_response
|
|
392
|
+
"""
|
|
393
|
+
return AsyncCheckoutConfigurationsResourceWithStreamingResponse(self)
|
|
394
|
+
|
|
395
|
+
@overload
|
|
396
|
+
async def create(
|
|
397
|
+
self,
|
|
398
|
+
*,
|
|
399
|
+
plan: checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPlan,
|
|
400
|
+
affiliate_code: Optional[str] | Omit = omit,
|
|
401
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
402
|
+
mode: Literal["payment"] | Omit = omit,
|
|
403
|
+
payment_method_configuration: Optional[
|
|
404
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPaymentMethodConfiguration
|
|
405
|
+
]
|
|
406
|
+
| Omit = omit,
|
|
407
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
408
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
409
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
410
|
+
extra_headers: Headers | None = None,
|
|
411
|
+
extra_query: Query | None = None,
|
|
412
|
+
extra_body: Body | None = None,
|
|
413
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
414
|
+
) -> CheckoutConfiguration:
|
|
415
|
+
"""
|
|
416
|
+
Creates a new checkout configuration
|
|
417
|
+
|
|
418
|
+
Required permissions:
|
|
419
|
+
|
|
420
|
+
- `checkout_configuration:create`
|
|
421
|
+
- `plan:create`
|
|
422
|
+
- `access_pass:create`
|
|
423
|
+
- `access_pass:update`
|
|
424
|
+
- `checkout_configuration:basic:read`
|
|
425
|
+
|
|
426
|
+
Args:
|
|
427
|
+
plan: Pass this object to create a new plan for this checkout configuration
|
|
428
|
+
|
|
429
|
+
affiliate_code: The affiliate code to use for the checkout configuration
|
|
430
|
+
|
|
431
|
+
metadata: The metadata to use for the checkout configuration
|
|
432
|
+
|
|
433
|
+
payment_method_configuration: This currently only works for configurations made in 'setup' mode. The explicit
|
|
434
|
+
payment method configuration for the checkout session. If not provided, the
|
|
435
|
+
platform or company's defaults will apply.
|
|
436
|
+
|
|
437
|
+
redirect_url: The URL to redirect the user to after the checkout configuration is created
|
|
438
|
+
|
|
439
|
+
extra_headers: Send extra headers
|
|
440
|
+
|
|
441
|
+
extra_query: Add additional query parameters to the request
|
|
442
|
+
|
|
443
|
+
extra_body: Add additional JSON properties to the request
|
|
444
|
+
|
|
445
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
446
|
+
"""
|
|
447
|
+
...
|
|
448
|
+
|
|
449
|
+
@overload
|
|
450
|
+
async def create(
|
|
451
|
+
self,
|
|
452
|
+
*,
|
|
453
|
+
plan_id: str,
|
|
454
|
+
affiliate_code: Optional[str] | Omit = omit,
|
|
455
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
456
|
+
mode: Literal["payment"] | Omit = omit,
|
|
457
|
+
payment_method_configuration: Optional[
|
|
458
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanIDPaymentMethodConfiguration
|
|
459
|
+
]
|
|
460
|
+
| Omit = omit,
|
|
461
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
462
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
463
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
464
|
+
extra_headers: Headers | None = None,
|
|
465
|
+
extra_query: Query | None = None,
|
|
466
|
+
extra_body: Body | None = None,
|
|
467
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
468
|
+
) -> CheckoutConfiguration:
|
|
469
|
+
"""
|
|
470
|
+
Creates a new checkout configuration
|
|
471
|
+
|
|
472
|
+
Required permissions:
|
|
473
|
+
|
|
474
|
+
- `checkout_configuration:create`
|
|
475
|
+
- `plan:create`
|
|
476
|
+
- `access_pass:create`
|
|
477
|
+
- `access_pass:update`
|
|
478
|
+
- `checkout_configuration:basic:read`
|
|
479
|
+
|
|
480
|
+
Args:
|
|
481
|
+
plan_id: The ID of the plan to use for the checkout configuration
|
|
482
|
+
|
|
483
|
+
affiliate_code: The affiliate code to use for the checkout configuration
|
|
484
|
+
|
|
485
|
+
metadata: The metadata to use for the checkout configuration
|
|
486
|
+
|
|
487
|
+
payment_method_configuration: This currently only works for configurations made in 'setup' mode. The explicit
|
|
488
|
+
payment method configuration for the checkout session. If not provided, the
|
|
489
|
+
platform or company's defaults will apply.
|
|
490
|
+
|
|
491
|
+
redirect_url: The URL to redirect the user to after the checkout configuration is created
|
|
492
|
+
|
|
493
|
+
extra_headers: Send extra headers
|
|
494
|
+
|
|
495
|
+
extra_query: Add additional query parameters to the request
|
|
496
|
+
|
|
497
|
+
extra_body: Add additional JSON properties to the request
|
|
498
|
+
|
|
499
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
500
|
+
"""
|
|
501
|
+
...
|
|
502
|
+
|
|
503
|
+
@overload
|
|
504
|
+
async def create(
|
|
505
|
+
self,
|
|
506
|
+
*,
|
|
507
|
+
company_id: str,
|
|
508
|
+
mode: Literal["setup"],
|
|
509
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
510
|
+
payment_method_configuration: Optional[
|
|
511
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModeSetupPaymentMethodConfiguration
|
|
512
|
+
]
|
|
513
|
+
| Omit = omit,
|
|
514
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
515
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
516
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
517
|
+
extra_headers: Headers | None = None,
|
|
518
|
+
extra_query: Query | None = None,
|
|
519
|
+
extra_body: Body | None = None,
|
|
520
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
521
|
+
) -> CheckoutConfiguration:
|
|
522
|
+
"""
|
|
523
|
+
Creates a new checkout configuration
|
|
524
|
+
|
|
525
|
+
Required permissions:
|
|
526
|
+
|
|
527
|
+
- `checkout_configuration:create`
|
|
528
|
+
- `plan:create`
|
|
529
|
+
- `access_pass:create`
|
|
530
|
+
- `access_pass:update`
|
|
531
|
+
- `checkout_configuration:basic:read`
|
|
532
|
+
|
|
533
|
+
Args:
|
|
534
|
+
company_id: The ID of the company for which to generate the checkout configuration. Only
|
|
535
|
+
required in setup mode.
|
|
536
|
+
|
|
537
|
+
metadata: The metadata to use for the checkout configuration
|
|
538
|
+
|
|
539
|
+
payment_method_configuration: This currently only works for configurations made in 'setup' mode. The explicit
|
|
540
|
+
payment method configuration for the checkout session. If not provided, the
|
|
541
|
+
platform or company's defaults will apply.
|
|
542
|
+
|
|
543
|
+
redirect_url: The URL to redirect the user to after the checkout configuration is created
|
|
544
|
+
|
|
545
|
+
extra_headers: Send extra headers
|
|
546
|
+
|
|
547
|
+
extra_query: Add additional query parameters to the request
|
|
548
|
+
|
|
549
|
+
extra_body: Add additional JSON properties to the request
|
|
550
|
+
|
|
551
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
552
|
+
"""
|
|
553
|
+
...
|
|
554
|
+
|
|
555
|
+
@required_args(["plan"], ["plan_id"], ["company_id", "mode"])
|
|
556
|
+
async def create(
|
|
557
|
+
self,
|
|
558
|
+
*,
|
|
559
|
+
plan: checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPlan | Omit = omit,
|
|
560
|
+
affiliate_code: Optional[str] | Omit = omit,
|
|
561
|
+
metadata: Optional[Dict[str, object]] | Omit = omit,
|
|
562
|
+
mode: Literal["payment"] | Literal["setup"] | Omit = omit,
|
|
563
|
+
payment_method_configuration: Optional[
|
|
564
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanPaymentMethodConfiguration
|
|
565
|
+
]
|
|
566
|
+
| Optional[
|
|
567
|
+
checkout_configuration_create_params.CreateCheckoutSessionInputModePaymentWithPlanIDPaymentMethodConfiguration
|
|
568
|
+
]
|
|
569
|
+
| Optional[checkout_configuration_create_params.CreateCheckoutSessionInputModeSetupPaymentMethodConfiguration]
|
|
570
|
+
| Omit = omit,
|
|
571
|
+
redirect_url: Optional[str] | Omit = omit,
|
|
572
|
+
plan_id: str | Omit = omit,
|
|
573
|
+
company_id: str | Omit = omit,
|
|
574
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
575
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
576
|
+
extra_headers: Headers | None = None,
|
|
577
|
+
extra_query: Query | None = None,
|
|
578
|
+
extra_body: Body | None = None,
|
|
579
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
580
|
+
) -> CheckoutConfiguration:
|
|
581
|
+
return await self._post(
|
|
582
|
+
"/checkout_configurations",
|
|
583
|
+
body=await async_maybe_transform(
|
|
584
|
+
{
|
|
585
|
+
"plan": plan,
|
|
586
|
+
"affiliate_code": affiliate_code,
|
|
587
|
+
"metadata": metadata,
|
|
588
|
+
"mode": mode,
|
|
589
|
+
"payment_method_configuration": payment_method_configuration,
|
|
590
|
+
"redirect_url": redirect_url,
|
|
591
|
+
"plan_id": plan_id,
|
|
592
|
+
"company_id": company_id,
|
|
593
|
+
},
|
|
594
|
+
checkout_configuration_create_params.CheckoutConfigurationCreateParams,
|
|
595
|
+
),
|
|
596
|
+
options=make_request_options(
|
|
597
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
598
|
+
),
|
|
599
|
+
cast_to=CheckoutConfiguration,
|
|
600
|
+
)
|
|
601
|
+
|
|
602
|
+
async def retrieve(
|
|
603
|
+
self,
|
|
604
|
+
id: str,
|
|
605
|
+
*,
|
|
606
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
607
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
608
|
+
extra_headers: Headers | None = None,
|
|
609
|
+
extra_query: Query | None = None,
|
|
610
|
+
extra_body: Body | None = None,
|
|
611
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
612
|
+
) -> CheckoutConfiguration:
|
|
613
|
+
"""
|
|
614
|
+
Retrieves a checkout configuration by ID
|
|
615
|
+
|
|
616
|
+
Required permissions:
|
|
617
|
+
|
|
618
|
+
- `checkout_configuration:basic:read`
|
|
619
|
+
|
|
620
|
+
Args:
|
|
621
|
+
extra_headers: Send extra headers
|
|
622
|
+
|
|
623
|
+
extra_query: Add additional query parameters to the request
|
|
624
|
+
|
|
625
|
+
extra_body: Add additional JSON properties to the request
|
|
626
|
+
|
|
627
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
628
|
+
"""
|
|
629
|
+
if not id:
|
|
630
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
631
|
+
return await self._get(
|
|
632
|
+
f"/checkout_configurations/{id}",
|
|
633
|
+
options=make_request_options(
|
|
634
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
635
|
+
),
|
|
636
|
+
cast_to=CheckoutConfiguration,
|
|
637
|
+
)
|
|
638
|
+
|
|
639
|
+
def list(
|
|
640
|
+
self,
|
|
641
|
+
*,
|
|
642
|
+
company_id: str,
|
|
643
|
+
after: Optional[str] | Omit = omit,
|
|
644
|
+
before: Optional[str] | Omit = omit,
|
|
645
|
+
created_after: Union[str, datetime, None] | Omit = omit,
|
|
646
|
+
created_before: Union[str, datetime, None] | Omit = omit,
|
|
647
|
+
direction: Optional[Direction] | Omit = omit,
|
|
648
|
+
first: Optional[int] | Omit = omit,
|
|
649
|
+
last: Optional[int] | Omit = omit,
|
|
650
|
+
plan_id: Optional[str] | Omit = omit,
|
|
651
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
652
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
653
|
+
extra_headers: Headers | None = None,
|
|
654
|
+
extra_query: Query | None = None,
|
|
655
|
+
extra_body: Body | None = None,
|
|
656
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
657
|
+
) -> AsyncPaginator[CheckoutConfigurationListResponse, AsyncCursorPage[CheckoutConfigurationListResponse]]:
|
|
658
|
+
"""
|
|
659
|
+
Lists checkout configurations
|
|
660
|
+
|
|
661
|
+
Required permissions:
|
|
662
|
+
|
|
663
|
+
- `checkout_configuration:basic:read`
|
|
664
|
+
|
|
665
|
+
Args:
|
|
666
|
+
company_id: The ID of the company to list checkout configurations for
|
|
667
|
+
|
|
668
|
+
after: Returns the elements in the list that come after the specified cursor.
|
|
669
|
+
|
|
670
|
+
before: Returns the elements in the list that come before the specified cursor.
|
|
671
|
+
|
|
672
|
+
created_after: The minimum creation date to filter by
|
|
673
|
+
|
|
674
|
+
created_before: The maximum creation date to filter by
|
|
675
|
+
|
|
676
|
+
direction: The direction of the sort.
|
|
677
|
+
|
|
678
|
+
first: Returns the first _n_ elements from the list.
|
|
679
|
+
|
|
680
|
+
last: Returns the last _n_ elements from the list.
|
|
681
|
+
|
|
682
|
+
plan_id: The ID of the plan to filter checkout configurations by
|
|
683
|
+
|
|
684
|
+
extra_headers: Send extra headers
|
|
685
|
+
|
|
686
|
+
extra_query: Add additional query parameters to the request
|
|
687
|
+
|
|
688
|
+
extra_body: Add additional JSON properties to the request
|
|
689
|
+
|
|
690
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
691
|
+
"""
|
|
692
|
+
return self._get_api_list(
|
|
693
|
+
"/checkout_configurations",
|
|
694
|
+
page=AsyncCursorPage[CheckoutConfigurationListResponse],
|
|
695
|
+
options=make_request_options(
|
|
696
|
+
extra_headers=extra_headers,
|
|
697
|
+
extra_query=extra_query,
|
|
698
|
+
extra_body=extra_body,
|
|
699
|
+
timeout=timeout,
|
|
700
|
+
query=maybe_transform(
|
|
701
|
+
{
|
|
702
|
+
"company_id": company_id,
|
|
703
|
+
"after": after,
|
|
704
|
+
"before": before,
|
|
705
|
+
"created_after": created_after,
|
|
706
|
+
"created_before": created_before,
|
|
707
|
+
"direction": direction,
|
|
708
|
+
"first": first,
|
|
709
|
+
"last": last,
|
|
710
|
+
"plan_id": plan_id,
|
|
711
|
+
},
|
|
712
|
+
checkout_configuration_list_params.CheckoutConfigurationListParams,
|
|
713
|
+
),
|
|
714
|
+
),
|
|
715
|
+
model=CheckoutConfigurationListResponse,
|
|
716
|
+
)
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
class CheckoutConfigurationsResourceWithRawResponse:
|
|
720
|
+
def __init__(self, checkout_configurations: CheckoutConfigurationsResource) -> None:
|
|
721
|
+
self._checkout_configurations = checkout_configurations
|
|
722
|
+
|
|
723
|
+
self.create = to_raw_response_wrapper(
|
|
724
|
+
checkout_configurations.create,
|
|
725
|
+
)
|
|
726
|
+
self.retrieve = to_raw_response_wrapper(
|
|
727
|
+
checkout_configurations.retrieve,
|
|
728
|
+
)
|
|
729
|
+
self.list = to_raw_response_wrapper(
|
|
730
|
+
checkout_configurations.list,
|
|
731
|
+
)
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
class AsyncCheckoutConfigurationsResourceWithRawResponse:
|
|
735
|
+
def __init__(self, checkout_configurations: AsyncCheckoutConfigurationsResource) -> None:
|
|
736
|
+
self._checkout_configurations = checkout_configurations
|
|
737
|
+
|
|
738
|
+
self.create = async_to_raw_response_wrapper(
|
|
739
|
+
checkout_configurations.create,
|
|
740
|
+
)
|
|
741
|
+
self.retrieve = async_to_raw_response_wrapper(
|
|
742
|
+
checkout_configurations.retrieve,
|
|
743
|
+
)
|
|
744
|
+
self.list = async_to_raw_response_wrapper(
|
|
745
|
+
checkout_configurations.list,
|
|
746
|
+
)
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
class CheckoutConfigurationsResourceWithStreamingResponse:
|
|
750
|
+
def __init__(self, checkout_configurations: CheckoutConfigurationsResource) -> None:
|
|
751
|
+
self._checkout_configurations = checkout_configurations
|
|
752
|
+
|
|
753
|
+
self.create = to_streamed_response_wrapper(
|
|
754
|
+
checkout_configurations.create,
|
|
755
|
+
)
|
|
756
|
+
self.retrieve = to_streamed_response_wrapper(
|
|
757
|
+
checkout_configurations.retrieve,
|
|
758
|
+
)
|
|
759
|
+
self.list = to_streamed_response_wrapper(
|
|
760
|
+
checkout_configurations.list,
|
|
761
|
+
)
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
class AsyncCheckoutConfigurationsResourceWithStreamingResponse:
|
|
765
|
+
def __init__(self, checkout_configurations: AsyncCheckoutConfigurationsResource) -> None:
|
|
766
|
+
self._checkout_configurations = checkout_configurations
|
|
767
|
+
|
|
768
|
+
self.create = async_to_streamed_response_wrapper(
|
|
769
|
+
checkout_configurations.create,
|
|
770
|
+
)
|
|
771
|
+
self.retrieve = async_to_streamed_response_wrapper(
|
|
772
|
+
checkout_configurations.retrieve,
|
|
773
|
+
)
|
|
774
|
+
self.list = async_to_streamed_response_wrapper(
|
|
775
|
+
checkout_configurations.list,
|
|
776
|
+
)
|