Sha256: 326b491bd9c2f5ad0762f2928043167c2482610fee77f07652062bf11d277446
Contents?: true
Size: 895 Bytes
Versions: 3
Compression:
Stored size: 895 Bytes
Contents
# Plaid::PaymentInitiationPaymentListRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **client_id** | **String** | Your Plaid API `client_id`. | [optional] | | **secret** | **String** | Your Plaid API `secret`. | [optional] | | **count** | **Integer** | The maximum number of payments to return. If `count` is not specified, a maximum of 10 payments will be returned, beginning with the most recent payment before the cursor (if specified). | [optional][default to 10] | | **cursor** | **String** | A string in RFC 3339 format (i.e. \"2019-12-06T22:35:49Z\"). Only payments created before the cursor will be returned. | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::PaymentInitiationPaymentListRequest.new( client_id: null, secret: null, count: null, cursor: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems