1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._ephemeral_key import EphemeralKey
from stripe._request_options import RequestOptions
from stripe._stripe_service import StripeService
from stripe._util import sanitize_id
from typing import List, cast
from typing_extensions import NotRequired, TypedDict
class EphemeralKeyService(StripeService):
class CreateParams(TypedDict):
customer: NotRequired[str]
"""
The ID of the Customer you'd like to modify using the resulting ephemeral key.
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
issuing_card: NotRequired[str]
"""
The ID of the Issuing Card you'd like to access using the resulting ephemeral key.
"""
nonce: NotRequired[str]
"""
A single-use token, created by Stripe.js, used for creating ephemeral keys for Issuing Cards without exchanging sensitive information.
"""
verification_session: NotRequired[str]
"""
The ID of the Identity VerificationSession you'd like to access using the resulting ephemeral key
"""
class DeleteParams(TypedDict):
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
def delete(
self,
key: str,
params: "EphemeralKeyService.DeleteParams" = {},
options: RequestOptions = {},
) -> EphemeralKey:
"""
Invalidates a short-lived API key for a given resource.
"""
return cast(
EphemeralKey,
self._request(
"delete",
"/v1/ephemeral_keys/{key}".format(key=sanitize_id(key)),
base_address="api",
params=params,
options=options,
),
)
async def delete_async(
self,
key: str,
params: "EphemeralKeyService.DeleteParams" = {},
options: RequestOptions = {},
) -> EphemeralKey:
"""
Invalidates a short-lived API key for a given resource.
"""
return cast(
EphemeralKey,
await self._request_async(
"delete",
"/v1/ephemeral_keys/{key}".format(key=sanitize_id(key)),
base_address="api",
params=params,
options=options,
),
)
def create(
self,
params: "EphemeralKeyService.CreateParams" = {},
options: RequestOptions = {},
) -> EphemeralKey:
"""
Creates a short-lived API key for a given resource.
"""
return cast(
EphemeralKey,
self._request(
"post",
"/v1/ephemeral_keys",
base_address="api",
params=params,
options=options,
),
)
async def create_async(
self,
params: "EphemeralKeyService.CreateParams" = {},
options: RequestOptions = {},
) -> EphemeralKey:
"""
Creates a short-lived API key for a given resource.
"""
return cast(
EphemeralKey,
await self._request_async(
"post",
"/v1/ephemeral_keys",
base_address="api",
params=params,
options=options,
),
)
|