@@ -34,6 +34,12 @@ class CardListParams < Lithic::Internal::Type::BaseModel
3434 # @return [String, nil]
3535 optional :ending_before , String
3636
37+ # @!attribute memo
38+ # Returns cards containing the specified partial or full memo text.
39+ #
40+ # @return [String, nil]
41+ optional :memo , String
42+
3743 # @!attribute page_size
3844 # Page size (for pagination).
3945 #
@@ -53,7 +59,7 @@ class CardListParams < Lithic::Internal::Type::BaseModel
5359 # @return [Symbol, Lithic::CardListParams::State, nil]
5460 optional :state , enum : -> { Lithic ::CardListParams ::State }
5561
56- # @!method initialize(account_token: nil, begin_: nil, end_: nil, ending_before: nil, page_size: nil, starting_after: nil, state: nil, request_options: {})
62+ # @!method initialize(account_token: nil, begin_: nil, end_: nil, ending_before: nil, memo: nil, page_size: nil, starting_after: nil, state: nil, request_options: {})
5763 # Some parameter documentations has been truncated, see
5864 # {Lithic::Models::CardListParams} for more details.
5965 #
@@ -65,6 +71,8 @@ class CardListParams < Lithic::Internal::Type::BaseModel
6571 #
6672 # @param ending_before [String] A cursor representing an item's token before which a page of results should end.
6773 #
74+ # @param memo [String] Returns cards containing the specified partial or full memo text.
75+ #
6876 # @param page_size [Integer] Page size (for pagination).
6977 #
7078 # @param starting_after [String] A cursor representing an item's token after which a page of results should begin
0 commit comments