2026-05-20 10:50:30 +00:00

236 lines
7.2 KiB
Python

# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._list_object import ListObject
from stripe._request_options import RequestOptions
from stripe._stripe_service import StripeService
from stripe._util import sanitize_id
from stripe.entitlements._feature import Feature
from typing import Dict, List, cast
from typing_extensions import Literal, NotRequired, TypedDict
class FeatureService(StripeService):
class CreateParams(TypedDict):
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
lookup_key: str
"""
A unique key you provide as your own system identifier. This may be up to 80 characters.
"""
metadata: NotRequired[Dict[str, str]]
"""
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
"""
name: str
"""
The feature's name, for your own purpose, not meant to be displayable to the customer.
"""
class ListParams(TypedDict):
archived: NotRequired[bool]
"""
If set, filter results to only include features with the given archive status.
"""
ending_before: NotRequired[str]
"""
A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
limit: NotRequired[int]
"""
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
"""
lookup_key: NotRequired[str]
"""
If set, filter results to only include features with the given lookup_key.
"""
starting_after: NotRequired[str]
"""
A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
"""
class RetrieveParams(TypedDict):
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
class UpdateParams(TypedDict):
active: NotRequired[bool]
"""
Inactive features cannot be attached to new products and will not be returned from the features list endpoint.
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
metadata: NotRequired["Literal['']|Dict[str, str]"]
"""
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
"""
name: NotRequired[str]
"""
The feature's name, for your own purpose, not meant to be displayable to the customer.
"""
def list(
self,
params: "FeatureService.ListParams" = {},
options: RequestOptions = {},
) -> ListObject[Feature]:
"""
Retrieve a list of features
"""
return cast(
ListObject[Feature],
self._request(
"get",
"/v1/entitlements/features",
base_address="api",
params=params,
options=options,
),
)
async def list_async(
self,
params: "FeatureService.ListParams" = {},
options: RequestOptions = {},
) -> ListObject[Feature]:
"""
Retrieve a list of features
"""
return cast(
ListObject[Feature],
await self._request_async(
"get",
"/v1/entitlements/features",
base_address="api",
params=params,
options=options,
),
)
def create(
self,
params: "FeatureService.CreateParams",
options: RequestOptions = {},
) -> Feature:
"""
Creates a feature
"""
return cast(
Feature,
self._request(
"post",
"/v1/entitlements/features",
base_address="api",
params=params,
options=options,
),
)
async def create_async(
self,
params: "FeatureService.CreateParams",
options: RequestOptions = {},
) -> Feature:
"""
Creates a feature
"""
return cast(
Feature,
await self._request_async(
"post",
"/v1/entitlements/features",
base_address="api",
params=params,
options=options,
),
)
def retrieve(
self,
id: str,
params: "FeatureService.RetrieveParams" = {},
options: RequestOptions = {},
) -> Feature:
"""
Retrieves a feature
"""
return cast(
Feature,
self._request(
"get",
"/v1/entitlements/features/{id}".format(id=sanitize_id(id)),
base_address="api",
params=params,
options=options,
),
)
async def retrieve_async(
self,
id: str,
params: "FeatureService.RetrieveParams" = {},
options: RequestOptions = {},
) -> Feature:
"""
Retrieves a feature
"""
return cast(
Feature,
await self._request_async(
"get",
"/v1/entitlements/features/{id}".format(id=sanitize_id(id)),
base_address="api",
params=params,
options=options,
),
)
def update(
self,
id: str,
params: "FeatureService.UpdateParams" = {},
options: RequestOptions = {},
) -> Feature:
"""
Update a feature's metadata or permanently deactivate it.
"""
return cast(
Feature,
self._request(
"post",
"/v1/entitlements/features/{id}".format(id=sanitize_id(id)),
base_address="api",
params=params,
options=options,
),
)
async def update_async(
self,
id: str,
params: "FeatureService.UpdateParams" = {},
options: RequestOptions = {},
) -> Feature:
"""
Update a feature's metadata or permanently deactivate it.
"""
return cast(
Feature,
await self._request_async(
"post",
"/v1/entitlements/features/{id}".format(id=sanitize_id(id)),
base_address="api",
params=params,
options=options,
),
)