Class: CheckoutSdk::Payments::PaymentsSearchRequest
- Inherits:
-
Object
- Object
- CheckoutSdk::Payments::PaymentsSearchRequest
- Defined in:
- lib/checkout_sdk/payments/payments_search_request.rb
Overview
Request body for POST /payments/search.
Instance Attribute Summary collapse
-
#from_ ⇒ String
ISO 8601 UTC start.
-
#limit ⇒ Integer
Results per page (1-1000, default 10).
-
#query ⇒ String
The query string (max 1024 chars).
-
#to ⇒ String
ISO 8601 UTC end.
Instance Attribute Details
#from_ ⇒ String
Returns ISO 8601 UTC start. Required if ‘to` is set. Serialised as `from`.
16 17 18 |
# File 'lib/checkout_sdk/payments/payments_search_request.rb', line 16 class PaymentsSearchRequest attr_accessor :query, :limit, :from_, :to end |
#limit ⇒ Integer
Returns Results per page (1-1000, default 10).
16 17 18 |
# File 'lib/checkout_sdk/payments/payments_search_request.rb', line 16 class PaymentsSearchRequest attr_accessor :query, :limit, :from_, :to end |
#query ⇒ String
Returns The query string (max 1024 chars).
16 17 18 |
# File 'lib/checkout_sdk/payments/payments_search_request.rb', line 16 class PaymentsSearchRequest attr_accessor :query, :limit, :from_, :to end |
#to ⇒ String
Returns ISO 8601 UTC end. Required if ‘from` is set.
16 17 18 |
# File 'lib/checkout_sdk/payments/payments_search_request.rb', line 16 class PaymentsSearchRequest attr_accessor :query, :limit, :from_, :to end |