|
43 | 43 | inbox, |
44 | 44 | smart, |
45 | 45 | credits, |
46 | | - kfintech, |
47 | 46 | access_token, |
48 | 47 | verify_token, |
49 | 48 | cams_kfintech, |
|
55 | 54 | from .resources.inbox import InboxResource, AsyncInboxResource |
56 | 55 | from .resources.smart import SmartResource, AsyncSmartResource |
57 | 56 | from .resources.credits import CreditsResource, AsyncCreditsResource |
58 | | - from .resources.kfintech import KfintechResource, AsyncKfintechResource |
59 | 57 | from .resources.cdsl.cdsl import CdslResource, AsyncCdslResource |
60 | 58 | from .resources.access_token import AccessTokenResource, AsyncAccessTokenResource |
61 | 59 | from .resources.verify_token import VerifyTokenResource, AsyncVerifyTokenResource |
@@ -226,13 +224,6 @@ def inbox(self) -> InboxResource: |
226 | 224 |
|
227 | 225 | return InboxResource(self) |
228 | 226 |
|
229 | | - @cached_property |
230 | | - def kfintech(self) -> KfintechResource: |
231 | | - """Endpoints for generating new CAS documents via email mailback (KFintech).""" |
232 | | - from .resources.kfintech import KfintechResource |
233 | | - |
234 | | - return KfintechResource(self) |
235 | | - |
236 | 227 | @cached_property |
237 | 228 | def nsdl(self) -> NsdlResource: |
238 | 229 | """Endpoints for parsing CAS PDF files from different sources.""" |
@@ -546,13 +537,6 @@ def inbox(self) -> AsyncInboxResource: |
546 | 537 |
|
547 | 538 | return AsyncInboxResource(self) |
548 | 539 |
|
549 | | - @cached_property |
550 | | - def kfintech(self) -> AsyncKfintechResource: |
551 | | - """Endpoints for generating new CAS documents via email mailback (KFintech).""" |
552 | | - from .resources.kfintech import AsyncKfintechResource |
553 | | - |
554 | | - return AsyncKfintechResource(self) |
555 | | - |
556 | 540 | @cached_property |
557 | 541 | def nsdl(self) -> AsyncNsdlResource: |
558 | 542 | """Endpoints for parsing CAS PDF files from different sources.""" |
@@ -808,13 +792,6 @@ def inbox(self) -> inbox.InboxResourceWithRawResponse: |
808 | 792 |
|
809 | 793 | return InboxResourceWithRawResponse(self._client.inbox) |
810 | 794 |
|
811 | | - @cached_property |
812 | | - def kfintech(self) -> kfintech.KfintechResourceWithRawResponse: |
813 | | - """Endpoints for generating new CAS documents via email mailback (KFintech).""" |
814 | | - from .resources.kfintech import KfintechResourceWithRawResponse |
815 | | - |
816 | | - return KfintechResourceWithRawResponse(self._client.kfintech) |
817 | | - |
818 | 795 | @cached_property |
819 | 796 | def nsdl(self) -> nsdl.NsdlResourceWithRawResponse: |
820 | 797 | """Endpoints for parsing CAS PDF files from different sources.""" |
@@ -951,13 +928,6 @@ def inbox(self) -> inbox.AsyncInboxResourceWithRawResponse: |
951 | 928 |
|
952 | 929 | return AsyncInboxResourceWithRawResponse(self._client.inbox) |
953 | 930 |
|
954 | | - @cached_property |
955 | | - def kfintech(self) -> kfintech.AsyncKfintechResourceWithRawResponse: |
956 | | - """Endpoints for generating new CAS documents via email mailback (KFintech).""" |
957 | | - from .resources.kfintech import AsyncKfintechResourceWithRawResponse |
958 | | - |
959 | | - return AsyncKfintechResourceWithRawResponse(self._client.kfintech) |
960 | | - |
961 | 931 | @cached_property |
962 | 932 | def nsdl(self) -> nsdl.AsyncNsdlResourceWithRawResponse: |
963 | 933 | """Endpoints for parsing CAS PDF files from different sources.""" |
@@ -1094,13 +1064,6 @@ def inbox(self) -> inbox.InboxResourceWithStreamingResponse: |
1094 | 1064 |
|
1095 | 1065 | return InboxResourceWithStreamingResponse(self._client.inbox) |
1096 | 1066 |
|
1097 | | - @cached_property |
1098 | | - def kfintech(self) -> kfintech.KfintechResourceWithStreamingResponse: |
1099 | | - """Endpoints for generating new CAS documents via email mailback (KFintech).""" |
1100 | | - from .resources.kfintech import KfintechResourceWithStreamingResponse |
1101 | | - |
1102 | | - return KfintechResourceWithStreamingResponse(self._client.kfintech) |
1103 | | - |
1104 | 1067 | @cached_property |
1105 | 1068 | def nsdl(self) -> nsdl.NsdlResourceWithStreamingResponse: |
1106 | 1069 | """Endpoints for parsing CAS PDF files from different sources.""" |
@@ -1237,13 +1200,6 @@ def inbox(self) -> inbox.AsyncInboxResourceWithStreamingResponse: |
1237 | 1200 |
|
1238 | 1201 | return AsyncInboxResourceWithStreamingResponse(self._client.inbox) |
1239 | 1202 |
|
1240 | | - @cached_property |
1241 | | - def kfintech(self) -> kfintech.AsyncKfintechResourceWithStreamingResponse: |
1242 | | - """Endpoints for generating new CAS documents via email mailback (KFintech).""" |
1243 | | - from .resources.kfintech import AsyncKfintechResourceWithStreamingResponse |
1244 | | - |
1245 | | - return AsyncKfintechResourceWithStreamingResponse(self._client.kfintech) |
1246 | | - |
1247 | 1203 | @cached_property |
1248 | 1204 | def nsdl(self) -> nsdl.AsyncNsdlResourceWithStreamingResponse: |
1249 | 1205 | """Endpoints for parsing CAS PDF files from different sources.""" |
|
0 commit comments