@@ -416,6 +416,7 @@ def list(
416416 begin : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
417417 end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
418418 ending_before : str | NotGiven = NOT_GIVEN ,
419+ memo : str | NotGiven = NOT_GIVEN ,
419420 page_size : int | NotGiven = NOT_GIVEN ,
420421 starting_after : str | NotGiven = NOT_GIVEN ,
421422 state : Literal ["CLOSED" , "OPEN" , "PAUSED" , "PENDING_ACTIVATION" , "PENDING_FULFILLMENT" ] | NotGiven = NOT_GIVEN ,
@@ -441,6 +442,8 @@ def list(
441442 ending_before: A cursor representing an item's token before which a page of results should end.
442443 Used to retrieve the previous page of results before this item.
443444
445+ memo: Returns cards containing the specified partial or full memo text.
446+
444447 page_size: Page size (for pagination).
445448
446449 starting_after: A cursor representing an item's token after which a page of results should
@@ -470,6 +473,7 @@ def list(
470473 "begin" : begin ,
471474 "end" : end ,
472475 "ending_before" : ending_before ,
476+ "memo" : memo ,
473477 "page_size" : page_size ,
474478 "starting_after" : starting_after ,
475479 "state" : state ,
@@ -1403,6 +1407,7 @@ def list(
14031407 begin : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
14041408 end : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
14051409 ending_before : str | NotGiven = NOT_GIVEN ,
1410+ memo : str | NotGiven = NOT_GIVEN ,
14061411 page_size : int | NotGiven = NOT_GIVEN ,
14071412 starting_after : str | NotGiven = NOT_GIVEN ,
14081413 state : Literal ["CLOSED" , "OPEN" , "PAUSED" , "PENDING_ACTIVATION" , "PENDING_FULFILLMENT" ] | NotGiven = NOT_GIVEN ,
@@ -1428,6 +1433,8 @@ def list(
14281433 ending_before: A cursor representing an item's token before which a page of results should end.
14291434 Used to retrieve the previous page of results before this item.
14301435
1436+ memo: Returns cards containing the specified partial or full memo text.
1437+
14311438 page_size: Page size (for pagination).
14321439
14331440 starting_after: A cursor representing an item's token after which a page of results should
@@ -1457,6 +1464,7 @@ def list(
14571464 "begin" : begin ,
14581465 "end" : end ,
14591466 "ending_before" : ending_before ,
1467+ "memo" : memo ,
14601468 "page_size" : page_size ,
14611469 "starting_after" : starting_after ,
14621470 "state" : state ,
0 commit comments