|
43 | 43 | verify_token, |
44 | 44 | cams_kfintech, |
45 | 45 | contract_note, |
| 46 | + inbound_email, |
46 | 47 | ) |
47 | 48 | from .resources.logs import LogsResource, AsyncLogsResource |
48 | 49 | from .resources.nsdl import NsdlResource, AsyncNsdlResource |
|
55 | 56 | from .resources.verify_token import VerifyTokenResource, AsyncVerifyTokenResource |
56 | 57 | from .resources.cams_kfintech import CamsKfintechResource, AsyncCamsKfintechResource |
57 | 58 | from .resources.contract_note import ContractNoteResource, AsyncContractNoteResource |
| 59 | + from .resources.inbound_email import InboundEmailResource, AsyncInboundEmailResource |
58 | 60 |
|
59 | 61 | __all__ = [ |
60 | 62 | "ENVIRONMENTS", |
@@ -220,6 +222,12 @@ def smart(self) -> SmartResource: |
220 | 222 |
|
221 | 223 | return SmartResource(self) |
222 | 224 |
|
| 225 | + @cached_property |
| 226 | + def inbound_email(self) -> InboundEmailResource: |
| 227 | + from .resources.inbound_email import InboundEmailResource |
| 228 | + |
| 229 | + return InboundEmailResource(self) |
| 230 | + |
223 | 231 | @cached_property |
224 | 232 | def with_raw_response(self) -> CasParserWithRawResponse: |
225 | 233 | return CasParserWithRawResponse(self) |
@@ -480,6 +488,12 @@ def smart(self) -> AsyncSmartResource: |
480 | 488 |
|
481 | 489 | return AsyncSmartResource(self) |
482 | 490 |
|
| 491 | + @cached_property |
| 492 | + def inbound_email(self) -> AsyncInboundEmailResource: |
| 493 | + from .resources.inbound_email import AsyncInboundEmailResource |
| 494 | + |
| 495 | + return AsyncInboundEmailResource(self) |
| 496 | + |
483 | 497 | @cached_property |
484 | 498 | def with_raw_response(self) -> AsyncCasParserWithRawResponse: |
485 | 499 | return AsyncCasParserWithRawResponse(self) |
@@ -667,6 +681,12 @@ def smart(self) -> smart.SmartResourceWithRawResponse: |
667 | 681 |
|
668 | 682 | return SmartResourceWithRawResponse(self._client.smart) |
669 | 683 |
|
| 684 | + @cached_property |
| 685 | + def inbound_email(self) -> inbound_email.InboundEmailResourceWithRawResponse: |
| 686 | + from .resources.inbound_email import InboundEmailResourceWithRawResponse |
| 687 | + |
| 688 | + return InboundEmailResourceWithRawResponse(self._client.inbound_email) |
| 689 | + |
670 | 690 |
|
671 | 691 | class AsyncCasParserWithRawResponse: |
672 | 692 | _client: AsyncCasParser |
@@ -740,6 +760,12 @@ def smart(self) -> smart.AsyncSmartResourceWithRawResponse: |
740 | 760 |
|
741 | 761 | return AsyncSmartResourceWithRawResponse(self._client.smart) |
742 | 762 |
|
| 763 | + @cached_property |
| 764 | + def inbound_email(self) -> inbound_email.AsyncInboundEmailResourceWithRawResponse: |
| 765 | + from .resources.inbound_email import AsyncInboundEmailResourceWithRawResponse |
| 766 | + |
| 767 | + return AsyncInboundEmailResourceWithRawResponse(self._client.inbound_email) |
| 768 | + |
743 | 769 |
|
744 | 770 | class CasParserWithStreamedResponse: |
745 | 771 | _client: CasParser |
@@ -813,6 +839,12 @@ def smart(self) -> smart.SmartResourceWithStreamingResponse: |
813 | 839 |
|
814 | 840 | return SmartResourceWithStreamingResponse(self._client.smart) |
815 | 841 |
|
| 842 | + @cached_property |
| 843 | + def inbound_email(self) -> inbound_email.InboundEmailResourceWithStreamingResponse: |
| 844 | + from .resources.inbound_email import InboundEmailResourceWithStreamingResponse |
| 845 | + |
| 846 | + return InboundEmailResourceWithStreamingResponse(self._client.inbound_email) |
| 847 | + |
816 | 848 |
|
817 | 849 | class AsyncCasParserWithStreamedResponse: |
818 | 850 | _client: AsyncCasParser |
@@ -886,6 +918,12 @@ def smart(self) -> smart.AsyncSmartResourceWithStreamingResponse: |
886 | 918 |
|
887 | 919 | return AsyncSmartResourceWithStreamingResponse(self._client.smart) |
888 | 920 |
|
| 921 | + @cached_property |
| 922 | + def inbound_email(self) -> inbound_email.AsyncInboundEmailResourceWithStreamingResponse: |
| 923 | + from .resources.inbound_email import AsyncInboundEmailResourceWithStreamingResponse |
| 924 | + |
| 925 | + return AsyncInboundEmailResourceWithStreamingResponse(self._client.inbound_email) |
| 926 | + |
889 | 927 |
|
890 | 928 | Client = CasParser |
891 | 929 |
|
|
0 commit comments