|
28 | 28 | card_web_provision_params, |
29 | 29 | card_convert_physical_params, |
30 | 30 | ) |
31 | | -from ..._types import Body, Omit, Query, Headers, NotGiven, Base64FileInput, omit, not_given |
| 31 | +from ..._types import NOT_GIVEN, Body, Omit, Query, Headers, NotGiven, Base64FileInput, omit, not_given |
32 | 32 | from ..._utils import maybe_transform, strip_not_given, async_maybe_transform |
33 | 33 | from .balances import ( |
34 | 34 | Balances, |
@@ -747,9 +747,9 @@ def get_embed_html( |
747 | 747 | self, |
748 | 748 | *, |
749 | 749 | token: str, |
750 | | - css: str | NotGiven = NOT_GIVEN, |
751 | | - expiration: Union[str, datetime] | NotGiven = NOT_GIVEN, |
752 | | - target_origin: str | NotGiven = NOT_GIVEN, |
| 750 | + css: str | Omit = omit, |
| 751 | + expiration: Union[str, datetime] | Omit = omit, |
| 752 | + target_origin: str | Omit = omit, |
753 | 753 | # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. |
754 | 754 | # The extra values given here take precedence over values defined on the client or passed to this method. |
755 | 755 | extra_headers: Headers | None = None, |
@@ -790,9 +790,9 @@ def get_embed_url( |
790 | 790 | self, |
791 | 791 | *, |
792 | 792 | token: str, |
793 | | - css: str | NotGiven = NOT_GIVEN, |
794 | | - expiration: Union[str, datetime] | NotGiven = NOT_GIVEN, |
795 | | - target_origin: str | NotGiven = NOT_GIVEN, |
| 793 | + css: str | Omit = omit, |
| 794 | + expiration: Union[str, datetime] | Omit = omit, |
| 795 | + target_origin: str | Omit = omit, |
796 | 796 | ) -> URL: |
797 | 797 | """ |
798 | 798 | Handling full card PANs and CVV codes requires that you comply with the Payment |
@@ -1890,9 +1890,9 @@ async def get_embed_html( |
1890 | 1890 | self, |
1891 | 1891 | *, |
1892 | 1892 | token: str, |
1893 | | - css: str | NotGiven = NOT_GIVEN, |
1894 | | - expiration: Union[str, datetime] | NotGiven = NOT_GIVEN, |
1895 | | - target_origin: str | NotGiven = NOT_GIVEN, |
| 1893 | + css: str | Omit = omit, |
| 1894 | + expiration: Union[str, datetime] | Omit = omit, |
| 1895 | + target_origin: str | Omit = omit, |
1896 | 1896 | # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. |
1897 | 1897 | # The extra values given here take precedence over values defined on the client or passed to this method. |
1898 | 1898 | extra_headers: Headers | None = None, |
@@ -1933,9 +1933,9 @@ def get_embed_url( |
1933 | 1933 | self, |
1934 | 1934 | *, |
1935 | 1935 | token: str, |
1936 | | - css: str | NotGiven = NOT_GIVEN, |
1937 | | - expiration: Union[str, datetime] | NotGiven = NOT_GIVEN, |
1938 | | - target_origin: str | NotGiven = NOT_GIVEN, |
| 1936 | + css: str | Omit = omit, |
| 1937 | + expiration: Union[str, datetime] | Omit = omit, |
| 1938 | + target_origin: str | Omit = omit, |
1939 | 1939 | ) -> URL: |
1940 | 1940 | """ |
1941 | 1941 | Handling full card PANs and CVV codes requires that you comply with the Payment |
|
0 commit comments