From 713d85190ee1206f2c8ee4d1aaeb2918083d5ae3 Mon Sep 17 00:00:00 2001 From: TatianaSverdlova <77778770+TatianaSverdlova@users.noreply.github.com> Date: Sat, 3 Dec 2022 12:42:38 +0100 Subject: [PATCH] Add LAST_UPDATED_DATETIME_OUT_OF_RANGE error code --- src/Plaid/Entity/ErrorCode.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Plaid/Entity/ErrorCode.cs b/src/Plaid/Entity/ErrorCode.cs index 856e7d6a..034cbece 100644 --- a/src/Plaid/Entity/ErrorCode.cs +++ b/src/Plaid/Entity/ErrorCode.cs @@ -276,6 +276,13 @@ public enum ErrorCode /// This code is currently undocumented. [EnumMember(Value = "INVALID_CONFIGURATION")] InvalidConfiguration, + + /// + /// The balance that is pulled for ins_128026 (Capital One) is older than the given timestamp. + /// + /// + [EnumMember(Value = "LAST_UPDATED_DATETIME_OUT_OF_RANGE")] + LastUpdatedDatetimeOutOfRange, #endregion #region INVALID_INPUT Codes