From 3036534579f7f07475b2ff1316d9e0b67ba48bbf Mon Sep 17 00:00:00 2001 From: luistarkbank Date: Mon, 18 Sep 2023 15:31:54 -0300 Subject: [PATCH] Fix account_type docstring attribute --- CHANGELOG.md | 3 ++- starkbank/dictkey/__dictkey.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba76d9e..152198f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,9 +16,10 @@ Given a version number MAJOR.MINOR.PATCH, increment: ### Removed - account_created, created, owned attributes to DictKey resource - account_number, branch_code attributes to PaymentPreview resource - ### Changed - account_number, branch_code attributes to DictKey resource +### Fixed +- account_type docstring attribute to DictKey resource ## [2.21.0] - 2023-08-06 ### Changed diff --git a/starkbank/dictkey/__dictkey.py b/starkbank/dictkey/__dictkey.py index c29c6a1..653dc1e 100644 --- a/starkbank/dictkey/__dictkey.py +++ b/starkbank/dictkey/__dictkey.py @@ -19,7 +19,7 @@ class DictKey(Resource): - ispb [string]: bank ISPB associated with the DICT key. ex: "20018183" - branch_code [string]: encrypted bank account branch code associated with the DICT key. ex: "ZW5jcnlwdGVkLWJyYW5jaC1jb2Rl" - account_number [string]: encrypted bank account number associated with the DICT key. ex: "ZW5jcnlwdGVkLWFjY291bnQtbnVtYmVy" - - account_type [string]: bank account type associated with the DICT key. ex: "checking", "saving", "salary" or "payment" + - account_type [string]: bank account type associated with the DICT key. ex: "checking", "savings", "salary" or "payment" - status [string]: current DICT key status. ex: "created", "registered", "canceled" or "failed" """