stripe: test clocks resource (#9026)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Steve Dignam
2022-10-30 16:23:07 -07:00
committed by GitHub
co-authored by Alex Waygood
parent a46c48136b
commit 1f191a6c13
3 changed files with 14 additions and 2 deletions
@@ -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: ...