@@ -24,7 +24,7 @@ class TestLedgerEntries:
2424 @parametrize
2525 def test_method_create (self , client : DodoPayments ) -> None :
2626 ledger_entry = client .customers .wallets .ledger_entries .create (
27- customer_id = "customer_id " ,
27+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
2828 amount = 0 ,
2929 currency = "AED" ,
3030 entry_type = "credit" ,
@@ -34,7 +34,7 @@ def test_method_create(self, client: DodoPayments) -> None:
3434 @parametrize
3535 def test_method_create_with_all_params (self , client : DodoPayments ) -> None :
3636 ledger_entry = client .customers .wallets .ledger_entries .create (
37- customer_id = "customer_id " ,
37+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
3838 amount = 0 ,
3939 currency = "AED" ,
4040 entry_type = "credit" ,
@@ -46,7 +46,7 @@ def test_method_create_with_all_params(self, client: DodoPayments) -> None:
4646 @parametrize
4747 def test_raw_response_create (self , client : DodoPayments ) -> None :
4848 response = client .customers .wallets .ledger_entries .with_raw_response .create (
49- customer_id = "customer_id " ,
49+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
5050 amount = 0 ,
5151 currency = "AED" ,
5252 entry_type = "credit" ,
@@ -60,7 +60,7 @@ def test_raw_response_create(self, client: DodoPayments) -> None:
6060 @parametrize
6161 def test_streaming_response_create (self , client : DodoPayments ) -> None :
6262 with client .customers .wallets .ledger_entries .with_streaming_response .create (
63- customer_id = "customer_id " ,
63+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
6464 amount = 0 ,
6565 currency = "AED" ,
6666 entry_type = "credit" ,
@@ -86,14 +86,14 @@ def test_path_params_create(self, client: DodoPayments) -> None:
8686 @parametrize
8787 def test_method_list (self , client : DodoPayments ) -> None :
8888 ledger_entry = client .customers .wallets .ledger_entries .list (
89- customer_id = "customer_id " ,
89+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
9090 )
9191 assert_matches_type (SyncDefaultPageNumberPagination [CustomerWalletTransaction ], ledger_entry , path = ["response" ])
9292
9393 @parametrize
9494 def test_method_list_with_all_params (self , client : DodoPayments ) -> None :
9595 ledger_entry = client .customers .wallets .ledger_entries .list (
96- customer_id = "customer_id " ,
96+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
9797 currency = "AED" ,
9898 page_number = 0 ,
9999 page_size = 0 ,
@@ -103,7 +103,7 @@ def test_method_list_with_all_params(self, client: DodoPayments) -> None:
103103 @parametrize
104104 def test_raw_response_list (self , client : DodoPayments ) -> None :
105105 response = client .customers .wallets .ledger_entries .with_raw_response .list (
106- customer_id = "customer_id " ,
106+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
107107 )
108108
109109 assert response .is_closed is True
@@ -114,7 +114,7 @@ def test_raw_response_list(self, client: DodoPayments) -> None:
114114 @parametrize
115115 def test_streaming_response_list (self , client : DodoPayments ) -> None :
116116 with client .customers .wallets .ledger_entries .with_streaming_response .list (
117- customer_id = "customer_id " ,
117+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
118118 ) as response :
119119 assert not response .is_closed
120120 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
@@ -142,7 +142,7 @@ class TestAsyncLedgerEntries:
142142 @parametrize
143143 async def test_method_create (self , async_client : AsyncDodoPayments ) -> None :
144144 ledger_entry = await async_client .customers .wallets .ledger_entries .create (
145- customer_id = "customer_id " ,
145+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
146146 amount = 0 ,
147147 currency = "AED" ,
148148 entry_type = "credit" ,
@@ -152,7 +152,7 @@ async def test_method_create(self, async_client: AsyncDodoPayments) -> None:
152152 @parametrize
153153 async def test_method_create_with_all_params (self , async_client : AsyncDodoPayments ) -> None :
154154 ledger_entry = await async_client .customers .wallets .ledger_entries .create (
155- customer_id = "customer_id " ,
155+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
156156 amount = 0 ,
157157 currency = "AED" ,
158158 entry_type = "credit" ,
@@ -164,7 +164,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncDodoPaymen
164164 @parametrize
165165 async def test_raw_response_create (self , async_client : AsyncDodoPayments ) -> None :
166166 response = await async_client .customers .wallets .ledger_entries .with_raw_response .create (
167- customer_id = "customer_id " ,
167+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
168168 amount = 0 ,
169169 currency = "AED" ,
170170 entry_type = "credit" ,
@@ -178,7 +178,7 @@ async def test_raw_response_create(self, async_client: AsyncDodoPayments) -> Non
178178 @parametrize
179179 async def test_streaming_response_create (self , async_client : AsyncDodoPayments ) -> None :
180180 async with async_client .customers .wallets .ledger_entries .with_streaming_response .create (
181- customer_id = "customer_id " ,
181+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
182182 amount = 0 ,
183183 currency = "AED" ,
184184 entry_type = "credit" ,
@@ -204,7 +204,7 @@ async def test_path_params_create(self, async_client: AsyncDodoPayments) -> None
204204 @parametrize
205205 async def test_method_list (self , async_client : AsyncDodoPayments ) -> None :
206206 ledger_entry = await async_client .customers .wallets .ledger_entries .list (
207- customer_id = "customer_id " ,
207+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
208208 )
209209 assert_matches_type (
210210 AsyncDefaultPageNumberPagination [CustomerWalletTransaction ], ledger_entry , path = ["response" ]
@@ -213,7 +213,7 @@ async def test_method_list(self, async_client: AsyncDodoPayments) -> None:
213213 @parametrize
214214 async def test_method_list_with_all_params (self , async_client : AsyncDodoPayments ) -> None :
215215 ledger_entry = await async_client .customers .wallets .ledger_entries .list (
216- customer_id = "customer_id " ,
216+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
217217 currency = "AED" ,
218218 page_number = 0 ,
219219 page_size = 0 ,
@@ -225,7 +225,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncDodoPayments
225225 @parametrize
226226 async def test_raw_response_list (self , async_client : AsyncDodoPayments ) -> None :
227227 response = await async_client .customers .wallets .ledger_entries .with_raw_response .list (
228- customer_id = "customer_id " ,
228+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
229229 )
230230
231231 assert response .is_closed is True
@@ -238,7 +238,7 @@ async def test_raw_response_list(self, async_client: AsyncDodoPayments) -> None:
238238 @parametrize
239239 async def test_streaming_response_list (self , async_client : AsyncDodoPayments ) -> None :
240240 async with async_client .customers .wallets .ledger_entries .with_streaming_response .list (
241- customer_id = "customer_id " ,
241+ customer_id = "cus_TV52uJWWXt2yIoBBxpjaa " ,
242242 ) as response :
243243 assert not response .is_closed
244244 assert response .http_request .headers .get ("X-Stainless-Lang" ) == "python"
0 commit comments