Class: Stripe::FinancialConnections::TransactionListParams::TransactionRefresh
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::FinancialConnections::TransactionListParams::TransactionRefresh
- Defined in:
- lib/stripe/params/financial_connections/transaction_list_params.rb
Instance Attribute Summary collapse
-
#after ⇒ Object
Return results where the transactions were created or updated by a refresh that took place after this refresh (non-inclusive).
Instance Method Summary collapse
-
#initialize(after: nil) ⇒ TransactionRefresh
constructor
A new instance of TransactionRefresh.
Methods inherited from RequestParams
Constructor Details
#initialize(after: nil) ⇒ TransactionRefresh
Returns a new instance of TransactionRefresh.
29 30 31 |
# File 'lib/stripe/params/financial_connections/transaction_list_params.rb', line 29 def initialize(after: nil) @after = after end |
Instance Attribute Details
#after ⇒ Object
Return results where the transactions were created or updated by a refresh that took place after this refresh (non-inclusive).
27 28 29 |
# File 'lib/stripe/params/financial_connections/transaction_list_params.rb', line 27 def after @after end |