@@ -138,6 +138,7 @@ def list(
138138 metadata : Dict [str , str ] | Omit = omit ,
139139 per_page : int | Omit = omit ,
140140 status : Literal ["completed" , "pending" , "returned" ] | Omit = omit ,
141+ subtype : str | Omit = omit ,
141142 type : Literal [
142143 "ach" ,
143144 "au_becs" ,
@@ -186,6 +187,10 @@ def list(
186187 status: The current status of the incoming payment order. One of `pending`, `completed`,
187188 or `returned`.
188189
190+ subtype: An additional layer of classification for the type of incoming payment detail.
191+ For example, a `type` of `stablecoin` may have a `subtype` of `ethereum` or
192+ `solana`.
193+
189194 type: One of: `ach`, `book`, `check`, `eft`, `interac`, `rtp`, `sepa`, `signet`, or
190195 `wire`.
191196
@@ -217,6 +222,7 @@ def list(
217222 "metadata" : metadata ,
218223 "per_page" : per_page ,
219224 "status" : status ,
225+ "subtype" : subtype ,
220226 "type" : type ,
221227 "virtual_account_id" : virtual_account_id ,
222228 },
@@ -236,6 +242,7 @@ def create_async(
236242 description : Optional [str ] | Omit = omit ,
237243 direction : Literal ["credit" , "debit" ] | Omit = omit ,
238244 internal_account_id : str | Omit = omit ,
245+ subtype : Optional [str ] | Omit = omit ,
239246 type : Literal [
240247 "ach" ,
241248 "au_becs" ,
@@ -286,6 +293,9 @@ def create_async(
286293
287294 internal_account_id: The ID of one of your internal accounts.
288295
296+ subtype: An additional layer of classification for the type of incoming payment detail,
297+ e.g. `ethereum` for a `stablecoin` type.
298+
289299 type: One of `ach`, `wire`, `check`.
290300
291301 virtual_account_id: An optional parameter to associate the incoming payment detail to a virtual
@@ -312,6 +322,7 @@ def create_async(
312322 "description" : description ,
313323 "direction" : direction ,
314324 "internal_account_id" : internal_account_id ,
325+ "subtype" : subtype ,
315326 "type" : type ,
316327 "virtual_account_id" : virtual_account_id ,
317328 },
@@ -438,6 +449,7 @@ def list(
438449 metadata : Dict [str , str ] | Omit = omit ,
439450 per_page : int | Omit = omit ,
440451 status : Literal ["completed" , "pending" , "returned" ] | Omit = omit ,
452+ subtype : str | Omit = omit ,
441453 type : Literal [
442454 "ach" ,
443455 "au_becs" ,
@@ -486,6 +498,10 @@ def list(
486498 status: The current status of the incoming payment order. One of `pending`, `completed`,
487499 or `returned`.
488500
501+ subtype: An additional layer of classification for the type of incoming payment detail.
502+ For example, a `type` of `stablecoin` may have a `subtype` of `ethereum` or
503+ `solana`.
504+
489505 type: One of: `ach`, `book`, `check`, `eft`, `interac`, `rtp`, `sepa`, `signet`, or
490506 `wire`.
491507
@@ -517,6 +533,7 @@ def list(
517533 "metadata" : metadata ,
518534 "per_page" : per_page ,
519535 "status" : status ,
536+ "subtype" : subtype ,
520537 "type" : type ,
521538 "virtual_account_id" : virtual_account_id ,
522539 },
@@ -536,6 +553,7 @@ async def create_async(
536553 description : Optional [str ] | Omit = omit ,
537554 direction : Literal ["credit" , "debit" ] | Omit = omit ,
538555 internal_account_id : str | Omit = omit ,
556+ subtype : Optional [str ] | Omit = omit ,
539557 type : Literal [
540558 "ach" ,
541559 "au_becs" ,
@@ -586,6 +604,9 @@ async def create_async(
586604
587605 internal_account_id: The ID of one of your internal accounts.
588606
607+ subtype: An additional layer of classification for the type of incoming payment detail,
608+ e.g. `ethereum` for a `stablecoin` type.
609+
589610 type: One of `ach`, `wire`, `check`.
590611
591612 virtual_account_id: An optional parameter to associate the incoming payment detail to a virtual
@@ -612,6 +633,7 @@ async def create_async(
612633 "description" : description ,
613634 "direction" : direction ,
614635 "internal_account_id" : internal_account_id ,
636+ "subtype" : subtype ,
615637 "type" : type ,
616638 "virtual_account_id" : virtual_account_id ,
617639 },
0 commit comments