From 651c4ab4af07965a5a4776fc825e7412c640fa8f Mon Sep 17 00:00:00 2001 From: luistarkbank Date: Mon, 18 Sep 2023 14:54:56 -0300 Subject: [PATCH] Fix-central-bank-attributes --- CHANGELOG.md | 3 +++ starkbank/dictkey/__dictkey.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba76d9e..7423aeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ Given a version number MAJOR.MINOR.PATCH, increment: ### Changed - account_number, branch_code attributes to DictKey resource +### Fixed +- account_type Docstring attribute to DictKey resource + ## [2.21.0] - 2023-08-06 ### Changed - Transfer account_type parameter to required 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" """