@@ -70,7 +70,7 @@ class User(HyperwalletModel):
7070 A dictionary containing the attributes for the User.
7171 '''
7272
73- filters_array = {'clientUserId' , 'email' , 'programToken' , 'status' , 'verificationStatus' }
73+ filters_array = {'clientUserId' ,'email' ,'programToken' ,'status' ,'verificationStatus' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit ' }
7474
7575 def __init__ (self , data ):
7676 '''
@@ -166,6 +166,8 @@ class TransferMethod(HyperwalletModel):
166166 A dictionary containing the attributes for the Transfer Method.
167167 '''
168168
169+ filters_array = {'status' , 'type' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
170+
169171 def __init__ (self , data ):
170172 '''
171173 Create a new Transfer Method with the provided attributes.
@@ -201,7 +203,7 @@ class BankAccount(TransferMethod):
201203 A dictionary containing the attributes for the Bank Account.
202204 '''
203205
204- filters_array = {'type' , 'status' }
206+ filters_array = {'type' ,'status' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit ' }
205207
206208 def __init__ (self , data ):
207209 '''
@@ -284,7 +286,7 @@ class BankCard(TransferMethod):
284286 A dictionary containing the attributes for the Bank Card.
285287 '''
286288
287- filters_array = {'status' }
289+ filters_array = {'status' , 'type' , 'createdOn' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
288290
289291 def __init__ (self , data ):
290292 '''
@@ -320,7 +322,7 @@ class PrepaidCard(TransferMethod):
320322 A dictionary containing the attributes for the Prepaid Card.
321323 '''
322324
323- filters_array = {'status' }
325+ filters_array = {'status' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
324326
325327 def __init__ (self , data ):
326328 '''
@@ -355,7 +357,7 @@ class PaperCheck(TransferMethod):
355357 A dictionary containing the attributes for the Paper Check.
356358 '''
357359
358- filters_array = {'status' }
360+ filters_array = {'status' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
359361
360362 def __init__ (self , data ):
361363 '''
@@ -414,7 +416,7 @@ class Transfer(HyperwalletModel):
414416 A dictionary containing the attributes for the Transfer.
415417 '''
416418
417- filters_array = {'clientTransferId' , 'sourceToken' , 'destinationToken' }
419+ filters_array = {'clientTransferId' ,'sourceToken' ,'destinationToken' , 'createdBefore' , 'createdAfter' , 'offset' , 'limit ' }
418420
419421 def __init__ (self , data ):
420422 '''
@@ -460,7 +462,7 @@ class PayPalAccount(TransferMethod):
460462 A dictionary containing the attributes for the PayPal Account.
461463 '''
462464
463- filters_array = {'status' }
465+ filters_array = {'status' , 'type' , 'createdOn' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
464466
465467 def __init__ (self , data ):
466468 '''
@@ -491,6 +493,8 @@ class VenmoAccount(TransferMethod):
491493 A dictionary containing the attributes for the Venmo Account.
492494 '''
493495
496+ filters_array = {'status' , 'type' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
497+
494498 def __init__ (self , data ):
495499 '''
496500 Create a new Venmo Account with the provided attributes.
@@ -520,7 +524,7 @@ class Payment(HyperwalletModel):
520524 A dictionary containing the attributes for the Payment.
521525 '''
522526
523- filters_array = {'clientPaymentId' , 'releaseOn ' }
527+ filters_array = {'clientPaymentId' , 'currency' , 'memo' , 'releaseDate' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit ' }
524528
525529 def __init__ (self , data ):
526530 '''
@@ -564,7 +568,9 @@ class Balance(HyperwalletModel):
564568 A dictionary containing the attributes for the Balance.
565569 '''
566570
567- filters_array = {'currency' }
571+ filters_array_user = {'currency' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
572+ filters_array_account = {'currency' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
573+ filters_array_prepaid_card = {'createdBefore' , 'createdAfter' }
568574
569575 def __init__ (self , data ):
570576 '''
@@ -596,6 +602,10 @@ class Receipt(HyperwalletModel):
596602 A dictionary containing the attributes for the Receipt.
597603 '''
598604
605+ filters_array_user = {'currency' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
606+ filters_array_account = {'currency' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
607+ filters_array_prepaid_card = {'createdBefore' , 'createdAfter' }
608+
599609 def __init__ (self , data ):
600610 '''
601611 Create a new Receipt with the provided attributes.
@@ -700,7 +710,7 @@ class StatusTransition(HyperwalletModel):
700710 A dictionary containing the attributes for the Status Transition.
701711 '''
702712
703- filters_array = {'transition' }
713+ filters_array = {'transition' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
704714
705715 def __init__ (self , data ):
706716 '''
@@ -737,6 +747,8 @@ class TransferMethodConfiguration(HyperwalletModel):
737747 A dictionary containing the attributes for the Transfer Method Configuration.
738748 '''
739749
750+ filters_array = {'userToken' , 'offset' , 'limit' }
751+
740752 def __init__ (self , data ):
741753 '''
742754 Create a new Transfer Method Configuration with the provided attributes.
@@ -778,7 +790,7 @@ class Webhook(HyperwalletModel):
778790 A dictionary containing the attributes for the Webhook.
779791 '''
780792
781- filters_array = {'programToken' }
793+ filters_array = {'programToken' , 'type' , 'createdBefore' , 'createdAfter' , 'sortBy' , 'offset' , 'limit' }
782794
783795 def __init__ (self , data ):
784796 '''
0 commit comments