docs/AccountsApi.md in atrium-ruby-2.3.0 vs docs/AccountsApi.md in atrium-ruby-2.4.0
- old
+ new
@@ -26,11 +26,11 @@
user_guid = "USR-123" # String | The unique identifier for a `user`.
opts = {
from_date: "2016-09-20", # String | Filter transactions from this date.
to_date: "2016-10-20" # String | Filter transactions to this date.
page: 1, # Integer | Specify current page.
- records_per_page: 12, # Integer | Specify records per page.
+ records_per_page: 12 # Integer | Specify records per page.
}
begin
#List account transactions
response = client.accounts.list_account_transactions(account_guid, user_guid, opts)
@@ -70,10 +70,10 @@
client = Atrium::AtriumClient.new("YOUR_API_KEY", "YOUR_CLIENT_ID")
user_guid = "USR-123" # String | The unique identifier for a `user`.
opts = {
page: 1, # Integer | Specify current page.
- records_per_page: 12, # Integer | Specify records per page.
+ records_per_page: 12 # Integer | Specify records per page.
}
begin
#List accounts for a user
response = client.accounts.list_user_accounts(user_guid, opts)