-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.419.0
- Loading branch information
1 parent
16cda15
commit 2e6d7af
Showing
59 changed files
with
2,092 additions
and
235 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# CheckoutLink | ||
|
||
Checkout link data. | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | | ||
| `created_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | Creation timestamp of the object. | | ||
| `modified_at` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_check_mark: | Last modification timestamp of the object. | | ||
| `id` | *str* | :heavy_check_mark: | The ID of the object. | | ||
| `metadata` | Dict[str, *str*] | :heavy_check_mark: | N/A | | ||
| `client_secret` | *str* | :heavy_check_mark: | Client secret used to access the checkout link. | | ||
| `success_url` | *Nullable[str]* | :heavy_check_mark: | URL where the customer will be redirected after a successful payment. | | ||
| `product_price_id` | *str* | :heavy_check_mark: | ID of the product price to checkout. | | ||
| `product_price` | [models.ProductPrice](../models/productprice.md) | :heavy_check_mark: | N/A | | ||
| `url` | *str* | :heavy_check_mark: | N/A | | ||
| `payment_processor` | [models.PolarEnumsPaymentProcessor](../models/polarenumspaymentprocessor.md) | :heavy_check_mark: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# CheckoutLinkCreate | ||
|
||
Schema to create a new checkout link. | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| `product_price_id` | *str* | :heavy_check_mark: | ID of the product price to checkout. | | ||
| `metadata` | Dict[str, *str*] | :heavy_minus_sign: | Key-value object allowing you to store additional information.<br/><br/>The key must be a string with a maximum length of **40 characters**.<br/>The value must be a string with a maximum length of **500 characters**.<br/>You can store up to **50 key-value pairs**. | | ||
| `payment_processor` | [models.CheckoutLinkCreatePaymentProcessor](../models/checkoutlinkcreatepaymentprocessor.md) | :heavy_check_mark: | Payment processor to use. Currently only Stripe is supported. | | ||
| `success_url` | *OptionalNullable[str]* | :heavy_minus_sign: | URL where the customer will be redirected after a successful payment.You can add the `checkout_id={CHECKOUT_ID}` query parameter to retrieve the checkout session id. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# CheckoutLinkCreatePaymentProcessor | ||
|
||
Payment processor to use. Currently only Stripe is supported. | ||
|
||
|
||
## Values | ||
|
||
| Name | Value | | ||
| -------- | -------- | | ||
| `STRIPE` | stripe | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# CheckoutLinksDeleteRequest | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| --------------------- | --------------------- | --------------------- | --------------------- | | ||
| `id` | *str* | :heavy_check_mark: | The checkout link ID. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# CheckoutLinksGetRequest | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| --------------------- | --------------------- | --------------------- | --------------------- | | ||
| `id` | *str* | :heavy_check_mark: | The checkout link ID. | |
19 changes: 19 additions & 0 deletions
19
docs/models/checkoutlinkslistqueryparamorganizationidfilter.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# CheckoutLinksListQueryParamOrganizationIDFilter | ||
|
||
Filter by organization ID. | ||
|
||
|
||
## Supported Types | ||
|
||
### `str` | ||
|
||
```python | ||
value: str = /* values here */ | ||
``` | ||
|
||
### `List[str]` | ||
|
||
```python | ||
value: List[str] = /* values here */ | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# CheckoutLinksListQueryParamProductIDFilter | ||
|
||
Filter by product ID. | ||
|
||
|
||
## Supported Types | ||
|
||
### `str` | ||
|
||
```python | ||
value: str = /* values here */ | ||
``` | ||
|
||
### `List[str]` | ||
|
||
```python | ||
value: List[str] = /* values here */ | ||
``` | ||
|
Oops, something went wrong.