mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-09-17 08:43:15 +08:00
stripe: test clocks resource (#9026)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
co-authored by
Alex Waygood
parent
a46c48136b
commit
1f191a6c13
@@ -0,0 +1,11 @@
|
||||
from _typeshed import Self
|
||||
from typing import Any
|
||||
from typing_extensions import Literal
|
||||
|
||||
from stripe.api_resources.abstract import CreateableAPIResource, DeletableAPIResource, ListableAPIResource
|
||||
|
||||
class TestClock(CreateableAPIResource, DeletableAPIResource, ListableAPIResource):
|
||||
OBJECT_NAME: Literal["test_helpers.test_clock"]
|
||||
|
||||
@classmethod
|
||||
def advance(cls: type[Self], idempotency_key: str | None = ..., **params: Any) -> Self: ...
|
||||
Reference in New Issue
Block a user