We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f287a3 commit 162bb2cCopy full SHA for 162bb2c
redsys/response.py
@@ -141,6 +141,10 @@ def code(self):
141
def message(self):
142
return RESPONSE_MAP["0000"] if self.is_paid else RESPONSE_MAP[self.response]
143
144
+ @property
145
+ def parameters(self):
146
+ return self._parameters
147
+
148
@staticmethod
149
def clean_amount(value):
150
return Decimal("%s.%s" % (str(value)[:-2], str(value)[-2:]))
0 commit comments